diff options
author | guillep2k <18600385+guillep2k@users.noreply.github.com> | 2019-10-25 21:43:38 -0300 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2019-10-26 08:43:38 +0800 |
commit | 8b078236801f5f37e83ba2f21c11679805e4ae9f (patch) | |
tree | a53f8c96e82b36508921f642bbe7a2444aec1f43 /public | |
parent | 6aa3f8bc29cb1ed3a1b165cbf526079a751c8c71 (diff) | |
download | gitea-8b078236801f5f37e83ba2f21c11679805e4ae9f.tar.gz gitea-8b078236801f5f37e83ba2f21c11679805e4ae9f.zip |
Improve visibility of "Pending" indicator (#8685)
* Improve visibility of "Pending" indicator
* Use background-color instead of just background
* Tone down the yellow
Diffstat (limited to 'public')
-rw-r--r-- | public/css/index.css | 1 | ||||
-rw-r--r-- | public/less/_repository.less | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/public/css/index.css b/public/css/index.css index e404c1fec6..2815accab9 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -567,6 +567,7 @@ i.icon.centerlock{top:1.5em} .repository.view.issue .comment-list .timeline-line:before{display:block;content:"";position:absolute;margin-top:12px;margin-bottom:14px;top:0;bottom:0;left:82px;width:2px;background-color:#f3f3f3;z-index:-1} .repository.view.issue .comment-list .comment .avatar{width:3em} .repository.view.issue .comment-list .comment .tag{color:#767676;margin-top:3px;padding:2px 5px;font-size:12px;border:1px solid rgba(0,0,0,.1);border-radius:3px} +.repository.view.issue .comment-list .comment .tag.pending{color:#000;background-color:#fffbb2;margin-left:5px} .repository.view.issue .comment-list .comment .actions .item{float:left} .repository.view.issue .comment-list .comment .actions .item.tag{margin-right:5px} .repository.view.issue .comment-list .comment .actions .item.action{margin-top:6px;margin-left:10px} diff --git a/public/less/_repository.less b/public/less/_repository.less index 48a1214c07..d6bc84ee56 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -738,6 +738,11 @@ font-size: 12px; border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 3px; + &.pending { + color: black; + background-color: #fffbb2; + margin-left: 5px; + } } .actions { |