From 8a8f150ffb2d267700ac504c2d36ab6aa80a08e2 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Tue, 11 Oct 2022 23:44:35 +0200 Subject: [PATCH] Add seperator in high contrast mode Between navigation and content and between entry in breadcrump Signed-off-by: Carl Schwan --- apps/theming/lib/Themes/DarkHighContrastTheme.php | 6 ++++++ apps/theming/lib/Themes/HighContrastTheme.php | 3 +++ 2 files changed, 9 insertions(+) diff --git a/apps/theming/lib/Themes/DarkHighContrastTheme.php b/apps/theming/lib/Themes/DarkHighContrastTheme.php index f219c3b3e8743..9e13470e6ad7d 100644 --- a/apps/theming/lib/Themes/DarkHighContrastTheme.php +++ b/apps/theming/lib/Themes/DarkHighContrastTheme.php @@ -101,6 +101,12 @@ public function getCustomCss(): string { .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 fda02058446ce..421e703321459 100644 --- a/apps/theming/lib/Themes/HighContrastTheme.php +++ b/apps/theming/lib/Themes/HighContrastTheme.php @@ -101,6 +101,9 @@ public function getCustomCss(): string { .menutoggle { opacity: 1 !important; } + #app-navigation { + border-right: 1px solid var(--color-border); + } "; } }