Fix regression caused by #72

The slider texts had a background of inactive, instead of background.
So only set the background of the actual sensors
This commit is contained in:
scorpion-26 2023-11-30 13:04:55 +01:00 committed by scorpion-26
parent 56c53c49cd
commit dcd554b69f
2 changed files with 42 additions and 4 deletions

View file

@ -142,36 +142,58 @@ highlight {
.disk-widget * { .disk-widget * {
color: #bd93f9; color: #bd93f9;
background-color: #44475a;
font-size: 16px; font-size: 16px;
} }
.disk-util-progress {
background-color: #44475a;
}
.vram-widget * { .vram-widget * {
color: #ffb86c; color: #ffb86c;
font-size: 16px;
}
.vram-util-progress {
background-color: #44475a; background-color: #44475a;
} }
.ram-widget * { .ram-widget * {
color: #f1fa8c; color: #f1fa8c;
font-size: 16px;
}
.ram-util-progress {
background-color: #44475a; background-color: #44475a;
} }
.gpu-widget * { .gpu-widget * {
color: #8be9fd; color: #8be9fd;
font-size: 16px;
}
.gpu-util-progress {
background-color: #44475a; background-color: #44475a;
} }
.cpu-widget * { .cpu-widget * {
color: #50fa7b; color: #50fa7b;
font-size: 16px;
}
.cpu-util-progress {
background-color: #44475a; background-color: #44475a;
} }
.battery-widget * { .battery-widget * {
color: #ff79c6; color: #ff79c6;
background-color: #44475a;
font-size: 16px; font-size: 16px;
} }
.battery-util-progress {
background-color: #44475a;
}
.battery-charging { .battery-charging {
color: #ffb86c; color: #ffb86c;
} }

View file

@ -184,35 +184,51 @@ highlight {
.disk-widget * { .disk-widget * {
color: $purple; color: $purple;
background-color: $inactive;
font-size: $textsize; font-size: $textsize;
} }
.disk-util-progress {
background-color: $inactive;
}
.vram-widget * { .vram-widget * {
color: $orange; color: $orange;
font-size: $textsize;
}
.vram-util-progress {
background-color: $inactive; background-color: $inactive;
} }
.ram-widget * { .ram-widget * {
color: $yellow; color: $yellow;
font-size: $textsize;
}
.ram-util-progress {
background-color: $inactive; background-color: $inactive;
} }
.gpu-widget * { .gpu-widget * {
color: $cyan; color: $cyan;
font-size: $textsize;
}
.gpu-util-progress {
background-color: $inactive; background-color: $inactive;
} }
.cpu-widget * { .cpu-widget * {
color: $green; color: $green;
font-size: $textsize;
}
.cpu-util-progress {
background-color: $inactive; background-color: $inactive;
} }
.battery-widget * { .battery-widget * {
color: $pink; color: $pink;
background-color: $inactive;
font-size: $textsize; font-size: $textsize;
} }
.battery-util-progress {
background-color: $inactive;
}
.battery-charging { .battery-charging {
color: $orange color: $orange