I have a GTK3/Metacity theme which uses dark title bars.

Recent versions of Gnome 3 combine title- and toolbars, e.g. in Nautilus. I want to change their color to be consistent with all other GTK windows.

enter image description here

What is the attribute I need to look for?

有帮助吗?

解决方案

The source code for the GTK+ themes is located in the https://git.gnome.org/browse/gnome-themes-standard/ git repository. The styling for the different widgets for Adwaita is located in the themes/Adwaita/gtk-3.0/gtk-widgets.css file -- see the section starting:

/***************
 * Header bars *
 ***************/

Specifically:

  • .header-bar { ... }
  • .header-bar:backdrop { ... }
  • .header-bar .button.text-button { ... }
  • .header-bar .button.image-button { ... }

其他提示

Although not 100% sure, I thought Nautilus is a GTK2 application. If that is the case, you need to create a GTK2 theme next to your GTK3 theme.

You can put these folders next to each other.

Take a look in your /usr/share/themes folder for examples.

Does this help you?

You could install gtk-tweak-tool and configure your system to global-dark-theme.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top