web/layout: bright sidebar in light mode, content frame

This commit is contained in:
wukko
2025-02-25 00:13:37 +06:00
parent 346b9084b0
commit 384ea412ea
2 changed files with 46 additions and 11 deletions

View File

@@ -125,14 +125,18 @@
}
@media (hover: hover) {
.sidebar-tab:active:not(.active) {
opacity: 1;
background-color: var(--sidebar-hover);
.sidebar-tab:hover:not(.active) {
background-color: var(--button-hover-transparent);
}
.sidebar-tab:hover:not(.active) {
.sidebar-tab:active:not(.active) {
background-color: var(--button-press-transparent);
}
.sidebar-tab:hover:not(.active),
.sidebar-tab:active:not(.active) {
opacity: 1;
background-color: var(--sidebar-hover);
box-shadow: 0 0 0 1.5px var(--sidebar-stroke) inset;
}
}