문제

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