File: stylesheet.css

package info (click to toggle)
gnome-shell-extension-kimpanel 0.0~git20220902.c11f1a6-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 208 kB
  • sloc: javascript: 988; sh: 38; xml: 15; makefile: 2
file content (41 lines) | stat: -rw-r--r-- 735 bytes parent folder | download
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
.popup-menu-boxpointer.kimpanel-popup-boxpointer {
  /* you may customize pointer box here */
}

.popup-menu-content.kimpanel-popup-content {
  /* you may customize pointer box here */
  padding: 0.4em;
}

.kimpanel-label {
  font-family:sans;
  font-weight:normal;
  padding: 0.3em;
}

.kimpanel-candidate-item {
  cursor: pointer;
}

.kimpanel-candidate-item:hover {
  border-radius: 4px;
  background-color: rgba(200,200,200,0.33);
}

.kimpanel-candidate-item:active {
  border-radius: 4px;
  background-color: rgba(200,200,200,0.33);
}

.kimpanel-candidate-item:active:hover {
  border-radius: 4px;
  background-color: rgba(200,200,200,0.15);
}

.minwidth-zero {
  min-width: 0;
}

.icon-disable {
  color:rgba(150,150,150,0.5);
}