Last active
December 10, 2015 13:28
-
-
Save davidsth/4441134 to your computer and use it in GitHub Desktop.
custom css script for firefox to be used with vimperator and stylish
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
/* userChrome.css */ | |
/* | |
* Do not remove the @namespace line -- it's required for correct functioning | |
*/ | |
/*@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */ | |
/* | |
* dead letter office | |
*/ | |
/*html,body,body * { | |
font-weight:bold !important; | |
font-family:Ubuntu !important; | |
font-size: 10pt !important; | |
}*/ | |
toolbar { | |
-moz-appearance: none !important; | |
border-top: 0px !important; | |
border-right: 0px !important; | |
border-bottom: 0px !important; | |
border-left: 0px !important; | |
} | |
/* | |
* menu bar | |
*/ | |
#toolbar-menubar { | |
display: none !important; | |
} | |
/* | |
* navigation toolbar | |
*/ | |
#urlbar { | |
/* -moz-appearance: none !important; */ | |
} | |
.ac-comment { | |
font-size: 10pt !important; | |
} | |
.ac-url-text { | |
font-size: 10pt !important; | |
} | |
#urlbar-icons > #star-button { | |
display: none !important; | |
} | |
#go-button { | |
display: none !important; | |
} | |
.autocomplete-history-dropmarker { | |
display: none !important; | |
} | |
/* | |
* tab bar | |
*/ | |
#TabsToolbar { | |
background: #111113 !important; | |
} | |
.tabbrowser-tab { | |
border: none !important; | |
background: #111113 !important; | |
height: 16px !important; | |
color:#dddddd !important; | |
min-height: 0px !important; | |
padding: 2px 2px !important; | |
font-family: Tewi !important; | |
font-size: 10pt !important; | |
font-weight: normal !important; | |
} | |
.tabbrowser-tab[selected] { | |
/* color: #f57900 !important; */ | |
border-radius:0px !important; | |
background: white !important; | |
color: black !important; | |
font-weight: normal !important; | |
} | |
.tabbrowser-tab:hover { | |
color: #fcaf3e !important; | |
} | |
toolbarbutton { | |
display: none !important; | |
} | |
.tab-icon-image { | |
display: none !important; | |
} | |
.tab-throbber { | |
display: none !important; | |
} | |
/*Change color of highlighted text | |
::-moz-selection { | |
background:#a8d1ff !important; | |
} | |
input[type="button"], | |
input[type="submit"] { | |
font-size: 12px !important; | |
font-family: 'Ubuntu' !important; | |
background: #ffffff !important; | |
padding: 1px 6px !important; | |
border: 1px solid #ccc !important; | |
border-bottom: 2px solid #999 !important; | |
} | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment