122 lines
2.2 KiB
SCSS
122 lines
2.2 KiB
SCSS
/**
|
|
* Styles the GitLab application with a specific color theme
|
|
*
|
|
* $color-light -
|
|
* $color -
|
|
* $color-darker -
|
|
* $color-dark -
|
|
*/
|
|
@mixin gitlab-theme($color-light, $color, $color-darker, $color-dark) {
|
|
.page-with-sidebar {
|
|
.toggle-nav-collapse,
|
|
.pin-nav-btn {
|
|
color: $color-light;
|
|
|
|
&:hover {
|
|
color: $white-light;
|
|
}
|
|
}
|
|
|
|
.sidebar-wrapper {
|
|
background: $color-darker;
|
|
}
|
|
|
|
.sidebar-header,
|
|
.sidebar-action-buttons {
|
|
color: $color-light;
|
|
background-color: lighten($color-darker, 5%);
|
|
}
|
|
|
|
.nav-sidebar {
|
|
li {
|
|
a {
|
|
color: $color-light;
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
background: $color-dark;
|
|
}
|
|
|
|
i {
|
|
color: $color-light;
|
|
}
|
|
|
|
path,
|
|
polygon {
|
|
fill: $color-light;
|
|
}
|
|
|
|
.count {
|
|
color: $color-light;
|
|
background: $color-dark;
|
|
}
|
|
|
|
svg {
|
|
position: relative;
|
|
top: 3px;
|
|
}
|
|
}
|
|
|
|
&.separate-item {
|
|
border-top: 1px solid $color;
|
|
}
|
|
|
|
&.active a {
|
|
color: $white-light;
|
|
background: $color-dark;
|
|
|
|
&.no-highlight {
|
|
border: none;
|
|
}
|
|
|
|
i {
|
|
color: $white-light;
|
|
}
|
|
|
|
path,
|
|
polygon {
|
|
fill: $white-light;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
$theme-charcoal: #3d454d;
|
|
$theme-charcoal-dark: #383f45;
|
|
$theme-charcoal-text: #b9bbbe;
|
|
|
|
$theme-blue: #2980b9;
|
|
$theme-graphite: #666;
|
|
$theme-gray: #373737;
|
|
$theme-green: #019875;
|
|
$theme-violet: #548;
|
|
|
|
body {
|
|
&.ui_blue {
|
|
@include gitlab-theme(#becde9, $theme-blue, #1970a9, #096099);
|
|
}
|
|
|
|
&.ui_charcoal {
|
|
@include gitlab-theme($theme-charcoal-text, #485157, $theme-charcoal, $theme-charcoal-dark);
|
|
}
|
|
|
|
&.ui_graphite {
|
|
@include gitlab-theme(#ccc, #777, $theme-graphite, #555);
|
|
}
|
|
|
|
&.ui_gray {
|
|
@include gitlab-theme(#979797, $theme-gray, #272727, #222);
|
|
}
|
|
|
|
&.ui_green {
|
|
@include gitlab-theme(#adc, $theme-green, #018865, #017855);
|
|
}
|
|
|
|
&.ui_violet {
|
|
@include gitlab-theme(#98c, $theme-violet, #436, #325);
|
|
}
|
|
}
|