aboutsummaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
Diffstat (limited to 'data')
-rw-r--r--data/style.scss9
1 files changed, 8 insertions, 1 deletions
diff --git a/data/style.scss b/data/style.scss
index f7facc2..c146919 100644
--- a/data/style.scss
+++ b/data/style.scss
@@ -160,7 +160,14 @@ nav .theme li a::hover {
color: var(--change_theme_link_color_hover);
}
-nav .theme li.active a {
+@each $theme in $themes {
+ body.theme_#{$theme} nav .theme li.theme_#{$theme} a {
+ font-weight: bold;
+ color: var(--switch_theme_active);
+ }
+}
+
+body:not([class^="theme_"]) nav .theme li.theme_default a {
font-weight: bold;
color: var(--switch_theme_active);
}