If you want to shrink the title bar and remove the border underneath, create a file gtk.css in ~/.congif/gtk-3.0 and add the following text:
window.ssd headerbar.titlebar {Restart Gnome Shell or log out and log in and Firefox now looks like this:
min-height: 0;
}
window.ssd headerbar.titlebar button.titlebutton {
padding-top: 0px;
padding-bottom: 0px;
min-height: 0;
}
window.ssd headerbar.titlebar {
border: none;
background-image: linear-gradient(to bottom,
shade(@theme_bg_color, 1.05),
shade(@theme_bg_color, 1.00));
box-shadow: inset 0 1px shade(@theme_bg_color, 1.4);
}
The code above was collated and edited by me from various sources: stackexchange, stackexchange and reddit.
It's also possible to add a line to reduce text height: fedoraproject.org.
Excellent! Thanks!
ReplyDelete