debian-mirror-gitlab/app/assets/stylesheets/pages/issuable.scss

54 lines
731 B
SCSS
Raw Normal View History

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 {
font-size: 14px;
line-height: 1.4;
margin-bottom: 5px;
.avatar {
margin-left: 0;
}
label {
color: #666;
font-weight: normal;
margin-right: 4px;
}
}
.issuable-affix .context {
font-size: 13px;
.btn { font-size: 13px; }
}
2015-09-11 14:41:01 +05:30
.issuable-details {
.description {
max-width: $readable-width;
}
}