diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2021-11-27 14:37:04 +0100 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2021-11-29 20:47:37 +0100 |
commit | fb5c1ed31036699eb5668f70fa3d5b0e953a2e8a (patch) | |
tree | bfd41051bf0e403b2c32907a17537740f874b3b3 /searx/static/themes/simple/src/less | |
parent | c7bb6945d193a250e0469dd05370cf6f2f18b946 (diff) | |
download | searxng-fb5c1ed31036699eb5668f70fa3d5b0e953a2e8a.tar.gz searxng-fb5c1ed31036699eb5668f70fa3d5b0e953a2e8a.zip |
[fix] simple theme: set img background color to wallpaper's color
The *background color* of an transparent image is the color of the color of
wallpaper on which all images are shown on.
Set variable `--color-result-image-background` and `--color-base-background` to
the same value.
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx/static/themes/simple/src/less')
-rw-r--r-- | searx/static/themes/simple/src/less/definitions.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/static/themes/simple/src/less/definitions.less b/searx/static/themes/simple/src/less/definitions.less index 95370849d..dbf048ed4 100644 --- a/searx/static/themes/simple/src/less/definitions.less +++ b/searx/static/themes/simple/src/less/definitions.less @@ -68,7 +68,7 @@ // Images Colors --color-result-image-span-background-hover: rgba(0, 0, 0, 0.6); --color-result-image-span-font: #fff; - --color-result-image-background: #000bbb; + --color-result-image-background: #fff; /// Settings Colors --color-settings-tr-hover: #f7f7f7; --color-settings-engine-description-font: darken(#dcdcdc, 30%); @@ -176,7 +176,7 @@ // Images Colors --color-result-image-span-background-hover: rgba(0, 0, 0, 0.6); --color-result-image-span-font: #fff; - --color-result-image-background: #8af; + --color-result-image-background: #222; /// Settings Colors --color-settings-tr-hover: #2d2d2d; --color-settings-engine-description-font: darken(#dcdcdc, 30%); |