Skip to content

Instantly share code, notes, and snippets.

@HamousOnWheels
Created August 27, 2023 19:33
Show Gist options
  • Select an option

  • Save HamousOnWheels/fe0e2edcd4c4015c693ef11d381b670a to your computer and use it in GitHub Desktop.

Select an option

Save HamousOnWheels/fe0e2edcd4c4015c693ef11d381b670a to your computer and use it in GitHub Desktop.
thunderbird userchrome tweaks to fix up the deranged menu bar situation
/* put this in the chrome folder and load it in your main userChrome.css file with @import url("freakingMenuBar.css") screen; */
/* move the menu bar up top. give it some height */
#toolbar-menubar {
order: -1 !important;
height: 30px !important;
}
/* move it a little bit to the left to make space for the sidebar button */
#toolbar-menubar > #mail-menubar {
position: relative;
left: 40px;
}
/* move the sidebar button in line with the menu bar */
#spacesPinnedButton {
position: absolute;
top: 0px;
}
/* move the minimize maximize close buttons in line with the menu bar */
.titlebar-buttonbox-container {
position: absolute;
right: 0px;
top: 0px;
}
/* extend the search bar to the end */
.unified-toolbar .spacer {
flex: 0 0 !important;
}
/* remove some of the gigantic padding around everything */
:root{
--unified-toolbar-padding: 4px !important;
--unified-drag-space: 4px !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment