diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2022-07-04 17:05:33 +0200 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2022-07-04 19:06:45 +0200 |
commit | f8222eb2cd22fc02977bd5857367afc7c40c3a22 (patch) | |
tree | 5e66ec6ef53fd488c5a476ccb559b96da5ad8957 | |
parent | 14756a267444614dbed2c8a456ef088f2755198c (diff) | |
download | searxng-f8222eb2cd22fc02977bd5857367afc7c40c3a22.tar.gz searxng-f8222eb2cd22fc02977bd5857367afc7c40c3a22.zip |
[fix] style.less: move <dl> from infobox.attributes to .attributes class
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
-rw-r--r-- | searx/static/themes/simple/src/less/style.less | 33 |
1 files changed, 19 insertions, 14 deletions
diff --git a/searx/static/themes/simple/src/less/style.less b/searx/static/themes/simple/src/less/style.less index b97e113fe..11d2ef58d 100644 --- a/searx/static/themes/simple/src/less/style.less +++ b/searx/static/themes/simple/src/less/style.less @@ -594,24 +594,29 @@ article[data-vim-selected].category-social { padding: 0; } - dl { - margin: 0.5em 0; - } - dt { - display: inline; - margin-top: 0.5em; - .ltr-margin-right(0.25em); - margin-bottom: 0.5em; - .ltr-margin-left(0); - padding: 0; font-weight: bold; } - dd { - display: inline; - margin: 0.5em 0; - padding: 0; + .attributes { + dl { + margin: 0.5em 0; + } + + dt { + display: inline; + margin-top: 0.5em; + .ltr-margin-right(0.25em); + margin-bottom: 0.5em; + .ltr-margin-left(0); + padding: 0; + } + + dd { + display: inline; + margin: 0.5em 0; + padding: 0; + } } input { |