Add seperator in high contrast mode

Between navigation and content and between entry in breadcrump

Signed-off-by: Carl Schwan <carl@carlschwan.eu>
This commit is contained in:
Carl Schwan 2022-10-11 23:44:35 +02:00
parent cf5bf3036d
commit 8a8f150ffb
2 changed files with 9 additions and 0 deletions

View file

@ -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%);
}
";
}
}

View file

@ -101,6 +101,9 @@ class HighContrastTheme extends DefaultTheme implements ITheme {
.menutoggle {
opacity: 1 !important;
}
#app-navigation {
border-right: 1px solid var(--color-border);
}
";
}
}