diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-06-22 11:56:36 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-06-25 17:12:28 +0200 |
commit | 3e1cd2a74f1d5d54057acb3451ec92e9764d7430 (patch) | |
tree | 82adfda4374182ad5f7c99fceb2d951b6a0aef16 /apps/accessibility | |
parent | 1de8f6dd3775278888199c6a0dce4f72863cd930 (diff) | |
download | nextcloud-server-3e1cd2a74f1d5d54057acb3451ec92e9764d7430.tar.gz nextcloud-server-3e1cd2a74f1d5d54057acb3451ec92e9764d7430.zip |
Improved dark theme
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/accessibility')
-rw-r--r-- | apps/accessibility/css/themedark.scss | 29 |
1 files changed, 24 insertions, 5 deletions
diff --git a/apps/accessibility/css/themedark.scss b/apps/accessibility/css/themedark.scss index 73cb03d11d6..a827b3ef935 100644 --- a/apps/accessibility/css/themedark.scss +++ b/apps/accessibility/css/themedark.scss @@ -12,13 +12,32 @@ $color-text-lighter: darken($color-main-text, 20%); $color-loading-light: #777; $color-loading-dark: #ccc; -$color-box-shadow: rgba(darken($color-main-background, 70%), .5); +$color-box-shadow: rgba(darken($color-main-background, 70%), 0.5); $color-border: lighten($color-main-background, 7%); $color-border-dark: lighten($color-main-background, 14%); -#app-navigation > ul > li > a:first-child img, -#app-navigation > ul > li > ul > li > a:first-child img, -#expanddiv a img { +#app-navigation > ul > li > a:first-child, +#app-navigation > ul > li > ul > li > a:first-child, +#expanddiv a { + img { + filter: invert(100%); + } +} +.bubble, +.app-navigation-entry-menu, +.popovermenu { + li { + > button, + > a, + > .menuitem { + > img { + filter: invert(100%); + } + } + } +} +.federation-menu .icon-federation-menu { filter: invert(100%); -}
\ No newline at end of file +} + |