/usr/share/themes/Xfce-basic/gtk-3.0/gtk.css is in gtk3-engines-xfce 3.2.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | * {
engine: xfce;
-xfce-smooth-edge: true;
-xfce-grip-style: disabled;
-GtkButton-default-border : 0;
-GtkButton-default-outside-border: 0;
-GtkWidget-focus-line-width : 1;
-GtkWidget-focus-padding : 2;
-GtkMenuBar-shadow-type : out;
-GtkToolbar-shadow-type : out;
-GtkWidget-interior-focus : true;
-GtkRange-slider-width : 14;
-GtkRange-stepper-size : 14;
-GtkRange-stepper-spacing : 0;
-GtkRange-trough-border : 0;
}
*:insensitive {
text-shadow: 1px 1px white;
}
GtkComboBox {
padding: 0px;
}
GtkComboBox .button {
padding: 1px;
}
.button {
border-width: 2px 2px;
background-image: -gtk-gradient(linear, left top, left bottom, from(shade(#DCDAD5, 1.1)), to(shade(#DCDAD5, 1.0)));
}
.button:active {
background-image: -gtk-gradient(linear, left top, left bottom, from(shade(#9E9A91, 1.0)), to(shade(#9E9A91, 1.1)));
}
.button:insensitive {
background-image: -gtk-gradient(linear, left top, left bottom, from(shade(#C8C5BE, 1.1)), to(shade(#C8C5BE, 1.0)));
}
.button:hover {
background-image: -gtk-gradient(linear, left top, left bottom, from(shade(#4B6983, 1.1)), to(shade(#4B6983, 1.0)));
}
.button:selected {
background-image: -gtk-gradient(linear, left top, left bottom, from(shade(#4B6983, 1.0)), to(shade(#4B6983, 1.1)));
}
.menuitem {
border-width: 0px 0px;
}
.scrollbar, .scale {
border-width: 2px 2px;
}
|