Last active
October 26, 2015 23:09
-
-
Save krompus/55e532824fb8cf0aebc7 to your computer and use it in GitHub Desktop.
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
/*=============================================== | |
THIS IS A FORK OF: | |
FLAT FIREFOX | |
CSS THEME FOR STYLISH | |
V15.07.22 | |
FOR FIREFOX BETA V40.0 | |
BY NADIRP.DEVIANTART.COM | |
I AM A CSS NOOB, AND I APOLOGIZE. | |
===============================================*/ | |
/*=============================================== | |
BOOKMARKS BAR | |
===============================================*/ | |
#PersonalToolbar { | |
height: 29px !important; | |
max-height: 29px !important; | |
background-color: #0D0C0C !important; | |
margin-top: -3px !important; | |
} | |
#PersonalToolbar .toolbarbutton-text { | |
font-family: "Terminus" !important; | |
font-size: 8pt !important; | |
color: #FFF5ED !important; | |
background-color: #0D0C0C !important; | |
} | |
/*=============================================== | |
DISABLE FIREFOX DEFAULT BACKGROUND | |
===============================================*/ | |
#TabsToolbar:not(:-moz-lwtheme)::after { | |
display: none; | |
} | |
/*=============================================== | |
TABS BACKGROUND SETTINGS | |
===============================================*/ | |
#main-window[sizemode="normal"]:not([inFullscreen]) #TabsToolbar { | |
margin-bottom: -2px !important; | |
margin-top: -3px !important; | |
margin-right: 0px !important; | |
margin-left: 0px !important; | |
} | |
#main-window[sizemode="normal"]:not([inFullscreen]) #TabsToolbar .tabbrowser-tabs { | |
min-height: 16px !important; | |
margin-top: 1px !important; | |
} | |
/*=============================================== | |
INACTIVE TABS | |
===============================================*/ | |
#TabsToolbar .tabbrowser-tab { | |
text-align: left!important; | |
background: #0D0C0C !important; | |
color: #FFF5ED !important; | |
font-family: "Terminus" !important; | |
font-size: 8pt; | |
} | |
/*=============================================== | |
ACTIVE TABS | |
===============================================*/ | |
#TabsToolbar .tabbrowser-tab[selected] { | |
/*background: #0A9DFF !important;*/ | |
background: #9B0700 !important; | |
} | |
/*=============================================== | |
ON MAXIMIZED WINDOW | |
===============================================*/ | |
#main-window[sizemode="maximized"] #TabsToolbar { | |
background: transparent !important; | |
margin-bottom: 0px !important; | |
margin-top: 0px !important; | |
margin-right: 0px !important; | |
margin-left: 0px !important; | |
} | |
#TabsToolbar .tabbrowser-tabs { | |
min-height: 26px !important; | |
margin-top: 1px !important; | |
} | |
#main-window[sizemode="maximized"] #nav-bar { | |
border-radius: 0px 0px 0px 0px !important; | |
margin-left: -4px !important; | |
margin-right: -6px !important; | |
} | |
/*=============================================== | |
HIDES TAB LOADING ICON | |
===============================================*/ | |
.tab-throbber { | |
display: none !important; | |
} | |
/*=============================================== | |
CUSTOM NEW TAB BUTTON | |
===============================================*/ | |
#main-window .tabbrowser-tabs .tabs-newtab-button { | |
list-style-image: url("data:image/png,%89PNG%0D%0A%1A%0A%00%00%00%0DIHDR%00%00%00%10%00%00%00%10%08%06%00%00%00%1F%F3%FFa%00%00%00%04sBIT%08%08%08%08%7C%08d%88%00%00%00%09pHYs%00%00%0D%D7%00%00%0D%D7%01B%28%9Bx%00%00%00%19tEXtSoftware%00www.inkscape.org%9B%EE%3C%1A%00%00%00.IDAT8%8Dc%60%18%05x%C1%7F%28%C0%A7%86%89RK%286%80%11%5D%80%90%93%19%19%19Q%F4P%EC%02%BC%60h%04%E2%28%60%60%00%00b%3C%13%FC%EA%AB%8D1%00%00%00%00IEND%AEB%60%82") !important; | |
background: #0D0D0C !important; | |
margin-left: 0px !important; | |
border: transparent !important; | |
border-top: transparent !important; | |
border-left: transparent !important; | |
border-right: transparent !important; | |
} | |
#main-window .tabbrowser-tabs .tabs-newtab-button:hover { | |
list-style-image: url("data:image/png,%89PNG%0D%0A%1A%0A%00%00%00%0DIHDR%00%00%00%10%00%00%00%10%08%06%00%00%00%1F%F3%FFa%00%00%00%04sBIT%08%08%08%08%7C%08d%88%00%00%00%09pHYs%00%00%0D%D7%00%00%0D%D7%01B%28%9Bx%00%00%00%19tEXtSoftware%00www.inkscape.org%9B%EE%3C%1A%00%00%00.IDAT8%8Dc%60%18%05x%C1%7F%28%C0%A7%86%89RK%286%80%11%5D%80%90%93%19%19%19Q%F4P%EC%02%BC%60h%04%E2%28%60%60%00%00b%3C%13%FC%EA%AB%8D1%00%00%00%00IEND%AEB%60%82") !important; | |
} | |
/* hide urlbars stop/reload/go buttons */ | |
#urlbar-container #urlbar-reload-button, #urlbar-container #urlbar-go-button, #urlbar-container #urlbar-stop-button { | |
visibility: collapse !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment