diff options
author | silverwind <me@silverwind.io> | 2019-08-04 14:55:20 +0200 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2019-08-04 20:55:20 +0800 |
commit | a1f5789a29a7a854125fe50a024282470e658cf7 (patch) | |
tree | 0334751d200d3cc031f424b848efba2ce8cf2657 /public/less/themes | |
parent | 0e887af2d16740798a1ced5f6af0b58bd070c40b (diff) | |
download | gitea-a1f5789a29a7a854125fe50a024282470e658cf7.tar.gz gitea-a1f5789a29a7a854125fe50a024282470e658cf7.zip |
Tweak label border CSS (#7739)
Also did various tweaks to label hover and dark theme.
Fixes: https://github.com/go-gitea/gitea/pull/5487
Diffstat (limited to 'public/less/themes')
-rw-r--r-- | public/less/themes/arc-green.less | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/public/less/themes/arc-green.less b/public/less/themes/arc-green.less index 12d7eb2db1..37911c186c 100644 --- a/public/less/themes/arc-green.less +++ b/public/less/themes/arc-green.less @@ -1091,8 +1091,19 @@ input { a.ui.label:hover, a.ui.labels .label:hover { - background-color: #505667; - color: #dbdbdb; + background-color: #505667 !important; + color: #dbdbdb !important; +} + +.repository #commits-table td.sha .sha.label, +.repository #repo-files-table .sha.label { + border-color: #888; +} + +.repository #commits-table td.sha .sha.label.isSigned .detail.icon, +.repository #repo-files-table .sha.label.isSigned .detail.icon { + background: none; + border-left-color: #888; } .repository .label.list .item { |