aboutsummaryrefslogtreecommitdiff
path: root/.config/firefox/chrome/userChrome.css
blob: e2ab02772fa776b0509ef78342286f2b66d524b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* Hide default tab bar */
#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar > .toolbar-items {
    opacity: 0;
    pointer-events: none;
}
#main-window:not([tabsintitlebar="true"]) #TabsToolbar {
    visibility: collapse !important;
}

/* Hide header of sidebar */
#sidebar-header {
    display: none;
}

/* Make unread tabs italic */
tab-item.unread .label-content {
    font-style: italic;
}