Skip to content

Instantly share code, notes, and snippets.

@secp8x32
Created August 24, 2018 13:21
Show Gist options
  • Save secp8x32/d834bb2cbd4580b191c899e453c6688b to your computer and use it in GitHub Desktop.
Save secp8x32/d834bb2cbd4580b191c899e453c6688b to your computer and use it in GitHub Desktop.
A fix for firefox title bar buttons when you want them to be on the left hand side.
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
#titlebar-max {
-moz-box-ordinal-group: 0;
}
#titlebar-content {
direction: rtl;
}
#TabsToolbar {
direction: rtl;
}
#tabbrowser-tabs {
direction: ltr;
}
#titlebar-close {
margin-right: 6px !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment