aboutsummaryrefslogtreecommitdiffstats
path: root/.config/init/gen-userChrome.sh
blob: ed5f1f2e990c76fe33359b8a1f13980f56636f51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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