Skip to content

Instantly share code, notes, and snippets.

View dasgib's full-sized avatar

Dominik Weiss dasgib

View GitHub Profile
@dasgib
dasgib / userChrome.css
Created March 23, 2011 12:40
Hides the star-icon from Firefox 3/4 addressbar
/* hide star icon in address bar */
#star-button { display: none !important }
@dasgib
dasgib / userChrome.css for FF4 OSX
Created March 23, 2011 12:28
~/Library/Application Support/Firefox/Profiles/xxxxxxx.default/chrome/userChrome.css
/* Tab Arrangement */
.tab-close-button { -moz-box-ordinal-group: 1 !important;}
.tab-text { -moz-box-ordinal-group: 2 !important;}
.tab-throbber { -moz-box-ordinal-group: 3 !important;}
.tab-icon-image { -moz-box-ordinal-group: 4;}
.tabbrowser-tab[pinned] .tab-icon-image {
visibility: visible !important;
}