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.
dependabot/pip/master/sphinx-6.1.3
llmII 1 year ago
parent cb7b091666
commit 33d97fd01a

@ -532,7 +532,7 @@ article[data-vim-selected].category-social {
#suggestions { #suggestions {
.wrapper { .wrapper {
display: flex; display: flex;
flex-flow: row wrap; flex-flow: column;
justify-content: flex-end; justify-content: flex-end;
form { form {
@ -552,6 +552,10 @@ article[data-vim-selected].category-social {
background: transparent; background: transparent;
color: var(--color-result-search-url-font); color: var(--color-result-search-url-font);
cursor: pointer; cursor: pointer;
width: calc(100%);
text-overflow: ellipsis;
overflow: hidden;
text-align: left;
} }
input[type="submit"], input[type="submit"],

Loading…
Cancel
Save