diff options
author | llmII <dev@amlegion.org> | 2023-01-08 10:44:58 -0600 |
---|---|---|
committer | llmII <dev@amlegion.org> | 2023-01-08 10:44:58 -0600 |
commit | 33d97fd01aa47ed9dd082fb875c5ad5d753dfa63 (patch) | |
tree | a2b6fd38ecdcf922bf442a08a6cbbd92d31a3e63 /searx | |
parent | cb7b091666f2bc449e6ccc799105bdc0afd3b75e (diff) | |
download | searxng-33d97fd01aa47ed9dd082fb875c5ad5d753dfa63.tar.gz searxng-33d97fd01aa47ed9dd082fb875c5ad5d753dfa63.zip |
Fix #2083
This changes the Suggestions to be a single column, not a wrapping row,
changing the input to be incapable of overflowing into visually adjacent
elements.
Diffstat (limited to 'searx')
-rw-r--r-- | searx/static/themes/simple/src/less/style.less | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/searx/static/themes/simple/src/less/style.less b/searx/static/themes/simple/src/less/style.less index 5ff9969e3..e43508dd1 100644 --- a/searx/static/themes/simple/src/less/style.less +++ b/searx/static/themes/simple/src/less/style.less @@ -532,7 +532,7 @@ article[data-vim-selected].category-social { #suggestions { .wrapper { display: flex; - flex-flow: row wrap; + flex-flow: column; justify-content: flex-end; form { @@ -552,6 +552,10 @@ article[data-vim-selected].category-social { background: transparent; color: var(--color-result-search-url-font); cursor: pointer; + width: calc(100%); + text-overflow: ellipsis; + overflow: hidden; + text-align: left; } input[type="submit"], |