gitlab-org--gitlab-foss/app/assets/stylesheets/pages/detail_page.scss

64 lines
996 B
SCSS
Raw Normal View History

.detail-page-header {
2016-04-01 09:43:42 -04:00
padding: $gl-padding-top 0;
border-bottom: 1px solid $border-color;
2016-12-30 15:18:27 -05:00
color: $gl-text-color;
2015-12-23 09:46:13 -05:00
line-height: 34px;
display: flex;
2017-05-18 14:44:13 -04:00
a {
2016-12-30 15:18:27 -05:00
color: $gl-text-color;
}
.issue_created_ago,
.author_link {
white-space: nowrap;
}
@media (max-width: $screen-xs-max) {
display: block;
}
}
.detail-page-header-body {
position: relative;
line-height: 35px;
display: flex;
flex-grow: 1;
@media (min-width: $screen-sm-min) {
padding-left: 0;
padding-right: 0;
}
}
.detail-page-header-actions {
align-self: center;
flex-shrink: 0;
flex: 0 0 auto;
@media (max-width: $screen-xs-max) {
width: 100%;
margin-top: 10px;
> .issue-btn-group {
> .btn {
width: 100%;
}
}
}
}
.detail-page-description {
.title {
margin: 0 0 16px;
font-size: 2em;
2016-12-30 15:18:27 -05:00
color: $gl-text-color;
padding: 0 0 0.3em;
2016-10-17 16:23:28 -04:00
border-bottom: 1px solid $white-dark;
}
.description {
margin-top: 6px;
}
}