diff options
Diffstat (limited to '.config/init/gen-userChrome.sh')
-rw-r--r-- | .config/init/gen-userChrome.sh | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/.config/init/gen-userChrome.sh b/.config/init/gen-userChrome.sh new file mode 100644 index 0000000..ed5f1f2 --- /dev/null +++ b/.config/init/gen-userChrome.sh @@ -0,0 +1,39 @@ +echo "\ +@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); + +/* Get rid of the bottom border */ +#TabsToolbar:after { + border-bottom: 0px !important; +} + +/* Hide the new curved tab edges */ +.tab-background { + visibility: hidden !important; +} + +/* Hide the little graphic seperators between inactive tabs */ +.tabbrowser-tab:before, +.tabbrowser-tab:after { + visibility: hidden !important; +} + +#TabsToolbar { + -moz-appearance: none !important; + background: ${bg_normal} !important; +} + +.tabbrowser-tab { + background: ${bg_normal} !important; + color: ${fg_normal} !important; + font-family: \"${ttfont}\" !important; + font-size: ${ttfont_size}pt !important; +} + +.tabbrowser-tab[selected] { + background: ${bg_focus} !important; + color: ${fg_focus} !important; + font-family: \"${ttfont}\" !important; + font-size: ${ttfont_size}pt !important; +} +" > /tmp/userChrome.css + |