diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-01-29 19:52:24 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-01 21:00:07 -0500 |
commit | dd700af0be94d33802dfc71e2c14abbad8a34578 (patch) | |
tree | 214f4efda776a1fe9cae9f2b8917fc79a27d146f /ext/mixed/css/display.css | |
parent | 05bb4aef71c5c062b451dd04dcd55111f7ba7377 (diff) |
Fix tag double click
Diffstat (limited to 'ext/mixed/css/display.css')
-rw-r--r-- | ext/mixed/css/display.css | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ext/mixed/css/display.css b/ext/mixed/css/display.css index 55e76ab7..8bbd5731 100644 --- a/ext/mixed/css/display.css +++ b/ext/mixed/css/display.css @@ -208,17 +208,21 @@ button.action-button { } .tag { - display: inline; + display: inline-block; padding: 0.2em 0.6em 0.3em; font-size: 75%; font-weight: 700; - line-height: 1; + line-height: 1.25; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: 0.25em; } +.tag-inner { + display: block; +} + .tag-list>.tag+.tag { margin-left: 0.375em; } |