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
|
/***
This file reduces the size of some GTK widgets by reducing unnecessary padding.
You may make changes or comment-out text to restore the standard GTK widgets.
Do not delete the file - it would be automatically restored.
***/
/*** disabled modifications
window *, menu, box * {
color: #000000;
background-color: #DDDDDD;
}
***/
button, .button {
padding: 0px 2px 0px 2px; /* top right bottom left */
}
scale { /* slider control 21.41 */
min-width: 10px;
padding: 0 2px 0 5px;
}
|