Created
May 20, 2018 21:43
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks. This is a start, but now the window buttons conflict with the menubar (visible after you hit ALT).