Skip to content

Instantly share code, notes, and snippets.

@soham2008xyz
Forked from oidualc/userChrome.css
Last active January 31, 2019 15:50
Show Gist options
  • Save soham2008xyz/656cf8511b100c2634f321739f34578c to your computer and use it in GitHub Desktop.
Save soham2008xyz/656cf8511b100c2634f321739f34578c to your computer and use it in GitHub Desktop.
Firefox Client Side Decorations: close, minimize, maximize on the 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;
}
.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