Gnome 3.18では、gnome 3 / gtk + 3のタイトルバーの高さを減らす~/.config/gtk-3.0/gtk.css
に従ってcssを変更することにより、すべてのウィンドウのタイトルバーの高さを変更できました。
.header-bar.default-decoration {
padding-top: 0px;
padding-bottom: 0px;
}
.header-bar.default-decoration .button.titlebutton {
padding-top: 0px;
padding-bottom: 0px;
}
/* No line below the title bar */
.ssd .titlebar {
border-width: 0;
box-shadow: none;
}
Gnome 3.20では、これはNautilus(ファイル)、設定、写真、連絡先などのヘッダーバー/ CSD(タイトルバーのgnome固有のボタン)を持つウィンドウには適用されなくなったように見えます。 gnome-terminalやgVimなどの他のアプリケーション用。Gnome 3.20のNautilusなどのgnomeプログラムでタイトルバーの高さを減らすにはどうすればよいですか?
更新
また、このredditスレッドで提案されていることも試しました。私は両方試したwindow.ssd
と.ssd
のみ、ノーサイコロを。 これは機能します。詳細については、投稿した回答を参照してください
window.ssd headerbar.titlebar {
padding-top: 1px;
padding-bottom: 1px;
min-height: 0;
}
window.ssd headerbar.titlebar button.titlebutton {
padding-top: 1px;
padding-bottom: 1px;
min-height: 0;
}
そして
/* shrink headebars */
headerbar {
min-height: 38px;
padding-left: 2px; /* same as childrens vertical margins for nicer proportions */
padding-right: 2px;
}
headerbar entry,
headerbar spinbutton,
headerbar button,
headerbar separator {
margin-top: 2px; /* same as headerbar side padding for nicer proportions */
margin-bottom: 2px;
}
/* shrink ssd titlebars */
.default-decoration {
min-height: 0; /* let the entry and button drive the titlebar size */
padding: 2px
}
.default-decoration .titlebutton {
min-height: 26px; /* tweak these two props to reduce button size */
min-width: 26px;
}