diff options
author | silverwind <me@silverwind.io> | 2020-11-15 21:58:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-15 15:58:16 -0500 |
commit | 0de546009e466486cd88dfa98d07d8775bd3087d (patch) | |
tree | 9150f26ad2580337acace452363a3081942d366d /web_src/less/_tribute.less | |
parent | 7a30e97002ec8bd601b93549d4efc51743ecf2b3 (diff) | |
download | gitea-0de546009e466486cd88dfa98d07d8775bd3087d.tar.gz gitea-0de546009e466486cd88dfa98d07d8775bd3087d.zip |
CSS color variables, less bold font weight and more (#13567)
* CSS color variables, less bold font weight
- Define color variables for fully saturated colors and apply them where
it made sense
- Add background color helper classes
- Globally reduce bold font weight from 700 to 500
- Remove border from timeline icons
- Unify dropzone styling
- Various border style consolidations
* attempt to fix test
* another attempt at tests
* fix contains
Diffstat (limited to 'web_src/less/_tribute.less')
-rw-r--r-- | web_src/less/_tribute.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web_src/less/_tribute.less b/web_src/less/_tribute.less index adac4d28b2..cfa2e5ded6 100644 --- a/web_src/less/_tribute.less +++ b/web_src/less/_tribute.less @@ -7,7 +7,7 @@ .tribute-container ul { margin-top: 0 !important; - background: #ffffff !important; + background: var(--color-body) !important; } .tribute-container li { @@ -22,7 +22,7 @@ .tribute-container li.highlight, .tribute-container li:hover { - background: #2185d0 !important; + background: var(--color-primary) !important; color: #ffffff !important; } |