Created
October 26, 2019 18:14
-
-
Save p2or/5e8da2626f912835db7f25ef80ff5f96 to your computer and use it in GitHub Desktop.
Titlebar size based on: https://unix.stackexchange.com/a/343643 #Gnome
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* --------------------------------------------------------------------------- | |
* Custom CSS to reduce title bar size | |
* ------------------------------------------------------------------------- */ | |
/* shrink headerbars (don't forget semicolons after each property) */ | |
headerbar { | |
min-height: 0px; | |
padding-left: 2px; /* same as childrens vertical margins for nicer proportions */ | |
padding-right: 2px; | |
background-color: #2d2d2d; | |
} | |
headerbar entry, | |
headerbar spinbutton, | |
headerbar button, | |
headerbar separator { | |
margin-top: 0px; /* same as headerbar side padding for nicer proportions */ | |
margin-bottom: 0px; | |
} | |
/* shrink ssd titlebars */ | |
.default-decoration { | |
min-height: 0; /* let the entry and button drive the titlebar size */ | |
padding: 0px; | |
background-color: #2d2d2d; | |
} | |
.default-decoration .titlebutton { | |
min-height: 0px; /* tweak these two props to reduce button size */ | |
min-width: 0px; | |
} | |
window.ssd headerbar.titlebar { | |
padding-top: 3px; | |
padding-right: 6px; | |
padding-bottom: 3px; | |
min-height: 0; | |
} | |
window.ssd headerbar.titlebar button.titlebutton { | |
padding-top: 3px; | |
padding-bottom:3px; | |
min-height: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment