mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
c937afc75e
A first step to adding automatic dark mode color scheme switching. Adds a new SCSS file at `color_definitions.scss` that serves to output all SCSS color variables as CSS custom properties. And replaces all SCSS color variables with the new CSS custom properties throughout the stylesheets. This is an alpha feature at this point, can only be enabled via console using the `default_dark_mode_color_scheme_id` site setting.
119 lines
2.0 KiB
SCSS
119 lines
2.0 KiB
SCSS
// --------------------------------------------------
|
|
// Navigation menus
|
|
// --------------------------------------------------
|
|
|
|
// Base
|
|
// --------------------------------------------------
|
|
|
|
%nav {
|
|
margin-left: 0;
|
|
list-style: none;
|
|
li a {
|
|
display: block;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
// Pill nav
|
|
// --------------------------------------------------
|
|
|
|
.nav-pills {
|
|
@extend %nav;
|
|
@extend .clearfix;
|
|
|
|
> li {
|
|
float: left;
|
|
margin-right: 5px;
|
|
|
|
> a {
|
|
border: none;
|
|
padding: 6px 12px;
|
|
color: var(--primary);
|
|
font-size: $font-up-1;
|
|
line-height: $line-height-small;
|
|
box-sizing: border-box;
|
|
min-height: 30px;
|
|
display: flex;
|
|
align-items: center;
|
|
transition: background 0.15s;
|
|
|
|
.d-icon {
|
|
margin-right: 5px;
|
|
opacity: 0.65;
|
|
}
|
|
|
|
&:hover {
|
|
color: var(--quaternary);
|
|
background-color: var(--quaternary-low);
|
|
}
|
|
}
|
|
|
|
a.active {
|
|
color: var(--secondary);
|
|
background-color: var(--quaternary);
|
|
|
|
.d-icon {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Stacked nav
|
|
// --------------------------------------------------
|
|
|
|
.nav-stacked {
|
|
@extend %nav;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
background: var(--primary-low);
|
|
|
|
li {
|
|
border-bottom: 1px solid var(--primary-low);
|
|
position: relative;
|
|
|
|
&:last-of-type {
|
|
border-bottom: 0;
|
|
}
|
|
|
|
&.indent {
|
|
padding-left: 15px;
|
|
}
|
|
}
|
|
|
|
a {
|
|
margin: 0;
|
|
padding: 13px;
|
|
font-size: $font-up-1;
|
|
line-height: $line-height-small;
|
|
cursor: pointer;
|
|
color: var(--primary);
|
|
|
|
&.active {
|
|
color: var(--secondary);
|
|
background-color: var(--quaternary);
|
|
|
|
&::after {
|
|
left: 90%;
|
|
top: 33%;
|
|
content: " ";
|
|
position: absolute;
|
|
border: 8px solid transparent;
|
|
border-left-color: var(--secondary);
|
|
}
|
|
}
|
|
}
|
|
|
|
.count {
|
|
font-size: $font-down-1;
|
|
}
|
|
|
|
.glyph {
|
|
font-size: $font-down-1;
|
|
width: 1.25em;
|
|
text-align: center;
|
|
margin-right: 0.25em;
|
|
line-height: $line-height-large;
|
|
}
|
|
}
|