Skip to content

Instantly share code, notes, and snippets.

@nanozuki
Last active May 8, 2023 05:57
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nanozuki/218cffb9218b537e16497cd2f4e89782 to your computer and use it in GitHub Desktop.
Save nanozuki/218cffb9218b537e16497cd2f4e89782 to your computer and use it in GitHub Desktop.
Hide titlebar for mac firefox.
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
#titlebar .titlebar-buttonbox-container {
display: block;
position: fixed;
top: 12px;
}
#titlebar .titlebar-spacer,
#titlebar .toolbar-items {
visibility: collapse;
}
#titlebar {
height: 0;
min-height: 0;
}
#sidebar-header {
display: none;
}
toolbarspring:first-child {
min-width: 78px !important;
max-width: 78px !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment