blob: e83e12b2257953b682eb30076909f42542fa3502 (
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
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
71
72
73
74
75
76
77
78
|
* {
border-radius: 0;
border: 0;
font-family: "Noto Sans", "Font Awesome 5 Free";
font-size: 11pt;
text-shadow: none;
}
window#waybar {
background: #eff0f2;
color: #4a4b4e;
border-bottom: 1px solid #dee2e0;
border-left: 5px solid black;
border-right: 5px solid black;
}
.modules-left, .modules-center, .modules-right {
background: #eff0f2;
border-bottom: 1px solid #dee2e0;
}
.modules-left {
border-radius: 5px 0 0 0;
padding-left: 5px;
}
.modules-right {
border-radius: 0 5px 0 0;
}
tooltip {
background: alpha(#eff0f2, 0.95);
border: 1px solid #dee2e0;
border-radius: 5px;
}
tooltip label {
color: #4a4b4e;
}
label {
padding: 2px 10px;
margin: 0;
}
#workspaces label {
padding: 0;
}
#workspaces button {
padding: 0 6px;
font-weight: normal;
}
#workspaces button:hover {
box-shadow: inherit;
text-shadow: inherit;
background: #eff0f2;
}
#workspaces button.focused {
background: #dee2e0;
}
#idle_inhibitor {
margin: 0;
padding: 2px 12px 2px 6px;
}
#idle_inhibitor.activated {
color: #eff0f2;
background: #a32a3a;
text-shadow: 1px 1px 0 #ae4e2a;
}
#custom-reboot {
color: #a32a3a;
}
|