Last active
February 7, 2020 20:27
-
-
Save oidualc/9f7c0a6591ada0d391ee6813a518dc3b to your computer and use it in GitHub Desktop.
Firefox Client Side Decorations: close, minimize, maximize on the left
This file contains 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
#TabsToolbar { | |
direction: rtl; | |
} | |
#tabbrowser-tabs { | |
direction: ltr; | |
} | |
.titlebar-buttonbox { | |
display: flex; | |
} | |
.titlebar-min { | |
order: 2; | |
} | |
.titlebar-max { | |
order: 1; | |
} | |
.titlebar-close { | |
order: 3; | |
margin-right: 6px !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For Firefox 72 this shouldn't be needed anymore in Linux, where it initially was meant to be used, because Firefox now follows the relative system preference and moves the three buttons to the left if needed.