85 lines
1.3 KiB
CSS
85 lines
1.3 KiB
CSS
|
|
@import "../../.cache/wal/colors-waybar.css";
|
|
@import "./modules.css";
|
|
|
|
* {
|
|
color: @foreground;
|
|
transition: 120ms ease-in;
|
|
}
|
|
|
|
window#waybar {
|
|
font-family: "Noto Sans", "Font Awesome", sans-serif;
|
|
font-size: 12px;
|
|
color: @foreground;
|
|
background: transparent;
|
|
}
|
|
|
|
window#waybar > * {
|
|
padding: 4px;
|
|
background: alpha(@background, .85);
|
|
margin-bottom: 4px;
|
|
border-radius: 14px;
|
|
}
|
|
|
|
.module {
|
|
padding: 0 10px;
|
|
font-weight: 500;
|
|
margin: 0 1px;
|
|
}
|
|
|
|
widget > * {
|
|
border-radius: 14px;
|
|
}
|
|
|
|
widget > *:hover:not(#workspaces):not(#tray):not(#custom-media) {
|
|
background: @color1;
|
|
}
|
|
|
|
widget label {
|
|
font-size: .98em;
|
|
font-weight: 500;
|
|
}
|
|
|
|
menu {
|
|
background: @background;
|
|
border: none;
|
|
padding: 2px;
|
|
}
|
|
|
|
menu > separator {
|
|
padding: 0px;
|
|
margin: 2px 0;
|
|
}
|
|
|
|
menu > * {
|
|
border-radius: 2px;
|
|
margin: 0;
|
|
}
|
|
|
|
menu > *:first-child {
|
|
border-top-left-radius: 8px;
|
|
border-top-right-radius: 8px;
|
|
}
|
|
|
|
menu > *:last-child {
|
|
border-bottom-left-radius: 8px;
|
|
border-bottom-right-radius: 8px;
|
|
}
|
|
|
|
menu > *:hover {
|
|
background: @color1;
|
|
}
|
|
|
|
tooltip {
|
|
padding: 3px;
|
|
border-radius: 8px;
|
|
border-color: @color1;
|
|
background: @background;
|
|
}
|
|
|
|
tooltip > * {
|
|
padding: 0;
|
|
font-weight: 500;
|
|
font-size: .95em;
|
|
}
|