diff options
author | katherine <shmibs@shmibbles.me> | 2016-10-01 13:58:31 -0700 |
---|---|---|
committer | katherine <shmibs@shmibbles.me> | 2016-10-01 13:58:31 -0700 |
commit | bacc4127b7da22c61671fe3ce0cef6db103884dd (patch) | |
tree | e631d8a0f5609c5137afade0a8b36589997d8346 /.config/init/gen-userChrome.sh | |
parent | 4a879cb286f97f317b1109d8d07be4508c76e5f8 (diff) | |
download | dotfiles-bacc4127b7da22c61671fe3ce0cef6db103884dd.tar.gz |
overhaul init system
gen files now kept in gen directory. funcs now included in $PATH only if
their funcreqs are successfully passed at login, making things cleaner
and more system-independent
Diffstat (limited to '.config/init/gen-userChrome.sh')
-rw-r--r-- | .config/init/gen-userChrome.sh | 87 |
1 files changed, 0 insertions, 87 deletions
diff --git a/.config/init/gen-userChrome.sh b/.config/init/gen-userChrome.sh deleted file mode 100644 index 44fb6a9..0000000 --- a/.config/init/gen-userChrome.sh +++ /dev/null @@ -1,87 +0,0 @@ -echo "\ -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -@-moz-document url-prefix(about:blank) {*{background-color:${bg_normal};}} - -#TabsToolbar:not(:-moz-lwtheme)::after {display: none;} -/* Remove the following line if you want the text color of unselected tabs to be black (Firefox default) */ -#TabsToolbar .tabbrowser-tab:not([selected]) {color: rgba(255,255,255,0.9);} - -#TabsToolbar { - background: rgb(50,50,50) !important; - margin-bottom: 0 !important; -} - -#TabsToolbar .tabbrowser-tabs { - min-height: ${bheight}px !important; - margin-top: 0px !important; - margin-bottom: 0px !important; - margin-left: -15px !important; - margin-right: -15px !important; -} - -#tabbrowser-tabs tab .tab-close-button { - display: none !important; -} - -.tabbrowser-tab:not([pinned]) .tab-icon-image { - display: none !important; -} - - -#TabsToolbar .tabbrowser-tab { - -moz-border-top-colors: none !important; - -moz-border-left-colors: none !important; - -moz-border-right-colors: none !important; - -moz-border-bottom-colors: none !important; - padding-top: 1px !important; - padding-right: 0 !important; - border-radius: 0px !important; - background: ${bg_normal} !important; - background-clip: padding-box !important; - margin-left: 0px !important; - color: ${fg_normal} !important; - font-family: '${bfont}' !important; - min-height: ${bheight}px !important; -} - -#TabsToolbar .tabs-newtab-button { - display: none !important; -} - -#TabsToolbar .tabbrowser-tab[selected] { - color: ${fg_focus} !important; - background: ${bg_focus} !important; - background-clip: padding-box !important; -} - -#TabsToolbar .tab-background { - margin: 0 !important; - background: transparent !important; -} - -#TabsToolbar .tab-background-start, -#TabsToolbar .tab-background-end { - display: none !important; -} - -#TabsToolbar .tab-background-middle { - margin: -4px -2px !important; - background: transparent !important; -} - -#TabsToolbar .tabbrowser-tab:after, -#TabsToolbar .tabbrowser-tab:before { - display: none !important; -} - -#TabsToolbar .tabs-newtab-button { - display: none !important; -} - -.scrollbutton-up, .scrollbutton-down, #alltabs-button { - display: none !important; -} - -" > /tmp/userChrome.css - |