diff options
author | Iván Valdés <iv@a.ki> | 2020-10-22 12:48:48 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-22 15:48:48 -0400 |
commit | 26d6c153007f799951ee3c50322f334ba51a2bc3 (patch) | |
tree | 5dcb4b22e644d074a9f9261563fdb0c8a769ff87 /web_src | |
parent | 1989fe2ddc2954ac2d6085d88d92ff0f742d3314 (diff) | |
download | gitea-26d6c153007f799951ee3c50322f334ba51a2bc3.tar.gz gitea-26d6c153007f799951ee3c50322f334ba51a2bc3.zip |
Fix arc theme label backgrounds (#13267)
* Fix arc theme label backgrounds
* Add specific style to yellow labels (background + border color)
* Remove !important from label's background rule to avoid breaking user
defined labels. Make the rule more specific to override fomantic UI
default white background
* Remove unnecesary selector
Co-authored-by: zeripath <art27@cantab.net>
Diffstat (limited to 'web_src')
-rw-r--r-- | web_src/less/themes/theme-arc-green.less | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/web_src/less/themes/theme-arc-green.less b/web_src/less/themes/theme-arc-green.less index c2e4409972..abae671979 100644 --- a/web_src/less/themes/theme-arc-green.less +++ b/web_src/less/themes/theme-arc-green.less @@ -585,6 +585,12 @@ footer { border-color: #8a2121 !important; } +.ui.yellow.label, +.ui.yellow.labels .label { + border-color: #664d02 !important; + background-color: #936e00 !important; +} + .ui.menu { background: #404552; border: 1px solid #353945; @@ -617,7 +623,7 @@ footer { .ui.label.basic { color: #dbdbdb; border-color: rgb(152, 152, 152); - background-color: #2a2e39 !important; + background-color: #2a2e39; } .issue.list > .item .title { |