Update group widget styling

This commit is contained in:
Svilen Markov 2024-09-06 20:32:20 +01:00
parent bbda9a0ee8
commit 16a9d8c244
2 changed files with 6 additions and 7 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 88 KiB

After

Width:  |  Height:  |  Size: 81 KiB

View File

@ -210,23 +210,22 @@
background: none; background: none;
font: inherit; font: inherit;
border: none; border: none;
color: inherit;
text-transform: uppercase; text-transform: uppercase;
border-bottom: 1px solid transparent; border-bottom: 1px dotted transparent;
cursor: pointer; cursor: pointer;
flex-shrink: 0; flex-shrink: 0;
padding-bottom: 0.1rem;
transition: color .3s, border-color .3s; transition: color .3s, border-color .3s;
color: var(--color-text-subdue);
line-height: calc(1.6em - 1px);
} }
.widget-group-title:hover:not(.widget-group-title-current) { .widget-group-title:hover:not(.widget-group-title-current) {
border-bottom-color: var(--color-text-subdue); color: var(--color-text-base);
color: var(--color-text-highlight);
} }
.widget-group-title-current { .widget-group-title-current {
border-bottom-color: var(--color-primary); border-bottom-color: var(--color-text-base-muted);
color: var(--color-text-highlight); color: var(--color-text-base);
} }
.widget-group-content { .widget-group-content {