diff options
| author | Markus Heiser <markus.heiser@darmarit.de> | 2025-01-15 17:57:29 +0100 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarIT.de> | 2025-01-16 10:51:33 +0100 |
| commit | 1668ff5e6403648f41cf9a9b5421040594b4005d (patch) | |
| tree | ac025581c118dd7af18070d5f02460cdaf1433be /searx/static | |
| parent | f03ab00155901c4d423b6ad9512c70218dea170e (diff) | |
[fix] theme simple: image viewer hides autocomplete suggestions
Closes: https://github.com/searxng/searxng/issues/3509
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx/static')
4 files changed, 10 insertions, 10 deletions
diff --git a/searx/static/themes/simple/src/less/autocomplete.less b/searx/static/themes/simple/src/less/autocomplete.less index 32c016e06..8285ff2c6 100644 --- a/searx/static/themes/simple/src/less/autocomplete.less +++ b/searx/static/themes/simple/src/less/autocomplete.less @@ -53,7 +53,7 @@ color: var(--color-autocomplete-font); max-height: 32rem; overflow-y: auto; - z-index: 100; + z-index: 5000; margin-top: 3.5rem; border-radius: 0.8rem; diff --git a/searx/static/themes/simple/src/less/detail.less b/searx/static/themes/simple/src/less/detail.less index ad4e3d5ff..fd5cd8e05 100644 --- a/searx/static/themes/simple/src/less/detail.less +++ b/searx/static/themes/simple/src/less/detail.less @@ -22,7 +22,7 @@ article.result-images .detail { bottom: 0; background: var(--color-result-detail-background); border: 1px solid var(--color-result-detail-background); - z-index: 10000; + z-index: 1000; padding: 4rem 3rem 3rem 3rem; a.result-images-source { @@ -148,7 +148,7 @@ article.result-images .detail { height: 1.5rem; position: absolute; filter: opacity(40%); - z-index: 2000002; + z-index: 1200; span { display: block; diff --git a/searx/static/themes/simple/src/less/search.less b/searx/static/themes/simple/src/less/search.less index ce755e17e..a46e4bf06 100644 --- a/searx/static/themes/simple/src/less/search.less +++ b/searx/static/themes/simple/src/less/search.less @@ -158,7 +158,7 @@ button.category_button { outline: none; color: var(--color-search-font); font-size: 1.1rem; - z-index: 10000; + z-index: 1000; &:hover { color: var(--color-search-background-hover); @@ -183,7 +183,7 @@ html.no-js #clear_search.hide_if_nojs { outline: none; color: var(--color-search-font); font-size: 1.1rem; - z-index: 2; + z-index: 100; } #q { @@ -332,7 +332,7 @@ html.no-js #clear_search.hide_if_nojs { top: 0; height: 100%; width: 100%; - z-index: 10000; + z-index: 2000; .search_box { border-bottom: 1px solid var(--color-search-border); diff --git a/searx/static/themes/simple/src/less/toolkit.less b/searx/static/themes/simple/src/less/toolkit.less index c256aef1a..d3fb2273b 100644 --- a/searx/static/themes/simple/src/less/toolkit.less +++ b/searx/static/themes/simple/src/less/toolkit.less @@ -203,7 +203,7 @@ div.selectable_url { left: 50%; margin: 0 auto; transform: translate(-50%, -50%); - z-index: 10000000; + z-index: 5000; h3 { margin-top: 0; @@ -339,7 +339,7 @@ select { padding: 0.2rem !important; color: var(--color-search-font); font-size: 0.9rem; - z-index: 2; + z-index: 100; &:hover, &:focus { @@ -413,7 +413,7 @@ input.checkbox-onoff[type="checkbox"] { border: 1px solid var(--color-btn-background); border-radius: 12px; box-shadow: var(--color-btn-background) 0 0 3px; - z-index: 10000; + z-index: 1200; top: -0.55em; left: -0.6em; } @@ -573,7 +573,7 @@ input.checkbox-onoff.reversed-checkbox[type="checkbox"] { background: var(--color-toolkit-engine-tooltip-background); font-size: 14px; font-weight: normal; - z-index: 1000000; + z-index: 5000; text-align: left; .rounded-corners; } |