-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tab size and blank space in Firefox 4 #8
Comments
I had this issue before, and then your "fix" worked...but now it's broken again in Firefox 6! |
Well guys. I think that repacking every new version of the extension is inconvenient so now I'm using a special userstyle for customizing FF's interface. Do you know how to use Stylish? If "yes" try this: .tabbrowser-tabs tab[faviconized="true"][fadein="true"]
{min-width: 32px !important;}
.tabbrowser-tabs tab[faviconized="true"] .tab-icon-image
{margin-left: 5px !important;}
.tabbrowser-tabs[closebuttons="never"] tab[faviconized="true"][fadein="true"],
.tabbrowser-tabs[closebuttons="activetab"] tab[faviconized="true"][fadein="true"]:not([selected="true"]),
.tabbrowser-tabs[favhideclose="true"] tab[faviconized="true"][fadein="true"]
{max-width: 32px !important;} |
|
.tabbrowser-tabs tab[faviconized="true"][fadein="true"] {
min-width: 32px !important;}
.tabbrowser-tabs tab[faviconized="true"][fadein="true"] .tab-icon-image,
.tabbrowser-tabs tab[faviconized="true"][fadein="true"] .tab-throbber {
margin-left: 5px !important;}
.tabbrowser-tabs tab[faviconized="true"][pinned="true"] .tab-icon-image {
margin-top: 1px !important;}
.tabbrowser-tabs[closebuttons="never"] tab[faviconized="true"][fadein="true"],
.tabbrowser-tabs[closebuttons="activetab"] tab[faviconized="true"][fadein="true"]:not([selected="true"]),
.tabbrowser-tabs[favhideclose="true"] tab[faviconized="true"][fadein="true"] {
max-width: 32px !important;} |
Here a fixed CSS for making faviconized tab looks like AppTab
https://gist.github.com/885596
The text was updated successfully, but these errors were encountered: