blob: d636594bdf1eb27ee4bbb891302bbc0b865b38fe (
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
|
/**
* Tridactyl customizations.
* https://github.com/tridactyl/tridactyl
*/
:root:not([customizing]) #navigator-toolbox:not(:hover):not(:focus-within) #TabsToolbar {
visibility: collapse;
}
statuspanel[type="overLink"],
#statuspanel[type="overLink"] {
display: none !important;
}
#TabsToolbar {
visibility: collapse;
}
#navigator-toolbox:not(:hover):not(:focus-within) #toolbar-menubar > * {
background-color: rgb(232, 232, 231);
}
#main-window[sizemode="maximized"] #content-deck {
padding-top: 8px;
}
#statuspanel {
right: 0;
display: inline;
}
|