150 lines
2.5 KiB
CSS
150 lines
2.5 KiB
CSS
|
|
@import "../../.cache/wal/colors-waybar.css";
|
|
|
|
* {
|
|
color: @foreground;
|
|
border-radius: 14px;
|
|
transition: 120ms ease-in;
|
|
}
|
|
|
|
window#waybar {
|
|
font-family: "Noto Sans", "Font Awesome", sans-serif;
|
|
font-size: 12px;
|
|
color: @foreground;
|
|
border-radius: 16px;
|
|
background: transparent;
|
|
}
|
|
|
|
window#waybar.hidden {
|
|
opacity: 0;
|
|
}
|
|
|
|
window > * > * {
|
|
padding: 2px;
|
|
}
|
|
|
|
.modules-left, .modules-center, .modules-right {
|
|
background: alpha(@background, .65);
|
|
}
|
|
|
|
.module, .widget {
|
|
padding: 0 10px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
widget > * {
|
|
padding-top: 1px;
|
|
padding-bottom: 1px;
|
|
}
|
|
|
|
widget > *:hover:not(#window):not(#workspaces):not(#tray):not(#custom-media) {
|
|
background: @color1;
|
|
}
|
|
|
|
button:hover {
|
|
background: @color1;
|
|
}
|
|
|
|
#workspaces {
|
|
border-radius: 16px;
|
|
padding-left: 2px;
|
|
padding-right: 2px;
|
|
}
|
|
|
|
#workspaces button {
|
|
background: transparent;
|
|
font-size: 19px;
|
|
border-radius: 16px;
|
|
}
|
|
|
|
#workspaces button label {
|
|
color: @foreground;
|
|
margin-top: .2px;
|
|
margin-left: .1px;
|
|
}
|
|
|
|
#workspaces button:hover {
|
|
background: @hover;
|
|
}
|
|
|
|
#workspaces button.active {
|
|
background: @active;
|
|
}
|
|
|
|
#workspaces button.urgent {
|
|
background-color: @color1;
|
|
}
|
|
|
|
@keyframes blink {
|
|
to {
|
|
background-color: alpha(@crust, .3);
|
|
color: @orange;
|
|
}
|
|
}
|
|
|
|
#custom-logo {
|
|
padding-left: 12px;
|
|
padding-right: 18px;
|
|
font-size: 15.2px;
|
|
transition: 110ms ease-in;
|
|
margin-right: 6px;
|
|
}
|
|
|
|
#custom-notifications {
|
|
font-size: 16px;
|
|
padding-left: 10px;
|
|
padding-right: 12px;
|
|
}
|
|
|
|
#battery.charging, #battery.plugged {
|
|
color: @text;
|
|
background-color: alpha(@base, .3);
|
|
}
|
|
|
|
#battery:not(.plugged):not(.charging) {
|
|
background-color: alpha(@blue, .35);
|
|
}
|
|
|
|
/* Using steps() instead of linear as a timing function to limit cpu usage */
|
|
#battery.critical:not(.charging) {
|
|
background-color: @color1;
|
|
color: @foreground;
|
|
animation-name: blink;
|
|
animation-duration: 0.5s;
|
|
animation-timing-function: steps(12);
|
|
animation-iteration-count: infinite;
|
|
animation-direction: alternate;
|
|
}
|
|
|
|
#bluetooth {
|
|
font-size: 14px;
|
|
}
|
|
|
|
#bluetooth.connected {
|
|
padding-right: 12px;
|
|
}
|
|
|
|
#custom-media {
|
|
border: 2px solid @color1;
|
|
font-weight: 500;
|
|
transition: 200ms ease-in;
|
|
}
|
|
|
|
#custom-media:hover {
|
|
border: 2px solid transparent;
|
|
background: @color2;
|
|
}
|
|
|
|
#temperature.critical {
|
|
background-color: @color1;
|
|
}
|
|
|
|
#tray > .passive {
|
|
-gtk-icon-effect: dim;
|
|
}
|
|
|
|
#tray > .needs-attention {
|
|
-gtk-icon-effect: highlight;
|
|
background: @color1;
|
|
}
|