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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
@import url("/home/user/.cache/wal/colors-css");
* {
background: transparent;
color: @foreground;
font-size: 1em;
border: none;
box-shadow: none;
min-height: 0;
}
window#waybar {
border: 2px solid alpha(@color11, 0.3);
border-radius: 0.75em;
background: alpha(black, 0.5);
}
tooltip {
background: alpha(@background, 0.9);
border: 2px solid alpha(@color11, 0.3);
border-radius: 0.75em;
}
#workspaces button {
padding: 0em 0em;
margin: 0em 0em;
}
#tray menu {
border-radius: 0.5em;
background: alpha(@background, 0.9);
}
#tray separator {
background: @foreground;
}
#tray menuitem:hover {
background: alpha(@color11, 0.5);
}
#systemtray,
#workspaces {
margin: 0.5em 0;
background: alpha(@background, 0.3);
border: 2px solid alpha(@color11, 0.3);
border-radius: 0.75em;
}
#workspaces {
margin-left: 0.5em;
}
#clock {
margin-right: 0.5em;
}
#tray,
#window,
#custom-notification,
#custom-launcher,
#custom-updates,
#custom-notification,
#custom-launcher,
#wireplumber,
#clock,
#backlight,
#network,
#battery {
padding: 0.25em 0.5em;
}
|