mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
50 lines
1.2 KiB
CSS
50 lines
1.2 KiB
CSS
.tabbrowser-tabbox {
|
|
-moz-binding: url("chrome://browser/content/tabbrowser.xml#tabbrowser-tabbox");
|
|
}
|
|
|
|
.tabbrowser-arrowscrollbox {
|
|
-moz-binding: url("chrome://browser/content/tabbrowser.xml#tabbrowser-arrowscrollbox");
|
|
}
|
|
|
|
.tab-close-button {
|
|
-moz-binding: url("chrome://browser/content/tabbrowser.xml#tabbrowser-close-tab-button");
|
|
display: none;
|
|
}
|
|
|
|
.tabbrowser-tabs:not([closebuttons="noclose"]):not([closebuttons="closeatend"]) > * > * > * .tab-close-button:not([pinned])[selected="true"],
|
|
.tabbrowser-tabs[closebuttons="alltabs"] > * > * > * > .tab-close-button:not([pinned]) {
|
|
display: -moz-box;
|
|
}
|
|
|
|
.tab-close-button[selected="true"] {
|
|
/* Make this button focusable so clicking on it will not focus the tab while
|
|
it's getting closed */
|
|
-moz-user-focus: normal;
|
|
}
|
|
|
|
.tab-label[pinned] {
|
|
width: 0;
|
|
margin-left: 0 !important;
|
|
margin-right: 0 !important;
|
|
padding-left: 0 !important;
|
|
padding-right: 0 !important;
|
|
}
|
|
|
|
.tab-stack {
|
|
vertical-align: top; /* for pinned tabs */
|
|
}
|
|
|
|
tabpanels {
|
|
background-color: white;
|
|
}
|
|
|
|
.tab-drop-indicator {
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.tab-throbber:not([busy]),
|
|
.tab-throbber[busy] + .tab-icon-image {
|
|
display: none;
|
|
}
|