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

60 lines
914 B
SCSS
Raw Normal View History

.detail-page-header {
2016-04-01 13:43:42 +00:00
padding: $gl-padding-top 0;
border-bottom: 1px solid $border-color;
2016-12-30 20:18:27 +00:00
color: $gl-text-color;
2015-12-23 14:46:13 +00:00
line-height: 34px;
display: flex;
2017-05-18 18:44:13 +00:00
a {
2016-12-30 20:18:27 +00:00
color: $gl-text-color;
&.link {
color: $blue-600;
}
}
.author-link {
white-space: nowrap;
}
2018-04-09 15:26:28 +00:00
@include media-breakpoint-down(xs) {
display: block;
}
}
.detail-page-header-body {
position: relative;
display: flex;
flex: 1 1;
min-width: 0;
2018-04-09 15:26:28 +00:00
@include media-breakpoint-up(sm) {
padding-left: 0;
padding-right: 0;
}
}
.detail-page-header-actions {
align-self: center;
flex: 0 0 auto;
2018-04-09 15:26:28 +00:00
@include media-breakpoint-down(xs) {
width: 100%;
margin-top: 10px;
}
}
.detail-page-description {
.title {
margin: 0 0 16px;
font-size: 2em;
2016-12-30 20:18:27 +00:00
color: $gl-text-color;
padding: 0 0 0.3em;
2016-10-17 20:23:28 +00:00
border-bottom: 1px solid $white-dark;
}
.description {
margin-top: 6px;
}
}