summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/theming/lib/Themes/DarkHighContrastTheme.php6
-rw-r--r--apps/theming/lib/Themes/HighContrastTheme.php3
2 files changed, 9 insertions, 0 deletions
diff --git a/apps/theming/lib/Themes/DarkHighContrastTheme.php b/apps/theming/lib/Themes/DarkHighContrastTheme.php
index f219c3b3e87..9e13470e6ad 100644
--- a/apps/theming/lib/Themes/DarkHighContrastTheme.php
+++ b/apps/theming/lib/Themes/DarkHighContrastTheme.php
@@ -101,6 +101,12 @@ class DarkHighContrastTheme extends DarkTheme implements ITheme {
.menutoggle {
opacity: 1 !important;
}
+ #app-navigation {
+ border-right: 1px solid var(--color-border);
+ }
+ div.crumb {
+ filter: brightness(150%);
+ }
";
}
}
diff --git a/apps/theming/lib/Themes/HighContrastTheme.php b/apps/theming/lib/Themes/HighContrastTheme.php
index fda02058446..421e7033214 100644
--- a/apps/theming/lib/Themes/HighContrastTheme.php
+++ b/apps/theming/lib/Themes/HighContrastTheme.php
@@ -101,6 +101,9 @@ class HighContrastTheme extends DefaultTheme implements ITheme {
.menutoggle {
opacity: 1 !important;
}
+ #app-navigation {
+ border-right: 1px solid var(--color-border);
+ }
";
}
}