summaryrefslogtreecommitdiff
path: root/searx/static/themes/simple/src/less/search.less
diff options
context:
space:
mode:
authorMonty <aroxus@protonmail.com>2022-03-30 17:09:40 +0200
committermrpaulblack <paul@paulgo.io>2022-05-10 21:56:43 +0200
commit2115f6565e66c51d0110e23a5ce625c48f43b652 (patch)
treeb9fff19f4a7955e01882bc45ffef183247f9c1a7 /searx/static/themes/simple/src/less/search.less
parent2bc836e85d25a3bf50a2004a56100e4b090e79f9 (diff)
[mod] simple theme: colors, autocomplete, border
* change colors, autocomplete, delete border in some places
Diffstat (limited to 'searx/static/themes/simple/src/less/search.less')
-rw-r--r--searx/static/themes/simple/src/less/search.less10
1 files changed, 5 insertions, 5 deletions
diff --git a/searx/static/themes/simple/src/less/search.less b/searx/static/themes/simple/src/less/search.less
index ee06a74c4..e70ef30ad 100644
--- a/searx/static/themes/simple/src/less/search.less
+++ b/searx/static/themes/simple/src/less/search.less
@@ -94,12 +94,12 @@
}
.search_box {
- border: 1px solid var(--color-search-border);
border-radius: 0.8rem;
width: @search-width;
display: inline-flex;
flex-direction: row;
white-space: nowrap;
+ box-shadow: var(--color-search-shadow);
}
#clear_search {
@@ -283,7 +283,7 @@ html.no-js #clear_search.hide_if_nojs {
#search_view:focus-within {
display: block;
- background-color: var(--color-base-background);
+ background-color: var(--color-search-background);
position: absolute;
top: 0;
height: 100%;
@@ -291,11 +291,10 @@ html.no-js #clear_search.hide_if_nojs {
z-index: 10000;
.search_box {
- border-top: none;
- border-left: none;
- border-right: none;
+ border-bottom: 1px solid var(--color-search-border);
width: 100%;
border-radius: 0;
+ box-shadow: none;
#send_search {
.ltr-margin-right(0) !important; // Delete when send_search button is disabled on mobile.
@@ -304,6 +303,7 @@ html.no-js #clear_search.hide_if_nojs {
* {
border: none;
border-radius: 0;
+ box-shadow: none;
}
}
}