From 33d97fd01aa47ed9dd082fb875c5ad5d753dfa63 Mon Sep 17 00:00:00 2001 From: llmII Date: Sun, 8 Jan 2023 10:44:58 -0600 Subject: [PATCH] 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. --- searx/static/themes/simple/src/less/style.less | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/searx/static/themes/simple/src/less/style.less b/searx/static/themes/simple/src/less/style.less index 5ff9969e..e43508dd 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"],