diff options
author | silverwind <me@silverwind.io> | 2020-11-07 22:04:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-07 23:04:40 +0200 |
commit | 9aa8693e2cdbd4d1f128da0bdaf3af083d5fe679 (patch) | |
tree | 90681cbe36913112d4c8260462918e76c3e21627 /web_src/less/_dashboard.less | |
parent | e461f0854f451c4bbca15007696278aa6435535c (diff) | |
download | gitea-9aa8693e2cdbd4d1f128da0bdaf3af083d5fe679.tar.gz gitea-9aa8693e2cdbd4d1f128da0bdaf3af083d5fe679.zip |
Frontpage and Heatmap CSS tweaks (#13443)
* Frontpage and Heatmap CSS tweaks
- Make heatmap use primary color
- Defined secondary color shades
- Set various blue colors to CSS vars
- Misc tweaks
* remove a useless variable
* remove another useless variable
Co-authored-by: Lauris BH <lauris@nix.lv>
Diffstat (limited to 'web_src/less/_dashboard.less')
-rw-r--r-- | web_src/less/_dashboard.less | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/web_src/less/_dashboard.less b/web_src/less/_dashboard.less index bbe46f3c30..45440ee480 100644 --- a/web_src/less/_dashboard.less +++ b/web_src/less/_dashboard.less @@ -82,7 +82,6 @@ &.feeds { .news { - li { display: flex; align-items: baseline; @@ -138,6 +137,10 @@ border-radius: 3px; word-break: break-all; } + + &:last-of-type .divider { + display: none !important; + } } .list { @@ -160,7 +163,7 @@ li { &:not(:last-child) { - border-bottom: 1px solid #ebebeb; + border-bottom: 1px solid var(--color-secondary); } &.private { @@ -172,7 +175,7 @@ display: block; .svg { - color: #888888; + color: var(--color-secondary-dark-6); &.rear { font-size: 15px; |