diff options
| author | 2025-09-13 17:30:46 +0200 | |
|---|---|---|
| committer | 2025-09-13 17:30:46 +0200 | |
| commit | 7d3102e909ef664dbedbfd6c796c2d380616b8c6 (patch) | |
| tree | d62d26a36e0c82b7cc5cc3be8362965ecd148508 | |
| parent | b04104fd957801b547c232436e6584fde7fdb02f (diff) | |
Decrease brightness of nav buttons (#7956)
Before
<img width="536" height="50" alt="image" src="https://github.com/user-attachments/assets/799fe85b-3141-4f02-b020-ab7b06439ddc" />
After
<img width="510" height="46" alt="image" src="https://github.com/user-attachments/assets/780fa55e-e42b-4c4c-8ba9-32b877cf4ddd" />
| -rw-r--r-- | p/themes/Origine/origine.css | 4 | ||||
| -rw-r--r-- | p/themes/Origine/origine.rtl.css | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/p/themes/Origine/origine.css b/p/themes/Origine/origine.css index 2e7d23140..98fb576b1 100644 --- a/p/themes/Origine/origine.css +++ b/p/themes/Origine/origine.css @@ -315,6 +315,10 @@ a:hover .icon { filter: brightness(1.1); } +.btn.active, .btn:active { + filter: brightness(0.95); +} + .btn.active .icon, .btn:active .icon { filter: brightness(1.1); diff --git a/p/themes/Origine/origine.rtl.css b/p/themes/Origine/origine.rtl.css index 8ff32c643..ca3faf02d 100644 --- a/p/themes/Origine/origine.rtl.css +++ b/p/themes/Origine/origine.rtl.css @@ -315,6 +315,10 @@ a:hover .icon { filter: brightness(1.1); } +.btn.active, .btn:active { + filter: brightness(0.95); +} + .btn.active .icon, .btn:active .icon { filter: brightness(1.1); |
