Sidebar active color

This commit is contained in:
RealStickman 2022-11-19 16:44:11 +01:00
parent 003c5eddfc
commit e3dc115bac
3 changed files with 13 additions and 1 deletions

View File

@ -943,5 +943,7 @@ body {
#sidebar {
background-color: #47314f; }
#sidebar ul.topics > li.parent, #sidebar ul.topics > li.active {
background: #39273f; }
/*# sourceMappingURL=theme.css.map */

File diff suppressed because one or more lines are too long

View File

@ -1,3 +1,13 @@
#sidebar {
background-color: $sidebar-bg;
ul {
&.topics {
> li {
&.parent, &.active {
background: darken($sidebar-bg, 5%);
}
}
}
}
}