/etc/gentoogtkrc is in gentoo 0.20.6-2.
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 | /* GTK+ 3.x styling for gentoo.
*
* Created in May 2012 by Emil Brink.
*
* See <http://gnomejournal.org/article/107/styling-gtk-with-css> for information.
*/
/* Here's some intricate styling to make the headers of the current pane stand
* out a bit. Note that doing the obvious, i.e. setting background-color,
* doesn't work.
*/
GtkWindow#gentoo * #pane-current column-header .button {
font-weight: bold;
color: @selected_bg_color;
}
/* Make the text viewer use a fixed-width font. */
#txvText, #cstPreview {
font: Monospace;
}
|