diff options
author | Andrey Nering <andrey.nering@gmail.com> | 2017-01-02 16:40:50 -0200 |
---|---|---|
committer | Andrey Nering <andrey.nering@gmail.com> | 2017-01-02 16:40:50 -0200 |
commit | f59672a18db930477269f783746d8ce057827e65 (patch) | |
tree | 1258f076cce698b150eaf39ea8104f04829bb4d1 | |
parent | 341a3b571bd262d7dc758825ca4dddca4e7f832b (diff) | |
download | gitea-f59672a18db930477269f783746d8ce057827e65.tar.gz gitea-f59672a18db930477269f783746d8ce057827e65.zip |
More fine graned colors
-rw-r--r-- | public/css/index.css | 6 | ||||
-rw-r--r-- | public/less/_user.less | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/public/css/index.css b/public/css/index.css index a8d616cc05..54e7323432 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -2704,13 +2704,13 @@ footer .ui.language .menu { } .user.notification .octicon-issue-opened, .user.notification .octicon-git-pull-request { - color: green; + color: #21ba45; } .user.notification .octicon-issue-closed { - color: red; + color: #d01919; } .user.notification .octicon-git-merge { - color: purple; + color: #a333c8; } .dashboard { padding-top: 15px; diff --git a/public/less/_user.less b/public/less/_user.less index d7acc4639e..b446351bd4 100644 --- a/public/less/_user.less +++ b/public/less/_user.less @@ -86,13 +86,13 @@ } .octicon-issue-opened, .octicon-git-pull-request { - color: green; + color: #21ba45; } .octicon-issue-closed { - color: red; + color: #d01919; } .octicon-git-merge { - color: purple; + color: #a333c8; } } } |