diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-10-11 23:44:35 +0200 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-10-11 23:44:35 +0200 |
commit | 8a8f150ffb2d267700ac504c2d36ab6aa80a08e2 (patch) | |
tree | 6fc58ba4bde3708c34ffe8b2f405d88f6f3c4622 /apps/theming | |
parent | cf5bf3036dee4527b93c5bb8e43c0ed3a216e15a (diff) | |
download | nextcloud-server-8a8f150ffb2d267700ac504c2d36ab6aa80a08e2.tar.gz nextcloud-server-8a8f150ffb2d267700ac504c2d36ab6aa80a08e2.zip |
Add seperator in high contrast mode
Between navigation and content and between entry in breadcrump
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'apps/theming')
-rw-r--r-- | apps/theming/lib/Themes/DarkHighContrastTheme.php | 6 | ||||
-rw-r--r-- | apps/theming/lib/Themes/HighContrastTheme.php | 3 |
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); + } "; } } |