diff options
author | MrPaulBlack <paul.accounts@protonmail.com> | 2021-09-28 00:26:17 +0200 |
---|---|---|
committer | MrPaulBlack <paul.accounts@protonmail.com> | 2021-09-28 00:26:17 +0200 |
commit | 57f58f85bde5d5a48ce0f646b8ac65a028481daf (patch) | |
tree | 80a534ec7dcf11a12e63ec0c3ad7317518ddaa53 | |
parent | a1a53859c2b2476947f0e5605b5aa4f3184f2af7 (diff) | |
download | searxng-57f58f85bde5d5a48ce0f646b8ac65a028481daf.tar.gz searxng-57f58f85bde5d5a48ce0f646b8ac65a028481daf.zip |
[fix] position of engine description tooltip
-rw-r--r-- | searx/static/themes/simple/src/less/preferences.less | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/searx/static/themes/simple/src/less/preferences.less b/searx/static/themes/simple/src/less/preferences.less index 0909a6bf9..3bb04ed6f 100644 --- a/searx/static/themes/simple/src/less/preferences.less +++ b/searx/static/themes/simple/src/less/preferences.less @@ -112,7 +112,7 @@ th.name { .engine-tooltip { margin-top: 1.8rem; - left: 20rem; + left: calc((100% - 85em) / 2 + 10em); max-width: 40rem; .engine-description { @@ -126,4 +126,8 @@ .preferences_back { clear: both; } + + .engine-tooltip { + left: 10em !important; + } } |