diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2022-10-13 12:17:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-13 12:17:54 +0200 |
commit | 9d0f529f1b6ac08da379659d2cb5313d9c44d2eb (patch) | |
tree | 5cd6c3298b567893447dac79e79f7b211d496e31 | |
parent | f6efd54242de80f4391a7bac57dab7ddc01cb981 (diff) | |
parent | 8a8f150ffb2d267700ac504c2d36ab6aa80a08e2 (diff) | |
download | nextcloud-server-9d0f529f1b6ac08da379659d2cb5313d9c44d2eb.tar.gz nextcloud-server-9d0f529f1b6ac08da379659d2cb5313d9c44d2eb.zip |
Merge pull request #34546 from nextcloud/improve-hight-contrast
Add seperator in high contrast mode
-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 7b82136a56a..5636dacf1d9 100644 --- a/apps/theming/lib/Themes/DarkHighContrastTheme.php +++ b/apps/theming/lib/Themes/DarkHighContrastTheme.php @@ -104,6 +104,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 1ae848c866f..4bb77b8c961 100644 --- a/apps/theming/lib/Themes/HighContrastTheme.php +++ b/apps/theming/lib/Themes/HighContrastTheme.php @@ -104,6 +104,9 @@ class HighContrastTheme extends DefaultTheme implements ITheme { .menutoggle { opacity: 1 !important; } + #app-navigation { + border-right: 1px solid var(--color-border); + } "; } } |