mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
Fix preview when theming changes invertion of icons
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
e4f9c75a05
commit
9b668d01f5
1 changed files with 9 additions and 0 deletions
|
|
@ -20,6 +20,10 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
@if (luma($color-primary) > 0.6) {
|
@if (luma($color-primary) > 0.6) {
|
||||||
|
#appmenu img,
|
||||||
|
#appmenu image {
|
||||||
|
filter: invert(1);
|
||||||
|
}
|
||||||
.searchbox input[type="search"] {
|
.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;
|
||||||
}
|
}
|
||||||
|
|
@ -62,6 +66,11 @@
|
||||||
background-color: nc-darken($color-primary-element, 30%) !important;
|
background-color: nc-darken($color-primary-element, 30%) !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} @else {
|
||||||
|
#appmenu img,
|
||||||
|
#appmenu image {
|
||||||
|
filter: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Colorized svg images */
|
/* Colorized svg images */
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue