summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2020-01-02 12:36:48 +0100
committerYorhel <git@yorhel.nl>2020-01-02 12:36:48 +0100
commitae9bf1610a43e1820393bb612f75b43a5662d268 (patch)
tree58830ffd37486a9741422b1b1d8158a0094dc5ed /data
parent1e0410079ff2d735942dc0021309c35e5ffdbbe7 (diff)
CSS: Don't wrap the dropdown indicator arrow to the next line
Diffstat (limited to 'data')
-rw-r--r--data/style.css4
1 files changed, 2 insertions, 2 deletions
diff --git a/data/style.css b/data/style.css
index dd0df17e..00ea73d7 100644
--- a/data/style.css
+++ b/data/style.css
@@ -82,8 +82,8 @@ div.warning h2, div.notice h2 { font-size: 13px; font-weight: bold; margin: 0; }
#ds_box table { width: 100%; }
/* Elm dropdowns */
-.elm_dd > a { color: $maintext$; display: block; border: none!important }
-.elm_dd > a > span { float: right; width: 16px; text-align: right; display: inline-block }
+.elm_dd > a { color: $maintext$; display: block; border: none!important; padding-right: 10px; position: relative }
+.elm_dd > a > span { position: absolute; right: 0; top: 0; width: 16px; text-align: right; display: block }
.elm_dd > a > span i { visibility: hidden; font-style: normal }
.elm_dd > a:hover > span > i,
.elm_dd > a:focus > span > i { visibility: visible }