diff options
author | Julius Härtl <jus@bitgrid.net> | 2017-04-27 17:52:09 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-04-28 15:53:33 -0300 |
commit | d13e311aafdb142b667774ff989f673cd0d65ba3 (patch) | |
tree | 21ef75a6c8abb38d4fde22c25bf64b34a6fa3441 /apps/theming/css | |
parent | 3c4dab1bbed6b30feabf88e799b7f9a88293ebb6 (diff) | |
download | nextcloud-server-d13e311aafdb142b667774ff989f673cd0d65ba3.tar.gz nextcloud-server-d13e311aafdb142b667774ff989f673cd0d65ba3.zip |
Invert new header icons on bright theming colors
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/theming/css')
-rw-r--r-- | apps/theming/css/theming.scss | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/apps/theming/css/theming.scss b/apps/theming/css/theming.scss index 9392bfb0ae2..d2196362d3b 100644 --- a/apps/theming/css/theming.scss +++ b/apps/theming/css/theming.scss @@ -12,22 +12,25 @@ /* invert header icons on bright background */ @if (lightness($color-primary) > 50) { - #header .icon-caret { - background-image: url(../../../core/img/actions/caret-dark.svg); - } .searchbox input[type="search"] { - background: transparent url(../../../core/img/actions/search.svg) no-repeat 6px center; + background: transparent url('../../../core/img/actions/search.svg') no-repeat 6px center; } #appmenu li a img { -webkit-filter: invert(1); filter: invert(1); filter: progid:DXImageTransform.Microsoft.BasicImage(invert='1'); } + #contactsmenu .icon-contacts { + background-image: url('../../../core/img/places/contacts-dark.svg'); + } + #settings .icon-settings-white { + background-image: url('../../../core/img/actions/settings-dark.svg'); + } } /* Colorized svg images */ .icon-file, .icon-filetype-text { - background-image: url(../img/core/filetypes/text.svg?v=#{$theming-cachebuster}); + background-image: url(./img/core/filetypes/text.svg?v=#{$theming-cachebuster}); } .icon-folder, .icon-filetype-folder { @@ -59,6 +62,6 @@ input.primary { @if (lightness($color-primary) > 50) { #body-login input.login { - background-image: url(../../../core/img/actions/confirm.svg); + background-image: url('../../../core/img/actions/confirm.svg'); } }
\ No newline at end of file |