-
-
Save soham2008xyz/656cf8511b100c2634f321739f34578c 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
@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-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