Skip to content

Instantly share code, notes, and snippets.

@thluiz
Created October 24, 2022 14:25
Show Gist options
  • Save thluiz/9a55f5b897b72d33ed936e7e666f872c to your computer and use it in GitHub Desktop.
Save thluiz/9a55f5b897b72d33ed936e7e666f872c to your computer and use it in GitHub Desktop.
Firefox - Hide Title Bar
.tabbrowser-tab {
visibility: collapse;
}
.titlebar-button {
height: 27px !important;
}
#nav-bar {
margin-top: -42px;
margin-right: 140px;
box-shadow: none !important;
}
[uidensity="compact"]:root .titlebar-button {
height: 32px !important;
}
[uidensity="compact"]:root #nav-bar {
margin-top: -32px;
}
#titlebar-spacer {
background-color: var(--chrome-secondary-background-color);
}
#titlebar-buttonbox-container {
background-color: var(--chrome-secondary-background-color);
}
.titlebar-color {
background-color: var(--toolbar-bgcolor);
}
#main-window[inFullscreen="true"] #sidebar-box,
#main-window[inFullscreen="true"] #sidebar-box + splitter {
visibility: collapse;
}
#sidebar-box #sidebar-header {
display: none !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment