forked from WayfireWM/wf-shell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpanel-selectors.css
More file actions
39 lines (34 loc) · 785 Bytes
/
panel-selectors.css
File metadata and controls
39 lines (34 loc) · 785 Bytes
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
/* Examples of ways CSS selectors can be used */
/* Sections of the panel can be selected */
.wf-panel .left,
.wf-panel .right,
.wf-panel .center {
background-color: black;
}
/* Individual plugins can be selected */
.wf-panel .battery,
.wf-panel .menu,
.wf-panel .clock,
.wf-panel .command-output,
.wf-panel .launchers,
.wf-panel .menu,
.wf-panel .network,
.wf-panel .spacing,
.wf-panel .volume,
.wf-panel .window-list {
font: monospace;
}
/* Plugin popovers can be selected */
.menu-popover,
.clock-popover {
font: monospace;
}
/* animations for hover are possible */
.wf-panel .launcher image {
transition: 500ms linear;
-gtk-icon-transform: scale(0.8);
}
.wf-panel .launcher:hover image {
transition: 500ms linear;
-gtk-icon-transform: scale(1.2);
}