aboutsummaryrefslogtreecommitdiffstats
path: root/pentadactyl/chrome.css
blob: 2f566819a861abf1352b8a5328476479c783fac6 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
/* ~/.config/pentadactyl/chrome.css */

@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 {
    opacity: 0 !important;
}

/* Hide the little graphic seperator between inactive tabs */
.tabbrowser-tab:before,
.tabbrowser-tab:after {
    visibility: hidden !important;
}


/* Reduce the padding around the contents of a tab */
.tabbrowser-tab .tab-content,
.tabbrowser-tab[selected] .tab-content {
    padding: 0 2px 2px 4px !important;
}

#TabsToolbar {
    -moz-appearance: none !important;
    background: #dedede !important;
}

/* Mostly hacks to try deal with tab overflow, it's not pretty */
#tabbrowser-tabs {
    margin-left: -15px !important;
    margin-right: -15px !important;
}

#tabbrowser-tabs ~ #alltabs-button {
    padding-left: 15px !important;
}

/* Make the tab expand to fill the maximum width */
.tabbrowser-tab {
    max-width: 100% !important;
    color: #000 !important;
}

.tabbrowser-tab[selected] {
    background: #787777 !important;
    color: #efefef !important;
}