blob: 9886761cb88e80e19c7cbcd6c750c2fe3cd825e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/* The bar itself, and the chrome that is not a pill.
*
* The bar is transparent: the pills are the only thing that draws, which is
* what makes them read as separate capsules over the wallpaper.
*/
window#waybar {
background: transparent;
color: @main-fg;
}
/* GTK draws a button background by default, and it shows through the pill's
* own rounded corners as square shoulders. */
button {
background: transparent;
border: none;
box-shadow: none;
text-shadow: none;
min-height: 0;
}
tooltip {
background: @main-bg;
border: 1px solid @outline;
border-radius: 8px;
}
tooltip label {
color: @main-fg;
padding: 2px;
}
|