aboutsummaryrefslogtreecommitdiffstats
path: root/.config/init/gen-userChrome.sh
blob: 8fe30d1201c666172d4c081bb17a692a4bcdcb50 (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: \"${mfont}\" !important;
	font-size: ${mfont_size}pt !important;
}

.tabbrowser-tab[selected] {
	background: ${bg_focus} !important;
	color: ${fg_focus} !important;
	font-family: \"${mfont}\" !important;
	font-size: ${mfont_size}pt !important;
}
" > /tmp/userChrome.css