diff options
author | silverwind <me@silverwind.io> | 2020-05-20 00:02:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-19 18:02:25 -0400 |
commit | c1ba480a7a4a8bdbb9f3bcb2036037a1221475d1 (patch) | |
tree | c68278eb28cc919afbf4402b45628ba198ad571c /web_src | |
parent | 1197512b2b5ec92ad8a2b506bb45b8d31595e04c (diff) | |
download | gitea-c1ba480a7a4a8bdbb9f3bcb2036037a1221475d1.tar.gz gitea-c1ba480a7a4a8bdbb9f3bcb2036037a1221475d1.zip |
Tweak reaction buttons (#11496) (#11516)
- Vertical centering using flexbox
- Very slightly decreased size of the boxes
Co-authored-by: zeripath <art27@cantab.net>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Co-authored-by: zeripath <art27@cantab.net>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'web_src')
-rw-r--r-- | web_src/less/_repository.less | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/web_src/less/_repository.less b/web_src/less/_repository.less index 148d65e717..38f9e115c8 100644 --- a/web_src/less/_repository.less +++ b/web_src/less/_repository.less @@ -2197,9 +2197,12 @@ padding: 0; display: flex; - .ui.label { + .ui.label, + .ui.label.visible { max-height: 40px; - padding: 9px 15px 7px; + padding: .4rem .8rem; + display: flex !important; + align-items: center; border: 0; border-right: 1px solid; border-radius: 0; @@ -2220,20 +2223,17 @@ } .reaction-count { - margin-left: 4px; + margin-left: .5rem; } .select-reaction { - float: left; - padding: .6em; - line-height: 21px; + display: flex; + align-items: center; + padding: .5rem; &:not(.active) a { display: none; } - > svg { - vertical-align: middle; - } } &:hover .select-reaction a { |