So today I spotted on the add-on page someone mentioned using userChrome.css to customise the Firefox toolbar layouts, I just spent a couple of hours tweaking this idea and this is what I came up with (btw I am using the default theme)
1) look in your Firefox profile folder in .mozilla in your home folder (mine is .mozilla/firefox/nigels01.default), if there is no chrome folder then create one, then a new text file and call it userChrome.css (I think it's case sensitive).
2) put this in userChrome.css, then restart Fiefox and voila something that looks a bit like Compact Classic in that it's all squashed up as tight as possible
Code: Select all
toolbarbutton {
font-size: 9pt !important;
padding: 0px 0px !important;
}
.tabbrowser-tabs {
font-size: 9pt !important;
height: 24px !important;
min-height: 0px !important;
}
.tab-icon-image {
margin-top: -1px !important;
padding-bottom: 2px !important;
}
.tabs-newtab-button {
padding-bottom: 5px !important;
}
#TabsToolbar {
font-size: 9pt !important;
margin-top: -1px !important;
}
#PersonalToolbar {
font-size: 9pt !important;
max-height: 22px !important;
padding: 0px 0px !important;
margin-top: -8px !important;
margin-bottom: 2px !important;
}
#urlbar {
font-size: 9pt !important;
max-height: 22px !important;
padding: 0px 0px !important;
margin-top: 1px !important;
margin-bottom: 2px !important;
}
#searchbar {
font-size: 9pt !important;
max-height: 22px !important;
padding: 0px 0px !important;
margin-top: 1px !important;
margin-bottom: 2px !important;
}