Skip to content

Instantly share code, notes, and snippets.

@FichteFoll
Last active August 29, 2015 13:57
Show Gist options
  • Save FichteFoll/9715980 to your computer and use it in GitHub Desktop.
Save FichteFoll/9715980 to your computer and use it in GitHub Desktop.
FireFox: Tabs in the title bar on Australis UI
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
#main-window[chromemargin][sizemode="normal"]:not([inFullscreen])
#navigator-toolbox {
overflow: visible;
}
#main-window[chromemargin][sizemode="normal"]:not([inFullscreen])
#nav-bar {
-moz-padding-start: 0 !important;
-moz-padding-end: 0 !important;
margin: -2.2em 9.0em 0.15em 3.1em !important;
-moz-appearance: -moz-win-glass !important;
box-shadow: none !important;
}
#main-window[chromemargin][sizemode="normal"]
#PersonalToolbar:not([inFullscreen]) {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
/* maximized window */
#main-window[chromemargin]:not([inFullscreen]):not([sizemode="normal"])
#nav-bar {
margin-right: 9.2em !important;
margin-top: -2.7em !important;
}
/* TST for some reason has a grey area at its top when the titlebar is not active
* (probably because I made the titlebar appear on top and it doesn't account for that) */
#main-window[sizemode="normal"]:not([inFullscreen])
#TabsToolbar:not(:-moz-lwtheme).treestyletab-tabbar-toolbar {
top: 40px !important; /* 19px less */
}
#main-window[sizemode="maximized"]:not([inFullscreen])
#TabsToolbar:not(:-moz-lwtheme).treestyletab-tabbar-toolbar {
top: 52px !important;
}
@FichteFoll
Copy link
Author

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