-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgtk.css
More file actions
54 lines (48 loc) · 1.13 KB
/
Copy pathgtk.css
File metadata and controls
54 lines (48 loc) · 1.13 KB
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
/* .config/gtk-3.0/gtk.css*/
/* shrink headebars */
headerbar {
min-height: 0;
padding-left: 2px; /* same as childrens vertical margins for nicer proportions */
padding-right: 2px;
padding-top: 1px;
padding-bottom: 1px;
}
headerbar entry,
headerbar spinbutton,
headerbar button,
headerbar separator {
margin-top: 1px; /* same as headerbar side padding for nicer proportions */
margin-bottom: 1px;
}
/* shrink ssd titlebars */
.default-decoration {
min-height: 0; /* let the entry and button drive the titlebar size */
padding-left: 2px; /* same as childrens vertical margins for nicer proportions */
padding-right: 2px;
padding-top: 1px;
padding-bottom: 1px;
}
.default-decoration .titlebutton {
min-height: 5px; /* tweak these two props to reduce button size */
min-width: 5px;
}
/* reduce the padding size of buttons */
button, entry {
min-height: 0;
min-width: 0;
padding: 2px;
}
/* reduce the padding of tabs */
notebook tab {
min-height: 0;
padding-top: 3px;
padding-bottom: 3px;
}
/* reduce the padding of buttons */
notebook tab button {
min-height: 0;
min-width: 0;
padding: 2px;
margin-top: 2px;
margin-bottom: 2px;
}