Regenerated

This commit is contained in:
2026-04-09 13:21:20 +02:00
parent bd1003fd94
commit c29c6955e6
2 changed files with 312 additions and 485 deletions
+312 -312
View File
File diff suppressed because it is too large Load Diff
-173
View File
@@ -1,173 +0,0 @@
@import url("file:///home/henrov/.config/shared/colors.css");
/* --- Global --- */
* {
font-family:
Aporetic Sans Mono,
Iosevka Nerd Font,
Roboto,
Helvetica,
Arial,
sans-serif;
font-size: 13px;
}
window#waybar {
background-color: transparent;
color: @text;
}
/* --------------------------------------------------------- */
/* MODULES CENTER BASE --- all visible widgets min 80px */
/* --------------------------------------------------------- */
.modules-center > widget {
min-width: 80px;
color: @text;
font-weight: bold;
border-radius: 30px;
background:
linear-gradient(@base-alpha, @base-alpha) padding-box,
linear-gradient(45deg, @blue, @green) border-box;
border: 2px solid transparent;
transition: all 0.2s ease;
}
.modules-center > box + box {
margin-left: 5px;
}
.modules-center > widget label,
.modules-center > label {
padding: 0 5px;
transition: padding 0.2s ease;
}
/* --- Anchors & dynamic modules --- */
#custom-windows,
#custom-hardware-anchor,
#custom-connections-anchor {
min-width: 0;
padding: 0;
margin: 0;
opacity: 0;
transition: min-width 0.2s ease, opacity 0.2s ease, padding 0.2s ease;
}
/* Show anchors when active / hovered */
#custom-windows.active {
min-width: 0px;
padding: 0 5px;
margin: 0 2px;
opacity: 0.5;
font-weight: normal;
font-size: 12px;
}
#hardware:hover #custom-hardware-anchor,
#connections:hover #custom-connections-anchor {
min-width: 0px;
padding: 0 5px;
margin: 0 2px;
opacity: 1;
}
/* --------------------------------------------------------- */
/* MODULES RIGHT --- min-width 80px for visible widgets */
/* --------------------------------------------------------- */
.modules-right > widget {
min-width: 80px;
color: @text;
font-weight: bold;
border-radius: 30px;
background:
linear-gradient(@base-alpha, @base-alpha) padding-box,
linear-gradient(45deg, @blue, @green) border-box;
border: 2px solid transparent;
}
.modules-right > box + box {
margin-left: 5px;
}
.modules-right > widget label,
.modules-right > label {
padding: 0px 5px;
transition: padding 0.2s ease;
}
/* --------------------------------------------------------- */
/* SLIDERS / SPECIAL MODULES */
/* --------------------------------------------------------- */
#pulseaudio-slider {
padding: 0;
margin: 0;
}
#pulseaudio-slider slider {
min-height: 0px;
min-width: 0px;
opacity: 0;
border-radius: 30px;
background: linear-gradient(45deg, @blue, @green);
border: none;
box-shadow: none;
}
#pulseaudio-slider trough {
min-height: 10px;
min-width: 80px;
border-radius: 30px;
background: transparent;
}
#pulseaudio-slider highlight {
min-width: 10px;
border-radius: 30px;
background: linear-gradient(45deg, @blue, @green);
border: 2px solid transparent;
}
/* --------------------------------------------------------- */
/* STATES / SPECIALS */
/* --------------------------------------------------------- */
#idle_inhibitor.activated {
background: linear-gradient(45deg, @blue, @green);
border: 2px solid transparent;
color: @base;
}
#battery.charging {
color: @green;
}
#battery.warning:not(.charging) {
color: white;
animation: blink 0.5s linear infinite alternate;
}
@keyframes blink {
to {
background-color: #ffffff;
color: black;
}
}
#network.disconnected {
background-color: @red;
}
#temperature.critical {
background-color: @red;
}
/* --------------------------------------------------------- */
/* GLOBAL MODULE SPACING */
#clock,
#idle_inhibitor,
#battery,
#cpu,
#memory,
#temperature,
#network,
#pulseaudio,
#tray {
margin: 0 5px;
padding: 0 10px;
}