2015-04-26 12:48:37 +05:30
|
|
|
@media (max-width: $screen-sm-max) {
|
|
|
|
.issuable-affix {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: $screen-md-max) {
|
|
|
|
.issuable-affix {
|
|
|
|
position: static;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: $screen-md-max) {
|
|
|
|
.issuable-affix {
|
|
|
|
&.affix-top {
|
|
|
|
position: static;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.affix {
|
|
|
|
position: fixed;
|
|
|
|
top: 70px;
|
2015-09-11 14:41:01 +05:30
|
|
|
margin-right: 35px;
|
2015-04-26 12:48:37 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.issuable-context-title {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
2015-09-25 12:07:36 +05:30
|
|
|
color: $gl-gray;
|
2015-04-26 12:48:37 +05:30
|
|
|
font-weight: normal;
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-25 12:07:36 +05:30
|
|
|
.project-issuable-filter {
|
|
|
|
.controls {
|
|
|
|
float: right;
|
|
|
|
margin-top: 7px;
|
|
|
|
}
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2015-09-25 12:07:36 +05:30
|
|
|
.center-top-menu {
|
|
|
|
text-align: left;
|
|
|
|
}
|
2015-04-26 12:48:37 +05:30
|
|
|
}
|
2015-09-11 14:41:01 +05:30
|
|
|
|
|
|
|
.issuable-details {
|
2015-09-25 12:07:36 +05:30
|
|
|
.page-title {
|
|
|
|
margin-top: -15px;
|
|
|
|
padding: 10px 0;
|
|
|
|
margin-bottom: 0;
|
2015-10-24 18:46:33 +05:30
|
|
|
color: #5c5d5e;
|
2015-09-25 12:07:36 +05:30
|
|
|
font-size: 16px;
|
|
|
|
|
|
|
|
.author {
|
2015-10-24 18:46:33 +05:30
|
|
|
color: #5c5d5e;
|
2015-09-25 12:07:36 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.issue-id {
|
2015-10-24 18:46:33 +05:30
|
|
|
color: #5c5d5e;
|
2015-09-25 12:07:36 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.issue-title {
|
|
|
|
margin: 0;
|
2015-10-24 18:46:33 +05:30
|
|
|
font-size: 23px;
|
|
|
|
color: #313236;
|
2015-09-25 12:07:36 +05:30
|
|
|
}
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
.description {
|
2015-09-25 12:07:36 +05:30
|
|
|
margin-top: 6px;
|
|
|
|
|
|
|
|
p:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2015-09-11 14:41:01 +05:30
|
|
|
}
|
|
|
|
}
|
2015-11-26 14:37:03 +05:30
|
|
|
|
|
|
|
.issuable-filter-count {
|
|
|
|
span {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: -16px;
|
|
|
|
padding: 13px 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.cross-project-reference {
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.slead {
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
span, button {
|
|
|
|
background-color: $background-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.awards {
|
|
|
|
@include clearfix;
|
|
|
|
line-height: 34px;
|
|
|
|
margin: 2px 0;
|
|
|
|
|
|
|
|
.award {
|
|
|
|
@include border-radius(5px);
|
|
|
|
|
|
|
|
border: 1px solid;
|
|
|
|
padding: 0px 10px;
|
|
|
|
float: left;
|
|
|
|
margin: 0 5px;
|
|
|
|
border-color: $border-color;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
border-color: $border-gray-light;
|
|
|
|
background-color: $gray-light;
|
|
|
|
|
|
|
|
.counter {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
float: left;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.counter {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.awards-controls {
|
|
|
|
margin-left: 10px;
|
|
|
|
float: left;
|
|
|
|
|
|
|
|
.add-award {
|
|
|
|
font-size: 24px;
|
|
|
|
color: $gl-gray;
|
|
|
|
position: relative;
|
|
|
|
top: 2px;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:link {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.awards-menu {
|
|
|
|
padding: $gl-padding;
|
|
|
|
min-width: 214px;
|
|
|
|
|
|
|
|
> li {
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.awards-menu{
|
|
|
|
li {
|
|
|
|
float: left;
|
|
|
|
margin: 3px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|