debian-mirror-gitlab/app/assets/stylesheets/components/whats_new.scss

72 lines
1.3 KiB
SCSS
Raw Normal View History

2021-01-03 14:25:43 +05:30
.whats-new-drawer {
margin-top: $header-height;
@include gl-shadow-none;
2021-01-29 00:20:46 +05:30
overflow-y: hidden;
2021-06-08 01:23:25 +05:30
width: 500px;
2021-01-29 00:20:46 +05:30
.gl-infinite-scroll-legend {
@include gl-display-none;
}
2021-02-22 17:27:13 +05:30
.gl-tabs {
@include gl-overflow-y-auto;
}
.gl-tabs-nav {
flex-wrap: nowrap;
overflow-x: scroll;
align-items: stretch;
.nav-item {
@include gl-flex-shrink-0;
a {
@include gl-h-full;
line-height: 1.5;
}
}
}
.gl-spinner-container {
@include gl-w-full;
@include gl-absolute;
top: 50%;
transform: translateY(-50%);
}
2021-01-03 14:25:43 +05:30
}
.with-performance-bar .whats-new-drawer {
2022-03-02 08:16:31 +05:30
margin-top: calc(#{$performance-bar-height} + #{$header-height});
2021-10-27 15:23:28 +05:30
}
.with-system-header .whats-new-drawer {
2022-03-02 08:16:31 +05:30
margin-top: calc(#{$system-header-height} + #{$header-height});
2021-10-27 15:23:28 +05:30
}
.with-performance-bar.with-system-header .whats-new-drawer {
2022-03-02 08:16:31 +05:30
margin-top: calc(#{$performance-bar-height} + #{$system-header-height} + #{$header-height});
2021-01-03 14:25:43 +05:30
}
2020-11-24 15:15:51 +05:30
.gl-badge.whats-new-item-badge {
background-color: $purple-light;
color: $purple;
2021-01-03 14:25:43 +05:30
@include gl-font-weight-bold;
2020-11-24 15:15:51 +05:30
}
2021-01-29 00:20:46 +05:30
.whats-new-item-title-link {
&:hover,
&:focus,
&:active {
@include gl-text-gray-900;
}
}
2020-11-24 15:15:51 +05:30
.whats-new-item-image {
border-color: $gray-50;
2021-06-08 01:23:25 +05:30
height: 250px;
2020-11-24 15:15:51 +05:30
}
2021-01-03 14:25:43 +05:30
.whats-new-modal-backdrop {
2021-03-08 18:12:59 +05:30
z-index: 699;
2021-01-03 14:25:43 +05:30
}