Created
October 2, 2014 15:23
-
-
Save dcat/a1b37bc3f1fcafc7575e to your computer and use it in GitHub Desktop.
dcat's userChrome.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* hide all this shit */ | |
.tab-close, | |
.tab-throbber, | |
.tab-icon-image, | |
.tab-close-button, | |
#newtab-scrollbox, | |
.tab-background-end, | |
.tabs-newtab-button, | |
.tab-background-start, | |
menuitem + menuseparator | |
{ display: none !important; } | |
.tabbrowser-tab[selected="true"] .tab-stack | |
{ | |
/* active foreground */ | |
color: black !important; | |
/* active background */ | |
background-color: #808033 !important; | |
padding-left: 4px !important; | |
padding-right: 4px !important; | |
font-weight: bold !important; | |
border-bottom: none !important; | |
border-radius: 0px !important; | |
position: relative !important; | |
} | |
/* font */ | |
tab | |
{ | |
font-family: monospace !important; | |
font-size: 10px !important; | |
background-color: #121212 !important; | |
color: #999 !important; | |
} | |
.tabbrowser-tab *, | |
.tabs-newtab-button * | |
{ | |
background: url(none) !important; | |
list-style-image: none !important; | |
margin: 0 0 0 0 !important; | |
padding: 0 0 0 0 !important; | |
-moz-appearance: none !important; | |
} | |
/* tab bar height */ | |
.tab-background-end, | |
.tab-background-start, | |
.tab-background-start[selected=true]::after, | |
.tab-background-start[selected=true]::before, | |
.tab-background-end[selected=true]::after, | |
.tab-background-end[selected=true]::before, | |
#tabbrowser-tabs | |
{ | |
min-height: 12px !important; | |
height: 12px !important; | |
} | |
#TabsToolBar .tabbrowser-tabs | |
tab:not([pending="true"]):not([selected="true"]), | |
.tab-background-end[selected=true]:-moz-locale-dir(ltr)::after, | |
.tab-background-start[selected=true]:-moz-locale-dir(rtl)::after | |
{ background-image: none !important; background-color: transparent !important; } | |
.tabbrowser-tab[selected="false"] | |
{ | |
border: 1px solid #84683f !important; | |
padding-left: 4px !important; | |
padding-right: 4px !important; | |
} | |
tab, | |
.tabbrowser-tabs, | |
#navigator-toolbox, | |
.tabbrowser-tab[selected="true"]:after, | |
.tabbrowser-tab[selected="true"]:before | |
{ | |
padding-left: none !important; | |
margin-left: none !important; | |
border-bottom: none !important; | |
-moz-appearance: none !important; | |
border: none !important; | |
margin: none !important; | |
padding: none !important; | |
outline: none !important; | |
} | |
#content browser | |
{ | |
margin-right: -14px !important; | |
margin-bottom: -14px !important; | |
overflow-y: hidden !important; | |
overflow-x: hidden !important; | |
} | |
.tab-text | |
{ | |
padding-left: 4px !important; | |
padding-right: 4px !important; | |
} | |
.tabbrowser-tabs, | |
#TabsToolBar | |
{ background-color: #121212 !important; } | |
#liberator-statusline, | |
#status-bar, | |
statusbarpanel | |
{ | |
font-family: monospace !important; | |
font-size: 10px !important; | |
background-color: #121212 !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment