File: Gtk3Styles.css

package info (click to toggle)
freefilesync 13.7-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,044 kB
  • sloc: cpp: 66,712; ansic: 447; makefile: 216
file content (34 lines) | stat: -rw-r--r-- 679 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
/*  CSS format as required by CentOS (GTK 3.22.30)
	pkg-config --modversion gtk+-3.0
	
	https://docs.gtk.org/gtk3/css-overview.html
	https://docs.gtk.org/gtk3/css-properties.html                       */
*
{
	/* see wx+/grid.cpp: spacing wouldn't hurt, but let's be consistent */
	-GtkScrolledWindow-scrollbar-spacing: 0;
}

button
{
	padding: 4px 5px; /*remove excessive inner border from bitmap buttons*/
	min-width:  0;
	min-height: 0;
	/*border-radius: 5px;*/
}

entry
{
	padding: 2px 5px; /*default is too small for text input*/
}

combobox entry
{
	padding: 0 5px;
}

spinbutton entry
{
	padding: 0 5px;
	/*margin-right: -50px; possible hack! but not needed right now */
}