diff options
author | Morris Jobke <hey@morrisjobke.de> | 2019-01-25 14:08:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-25 14:08:19 +0100 |
commit | db00b210a3cf78b86f31f4ab362db255c71c0bf7 (patch) | |
tree | 5092c91bee269634125a1d6c326c111f24f441e1 | |
parent | 7a974a8392fdc765eb0489dae0caead6c9ce2151 (diff) | |
parent | ef0f91ef0ce501206000fcb014ce6f1892942092 (diff) | |
download | nextcloud-server-db00b210a3cf78b86f31f4ab362db255c71c0bf7.tar.gz nextcloud-server-db00b210a3cf78b86f31f4ab362db255c71c0bf7.zip |
Merge pull request #13801 from nextcloud/design/highcontrast-fix
Fix for high contrast theme
-rw-r--r-- | apps/accessibility/css/themehighcontrast.scss | 4 | ||||
-rw-r--r-- | settings/css/settings.scss | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/apps/accessibility/css/themehighcontrast.scss b/apps/accessibility/css/themehighcontrast.scss index ad6f9a5642a..10ccdb47da6 100644 --- a/apps/accessibility/css/themehighcontrast.scss +++ b/apps/accessibility/css/themehighcontrast.scss @@ -18,6 +18,8 @@ $color-border: darken($color-main-background, 50%); $color-border-dark: darken($color-main-background, 50%); [class^='icon-'], [class*=' icon-'], -.action { +.action, +#appmenu li a, +.menutoggle { opacity: 1 !important; } diff --git a/settings/css/settings.scss b/settings/css/settings.scss index c89c6d47bb5..f833913b7d6 100644 --- a/settings/css/settings.scss +++ b/settings/css/settings.scss @@ -941,9 +941,9 @@ span.version { .section { margin-bottom: 0; - /* use 2nd child since app-navigation-toggle is the first */ - &:not(:nth-child(2)) { - border-top: 1px solid var(--color-border); + /* section divider lines, none needed for last one */ + &:not(:last-child) { + border-bottom: 1px solid var(--color-border); } /* correctly display help icons next to headings */ |