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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
/* list all tabs button */
.tabs-alltabs-box-animate, .tabs-alltabs-button { display:none !important }
.tab-close-button{ display:none !important }
#stop-button { display: none !important }
#back-button { display: none !important }
#forward-button { display: none !important }
#reader-mode-button,
#readinglist-addremove-button {
display:none !important;
}
menuitem[label="Reload Tab"],
menuitem[label="Reload All Tabs"],
menuitem[label="Mute Tab"],
menuitem[label="Close Other Tabs"],
menuitem[label="Close Tabs to the Right"],
menuitem[label="Move to New Window"]
{
display: none !important
}
tab {
font-size: 12px !important;
}
/* Use color and shape to make the tabs look more like tabs */
.tab-background {
background: #cccccc;
border-radius: 3px 3px 0 0 !important;
margin-bottom: 0px !important;
box-shadow: 0 0 1px 1px rgba(0,0,0,0.1) !important;
border: 1px solid rgba(0,0,0,.5) !important;
border-bottom-width: 0px !important;
}
/* Selected tabs I want a bright background with a dark foreground */
.tabbrowser-tab[selected] .tab-background {
background: white !important;
}
.tabbrowser-tab[selected] .tab-label {
color: black !important;
font-weight: bold !important;
}
/* Draw a solid line underneath to make the selected tab look *connected* to the rest of the browser */
#TabsToolbar {
border-bottom: 1px solid #fcb731 !important;
}
/* Hover over tabs */
.tabbrowser-tab:hover .tab-background:not([selected]) {
background: #eeeeee !important;
}
/* Tab counter */
#tabbrowser-tabs{
counter-reset: n_tabs 0;
}
.tabbrowser-tab .tab-content{padding-left: 2px;}
.tabbrowser-tab .tab-content::before{
display: -moz-box;
padding-right:3px;
counter-increment: n_tabs;
content: counter(n_tabs);
}
|