diff options
author | silverwind <me@silverwind.io> | 2024-03-08 10:42:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-08 09:42:12 +0000 |
commit | 114bb505a3b0819db683d4b586e950df6a17bff8 (patch) | |
tree | ddc37a1f5d571658a553b80681e4e48f392c1585 /web_src/css/themes | |
parent | b5c418f271963f8de0b8324305ea74cde7d3f3ab (diff) | |
download | gitea-114bb505a3b0819db683d4b586e950df6a17bff8.tar.gz gitea-114bb505a3b0819db683d4b586e950df6a17bff8.zip |
Style fomantic grey labels (#29458)
Fomantic grey labels in the dashboard repo lists were showing original
fomantic colors, fixed that. Also slightly tweaked the light theme
colors so it uses same opacity values as dark theme.
<img width="165" alt="Screenshot 2024-03-07 at 21 06 23"
src="https://github.com/go-gitea/gitea/assets/115237/72744d6f-2ee1-4e5d-8ba0-b482a446f535">
<img width="167" alt="Screenshot 2024-03-07 at 21 06 00"
src="https://github.com/go-gitea/gitea/assets/115237/1ba93775-e5a9-4b28-b90f-59c1e9199687">
Diffstat (limited to 'web_src/css/themes')
-rw-r--r-- | web_src/css/themes/theme-gitea-light.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web_src/css/themes/theme-gitea-light.css b/web_src/css/themes/theme-gitea-light.css index 5137e0774c..fbe2458ed6 100644 --- a/web_src/css/themes/theme-gitea-light.css +++ b/web_src/css/themes/theme-gitea-light.css @@ -228,9 +228,9 @@ --color-nav-hover-bg: #ebebeb; --color-nav-text: var(--color-text); --color-label-text: var(--color-text); - --color-label-bg: #cacaca5b; - --color-label-hover-bg: #cacacaa0; - --color-label-active-bg: #cacacaff; + --color-label-bg: #9d9d9d4b; + --color-label-hover-bg: #9d9d9da0; + --color-label-active-bg: #9d9d9dff; --color-accent: var(--color-primary-light-1); --color-small-accent: var(--color-primary-light-6); --color-active-line: #fffbdd; |