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
79
80
81
82
83
84
85
86
87
88
|
#waybar {
background: rgba(0, 0, 0, 0.55);
color: #fff;
font-size: 0.9rem;
}
widget button {
padding: 0;
border: none;
color: inherit;
}
.modules-center {
padding: 5px 0;
}
.modules-right label,
.modules-right box {
padding: 0 10px;
}
.modules-right widget:nth-child(odd) label,
.modules-right widget:nth-child(odd) box {
background: rgba(255, 255, 255, 0.2);
}
.modules-right widget:nth-child(even) label,
.modules-right widget:nth-child(even) box {
background: rgba(255, 255, 255, 0.25);
}
#workspaces button {
color: #fff;
padding: 0 0.35rem;
border-radius: 0;
min-height: 0;
font-size: 0.7rem;
background: rgba(85, 85, 85, 0.5);
border: 0.5px solid transparent;
}
#workspaces button.visible {
background: rgba(51, 51, 51, 0.5);
}
#workspaces button.visible.focused {
background: rgba(0, 0, 0, 0.8);
border-top-color: #fff;
}
#workspaces button:hover {
box-shadow: none;
border-color: #fff;
border-width: 0.5px;
background: inherit;
font-weight: inherit;
}
#mode {
border-bottom: 1px solid #fff;
border-radius: 0;
margin: 0 10px;
padding: 0 5px;
}
#custom-workspace-add {
padding: 0 0.5rem;
}
#tray widget + widget image {
margin-left: 5px;
}
#pulseaudio.muted {
text-decoration: line-through;
}
|