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

60 lines
914 B
SCSS
Raw Normal View History

2015-12-23 02:04:40 +05:30
.detail-page-header {
2016-06-02 11:05:42 +05:30
padding: $gl-padding-top 0;
2015-12-23 02:04:40 +05:30
border-bottom: 1px solid $border-color;
2017-08-17 22:00:37 +05:30
color: $gl-text-color;
line-height: 34px;
2018-03-17 18:26:18 +05:30
display: flex;
2015-12-23 02:04:40 +05:30
2017-09-10 17:25:29 +05:30
a {
2017-08-17 22:00:37 +05:30
color: $gl-text-color;
2020-04-22 19:07:51 +05:30
&.link {
color: $blue-600;
}
2015-12-23 02:04:40 +05:30
}
2016-04-02 18:10:28 +05:30
2018-11-18 11:00:15 +05:30
.author-link {
2016-04-02 18:10:28 +05:30
white-space: nowrap;
}
2018-03-17 18:26:18 +05:30
2018-11-08 19:23:39 +05:30
@include media-breakpoint-down(xs) {
2018-03-17 18:26:18 +05:30
display: block;
}
}
.detail-page-header-body {
position: relative;
display: flex;
2018-11-08 19:23:39 +05:30
flex: 1 1;
min-width: 0;
2018-03-17 18:26:18 +05:30
2018-11-08 19:23:39 +05:30
@include media-breakpoint-up(sm) {
2018-03-17 18:26:18 +05:30
padding-left: 0;
padding-right: 0;
}
}
.detail-page-header-actions {
align-self: center;
flex: 0 0 auto;
2018-11-08 19:23:39 +05:30
@include media-breakpoint-down(xs) {
2018-03-17 18:26:18 +05:30
width: 100%;
margin-top: 10px;
}
2015-12-23 02:04:40 +05:30
}
.detail-page-description {
.title {
2016-11-03 12:29:30 +05:30
margin: 0 0 16px;
font-size: 2em;
2017-08-17 22:00:37 +05:30
color: $gl-text-color;
2016-11-03 12:29:30 +05:30
padding: 0 0 0.3em;
border-bottom: 1px solid $white-dark;
2015-12-23 02:04:40 +05:30
}
.description {
margin-top: 6px;
2016-06-02 11:05:42 +05:30
}
2015-12-23 02:04:40 +05:30
}