diff options
Diffstat (limited to 'searx/static/themes/simple/css/searxng.css')
| -rw-r--r-- | searx/static/themes/simple/css/searxng.css | 29 |
1 files changed, 21 insertions, 8 deletions
diff --git a/searx/static/themes/simple/css/searxng.css b/searx/static/themes/simple/css/searxng.css index cae7a11be..6313dc79f 100644 --- a/searx/static/themes/simple/css/searxng.css +++ b/searx/static/themes/simple/css/searxng.css @@ -1468,7 +1468,7 @@ div.selectable_url pre { vertical-align: text-top; } .dialog-error tr:hover { - background: transparent; + background: transparent !important; } .dialog-error td { padding: 0 1em 0 0; @@ -1519,7 +1519,7 @@ div.selectable_url pre { vertical-align: text-top; } .dialog-warning tr:hover { - background: transparent; + background: transparent !important; } .dialog-warning td { padding: 0 1em 0 0; @@ -1574,7 +1574,7 @@ div.selectable_url pre { vertical-align: text-top; } .dialog-modal tr:hover { - background: transparent; + background: transparent !important; } .dialog-modal td { padding: 0 1em 0 0; @@ -1644,7 +1644,6 @@ div.selectable_url pre { border-bottom: 2px solid var(--color-categories-item-border-selected); background: var(--color-categories-item-selected); color: var(--color-categories-item-selected-font); - font-weight: bold; letter-spacing: -0.1px; } .tabs > section:last-of-type { @@ -2370,9 +2369,15 @@ article.result-images .detail { } #search_logo { grid-area: logo; + display: flex; + align-items: center; + justify-content: center; } -.search_logo_img { - width: 40px; +#search_logo svg { + flex: 1; + width: 30px; + height: 30px; + margin: 0.5rem 0 auto 0; } .search_categories { grid-area: categories; @@ -2513,7 +2518,7 @@ article.result-images .detail { flex-direction: row; } #q { - width: auto !important; + width: 100%; flex: 1; } #main_results #q:placeholder-shown ~ #send_search { @@ -2536,6 +2541,14 @@ article.result-images .detail { padding: 10px !important; } } +@media screen and (max-width: 20rem) { + #search { + grid-template-areas: "search search" "categories categories"; + } + #search_logo { + display: none; + } +} #categories { margin: 0 10px 0 0; -webkit-touch-callout: none; @@ -2953,7 +2966,7 @@ article[data-vim-selected].category-social { border: 1px solid var(--color-answer-border); background: var(--color-answer-background); padding: 1rem; - margin: 1rem 0.5rem; + margin: 1rem 0; margin-top: 0; color: var(--color-answer-font); -webkit-border-radius: 10px; |