diff options
author | silverwind <me@silverwind.io> | 2023-06-08 00:21:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-07 22:21:57 +0000 |
commit | b6bcb79987ae3c9095fe2b2c7c0a3e4b42cdebba (patch) | |
tree | ced486a2323f742d68f678fdf1fdc62ad73db234 /web_src/css/themes | |
parent | eac1bddb8da2e26a3f6d6678b9888c65418cf318 (diff) | |
download | gitea-b6bcb79987ae3c9095fe2b2c7c0a3e4b42cdebba.tar.gz gitea-b6bcb79987ae3c9095fe2b2c7c0a3e4b42cdebba.zip |
Improve notification icon and navbar (#25111)v1.21.0-dev
Improvements to the notification icon and `<nav>`:
- Add a opaque color for header hover and use it, allowing the border to
be the right color on hover (sadly, not otherwise possible with CSS, not
even `color-mix`).
- Increase font size by 1px
- Use flexbox for slightly better text centering
- Reduce padding of user and add repo button, add margin on right side
of user menu
- Remove the `following bar` wrapper on navbar
<img width="176" alt="Screenshot 2023-06-07 at 00 07 08"
src="https://github.com/go-gitea/gitea/assets/115237/23cdc3d6-7f63-49df-bec3-f2e75e32a304">
<img width="63" alt="Screenshot 2023-06-07 at 00 07 14"
src="https://github.com/go-gitea/gitea/assets/115237/fae602c2-4467-4d50-b1ec-56317843f9a2">
<img width="84" alt="Screenshot 2023-06-07 at 00 07 36"
src="https://github.com/go-gitea/gitea/assets/115237/c48141b8-0b3c-48cc-846a-3a272524dbdb">
<img width="329" alt="Screenshot 2023-06-07 at 00 25 10"
src="https://github.com/go-gitea/gitea/assets/115237/cda612f1-426e-466b-a351-fc992bfd18fd">
<img width="186" alt="Screenshot 2023-06-07 at 00 35 45"
src="https://github.com/go-gitea/gitea/assets/115237/04484a2e-9bbf-493c-aa26-8e936da008fa">
<img width="797" alt="Screenshot 2023-06-07 at 16 57 40"
src="https://github.com/go-gitea/gitea/assets/115237/e7ccb672-5807-4cb6-b306-b18ae0c7e321">
Diffstat (limited to 'web_src/css/themes')
-rw-r--r-- | web_src/css/themes/theme-arc-green.css | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/web_src/css/themes/theme-arc-green.css b/web_src/css/themes/theme-arc-green.css index f6321c9ed7..b07a171b52 100644 --- a/web_src/css/themes/theme-arc-green.css +++ b/web_src/css/themes/theme-arc-green.css @@ -180,8 +180,8 @@ --color-input-toggle-background: #454a57; --color-input-border: #454a57; --color-input-border-hover: #505667; - --color-navbar: #2a2e3a; - --color-navbar-transparent: #2a2e3a00; + --color-header-wrapper: #2a2e3a; + --color-header-wrapper-transparent: #2a2e3a00; --color-light: #00000028; --color-light-mimic-enabled: rgba(0, 0, 0, calc(40 / 255 * 222 / 255 / var(--opacity-disabled))); --color-light-border: #ffffff28; @@ -207,7 +207,8 @@ --color-reaction-active-bg: var(--color-primary-light-5); --color-tooltip-text: #ffffff; --color-tooltip-bg: #000000f0; - --color-header-bar: #2e323e; + --color-nav-bg: #2e323e; + --color-nav-hover-bg: #434651; --color-label-text: #dfe3ec; --color-label-bg: #7c84974b; --color-label-hover-bg: #7c8497a0; |