Skip to content

Instantly share code, notes, and snippets.

@keeferrourke
Created May 20, 2018 21:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keeferrourke/0d850bbfc9f2de1b359aa814e6c7af01 to your computer and use it in GitHub Desktop.
Save keeferrourke/0d850bbfc9f2de1b359aa814e6c7af01 to your computer and use it in GitHub Desktop.
User chrome styling to move window controls to the left for Firefox 60+ CSD on Linux
/* place in $HOME/.mozilla/firefox/<default profile>/chrome/
* you may need to create this directory
*
* credit goes to this answer on Ask Ubuntu https://askubuntu.com/questions/1035428/firefox-60-csd-window-buttons-left
*/
@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;
}
@mcoyle1960
Copy link

Thanks. This is a start, but now the window buttons conflict with the menubar (visible after you hit ALT).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment