diff --git a/apps/theming/css/theming.scss b/apps/theming/css/theming.scss index acf4d6446f483..2a40edd49d9e6 100644 --- a/apps/theming/css/theming.scss +++ b/apps/theming/css/theming.scss @@ -11,6 +11,12 @@ } @if (lightness($color-primary) > 50) { + #appmenu:not(.inverted) svg { + filter: invert(1); + } + #appmenu.inverted svg { + filter: none; + } .searchbox input[type="search"] { background: transparent url('../../../core/img/actions/search.svg') no-repeat 6px center; } @@ -48,6 +54,13 @@ background-color: nc-darken($color-primary-element, 30%) !important; } } +} @else { + #appmenu:not(.inverted) svg { + filter: none; + } + #appmenu.inverted svg { + filter: invert(1); + } } /* Colorized svg images */ diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index d54a6fe114ffa..2a413a4d9580e 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -60,20 +60,18 @@
-