Implement styling options for all the bar components (not menus) through options variables.

This commit is contained in:
Jas Singh
2024-07-17 01:44:50 -07:00
parent f4ff5bba27
commit 50eeb4275d
64 changed files with 783 additions and 2074 deletions

View File

@@ -0,0 +1,61 @@
@import "../colors";
.menu-items-container.energy {
.menu-label {
color: $yellow;
}
.power-profile-item {
margin-bottom: 0.5em;
label {
margin-left: 1em;
}
image {
font-size: 1.3em;
min-width: 1em;
min-height: 1em;
color: $overlay1;
}
&:hover {
label {
color: $yellow;
}
}
&.active {
image {
color: $yellow;
}
}
}
.menu-active-slider.brightness {
trough {
highlight,
progress {
background: $yellow;
}
}
}
.brightness-container {
padding-bottom: 1em;
}
.brightness-slider-icon {
font-size: 1.4em;
min-width: 1em;
min-height: 1em;
color: $overlay2;
}
.brightness-slider-label {
font-size: 0.9em;
min-width: 2.5em;
font-weight: bold;
margin-bottom: 0.2em;
}
}