File: panel-selectors.css

package info (click to toggle)
wf-shell 0.10.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,888 kB
  • sloc: cpp: 7,218; ansic: 6,258; xml: 732; makefile: 4
file content (39 lines) | stat: -rw-r--r-- 785 bytes parent folder | download | duplicates (2)
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);
}