diff options
author | Julius Härtl <jus@bitgrid.net> | 2017-09-02 21:48:14 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2017-09-02 21:48:14 +0200 |
commit | 0a49757535fa09b9ce6a9734ec8bd495a7244482 (patch) | |
tree | b05e5523b837632ac01c8e879cc6070d27ff23ab /apps/theming/css | |
parent | 27c6dc965774f72688ce32f047da654aee64fed8 (diff) | |
download | nextcloud-server-0a49757535fa09b9ce6a9734ec8bd495a7244482.tar.gz nextcloud-server-0a49757535fa09b9ce6a9734ec8bd495a7244482.zip |
Change invertion threshold to 55%
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/theming/css')
-rw-r--r-- | apps/theming/css/theming.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/css/theming.scss b/apps/theming/css/theming.scss index 339bf8a58b9..22e3bdc0d95 100644 --- a/apps/theming/css/theming.scss +++ b/apps/theming/css/theming.scss @@ -11,7 +11,7 @@ } /* invert header icons on bright background */ -@if (lightness($color-primary) > 50) { +@if (lightness($color-primary) > 55) { .searchbox input[type="search"] { background: transparent url('../../../core/img/actions/search.svg') no-repeat 6px center; } |