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 */
}
|