diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-03-16 16:47:05 +0100 |
|---|---|---|
| committer | Alexandre Flament <alex@al-f.net> | 2021-03-22 08:22:59 +0100 |
| commit | d6480016888aecb05200af2ad158abee503390df (patch) | |
| tree | f552cd686917a941fcca8850a34dc9b9eb493b99 /searx/static/themes/simple/css/searx.css | |
| parent | bfd4e1b3423993b112bd5e2a60c806fc0c83527f (diff) | |
[mod] preferences: a tooltip is shown when the mouse is over the engine names
Diffstat (limited to 'searx/static/themes/simple/css/searx.css')
| -rw-r--r-- | searx/static/themes/simple/css/searx.css | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/searx/static/themes/simple/css/searx.css b/searx/static/themes/simple/css/searx.css index 938731ff7..206c5f903 100644 --- a/searx/static/themes/simple/css/searx.css +++ b/searx/static/themes/simple/css/searx.css @@ -1425,6 +1425,21 @@ select:focus { #main_preferences div.selectable_url pre { width: 100%; } +#main_preferences .engine-tooltip { + display: none; + position: absolute; + padding: 0.5rem 1rem; + margin: 0rem 0 0 2rem; + border: 1px solid #ddd; + background: white; + font-size: 14px; + font-weight: normal; + z-index: 1000000; +} +#main_preferences th:hover .engine-tooltip, +#main_preferences .engine-tooltip:hover { + display: inline-block; +} @media screen and (max-width: 75em) { .preferences_back { clear: both; |