(no title)
yamaneko | 8 years ago
1. Created the chrome folder at `~/.mozilla/<your-profile-id>.default/`
2. Created `~/.mozilla/<your-profile-id>.default/chrome/userChrome.css` and added
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
at the top of the file.3. Added customizations after this line. The resulting file will be like:
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/*
* TreeStyleTabs solutions to remove tabs
*
* Solution by: https://news.ycombinator.com/item?id=15343940 */
#TabsToolbar, #sidebar-header {
visibility: collapse !important;
}
#TabsToolbar {
margin-bottom: -21px !important;
}
No comments yet.