File: shell.css

package info (click to toggle)
gnome-tweaks 49.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,796 kB
  • sloc: python: 2,553; sh: 22; xml: 10; makefile: 2
file content (68 lines) | stat: -rw-r--r-- 1,052 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
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
/* the sidebar */
.tweak-category {
  padding: 10px;
}

/* the container and tweaks in a group */
.tweak-group {
  background-color: rgba(0, 0, 0, 0);
}

.tweak {
  padding-top: 3px;
  background-color: rgba(0, 0, 0, 0);
}
.tweak:hover {
  background-color: rgba(0, 0, 0, 0);
}
.tweak.title {
  padding-top: 10px;
}

.tweak-titlebar-left:dir(ltr),
.tweak-titlebar-right:dir(rtl) {
  border-top-right-radius: 0;
}

.tweak-titlebar-right:dir(ltr),
.tweak-titlebar-left:dir(rtl) {
  border-top-left-radius: 0;
}

/* individual tweak theme changes */
.tweak.title#title-theme {
  padding-top: 3px;
}
.tweak#hinting,
.tweak#text-scaling-factor {
  padding-top: 20px;
}

.tweak-group-white,
.tweak-white,
.tweak-white:hover {
  background-color: white;
}

.tweak-startup,
.tweak-startup:hover {
  background-color: lighter(shade(@theme_bg_color, 0.9));
}

.tweak-group-startup {
  background-color: @view_separators;
}

.tweak-row {
  padding: 10px;
}

.split-row {
  padding: 10px;
}

.split-row > .content {
  padding-top: 10px;
  padding-bottom: 10px;
}