firefox-gnome-theme/theme/parts/tabsbar.css

661 lines
20 KiB
CSS
Raw Normal View History

/* Tabs bar */
@namespace xul "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
:root {
--space-above-tabbar: 0 !important;
}
2021-04-24 19:04:32 +03:00
#TabsToolbar {
--toolbarbutton-inner-padding: var(--toolbarbutton-inner-padding) !important;
2022-10-07 20:36:21 +03:00
background-color: var(--gnome-tabbar-background) !important;
border-bottom: 0 !important;
2022-10-07 20:36:21 +03:00
padding: 0 !important;
position: relative;
z-index: 1;
}
#TabsToolbar .titlebar-buttonbox-container:not(#hack) {
display: none !important;
}
/* Tabs bar height */
#tabbrowser-tabs,
#tabbrowser-tabs arrowscrollbox {
height: auto !important;
min-height: auto !important;
2022-10-07 20:36:21 +03:00
--tab-min-height: 34px !important;
}
2020-07-19 15:58:22 +03:00
2022-10-07 20:36:21 +03:00
tab > stack {
height: 34px !important;
2022-10-09 19:08:52 +03:00
width: 34px !important;
2022-10-07 20:36:21 +03:00
min-height: 34px !important;
2020-07-19 15:58:22 +03:00
}
2022-10-07 20:36:21 +03:00
/* Tabs scroll fade */
#TabsToolbar {
--gnome-tabbar-fade-background: var(--gnome-tabbar-background);
}
2020-07-19 15:58:22 +03:00
2023-10-26 17:59:53 +03:00
#scrollbutton-up,
#scrollbutton-down {
border-top: 0 !important;
}
2022-10-07 20:36:21 +03:00
#scrollbutton-up:not([disabled])::after,
#scrollbutton-down:not([disabled])::after {
content: "";
2023-10-26 17:59:53 +03:00
height: 39px;
2022-10-07 20:36:21 +03:00
position: absolute;
top: -3px;
2022-10-07 20:36:21 +03:00
z-index: -1;
width: 50px;
pointer-events: none;
2022-10-07 20:36:21 +03:00
}
#scrollbutton-up:not([disabled])::after {
background: linear-gradient(to right, var(--gnome-tabbar-fade-background) 25px, transparent);
left: 0;
2022-10-07 20:36:21 +03:00
}
#scrollbutton-down:not([disabled])::after {
background: linear-gradient(to left, var(--gnome-tabbar-fade-background) 25px, transparent);
right: 0;
}
spacer[part=overflow-start-indicator], spacer[part=overflow-end-indicator] {
width: 0 !important;
border: 0 !important;
margin-inline: 0 !important;
}
#scrollbutton-up, #scrollbutton-down {
position: relative !important;
z-index: 5 !important;
}
/* Remove spacing between pinned tabs and first tab */
#tabbrowser-tabs[haspinnedtabs]:not([positionpinnedtabs]) > #tabbrowser-arrowscrollbox > .tabbrowser-tab:nth-child(1 of :not([pinned], [hidden])) {
margin-inline-start: 0 !important;
}
/* Remove hover effects on tab bar buttons */
#TabsToolbar {
--toolbarbutton-active-background: transparent !important;
--toolbarbutton-hover-background: transparent !important;
}
/* Tabsbar buttons */
#TabsToolbar .toolbarbutton-1:not(#hack) {
2022-10-07 20:36:21 +03:00
border-radius: 6px !important;
2023-10-26 17:59:53 +03:00
margin: 0px 3px 6px !important;
padding: 0 9px !important;
min-height: 34px !important;
transition: background 0.3s;
}
#TabsToolbar .toolbarbutton-1:not([disabled]):not(:active):not([open]):hover {
background-color: var(--gnome-tabbar-tab-hover-background) !important;
}
#TabsToolbar .toolbarbutton-1:active, #TabsToolbar .toolbarbutton-1[open] {
background-color: var(--gnome-tabbar-tab-active-background) !important;
}
/* Fake tabsbar border */
#TabsToolbar::after {
content: "";
display: block;
2022-10-07 20:36:21 +03:00
width: 200%;
background: var(--gnome-toolbar-background);
height: 0;
min-height: 0;
position: absolute;
bottom: 0;
left: 0;
2022-10-07 20:36:21 +03:00
z-index: 6;
}
2022-10-07 20:36:21 +03:00
/* Tab */
2021-05-11 03:49:28 +03:00
.tabbrowser-tab {
border-width: 0 !important;
padding: 0px 2px 6px !important;
2022-10-07 20:36:21 +03:00
position: relative;
}
.tabbrowser-tab:not([hidden=true], [pinned]):first-of-type {
2022-10-07 20:36:21 +03:00
padding-left: 5px !important;
}
.tabbrowser-tab:not([hidden="true"]):last-of-type {
2022-10-07 20:36:21 +03:00
padding-right: 5px !important;
2021-05-11 03:49:28 +03:00
}
2022-10-07 20:36:21 +03:00
#tabbrowser-tabs[haspinnedtabs]:not([positionpinnedtabs]) > #tabbrowser-arrowscrollbox > .tabbrowser-tab[first-visible-unpinned-tab] {
margin-inline-start: 0 !important;
2021-06-02 22:13:05 +03:00
}
2022-10-07 20:36:21 +03:00
/* Tabs separators */
.tabbrowser-tab {
border-style: solid !important;
border-left-width: 1px !important;
border-color: transparent !important;
}
.tabbrowser-tab:not(:first-of-type, [selected], :hover) {
--gnome-tabbar-tab-separator-hack0: var(--gnome-tabbar-background);
--gnome-tabbar-tab-separator-hack1: linear-gradient(
to bottom,
var(--gnome-tabbar-tab-separator-hack0) 0,
2023-10-26 17:59:53 +03:00
var(--gnome-tabbar-tab-separator-hack0) 3px,
var(--gnome-tabbar-tab-separator-color) 3px,
var(--gnome-tabbar-tab-separator-color) 31px,
var(--gnome-tabbar-tab-separator-hack0) 31px,
var(--gnome-tabbar-tab-separator-hack0) 40px
) 1;
border-image: var(--gnome-tabbar-tab-separator-hack1);
}
#tabbrowser-tabs[overflow="true"] .tabbrowser-tab[first-visible-unpinned-tab] {
border-image: none !important;
}
.tabbrowser-tab[selected] ~ .tabbrowser-tab:not([hidden="true"]) {
border-image: none;
}
.tabbrowser-tab[selected] ~ .tabbrowser-tab:not([hidden="true"]) ~ .tabbrowser-tab:not([hidden="true"]) {
border-image: var(--gnome-tabbar-tab-separator-hack1);
}
.tabbrowser-tab:hover ~ .tabbrowser-tab:not([hidden="true"]) {
border-image: none !important;
}
.tabbrowser-tab:hover ~ .tabbrowser-tab:not([hidden="true"]) ~ .tabbrowser-tab:not([hidden="true"]) {
2023-07-13 20:35:57 +03:00
border-image: var(--gnome-tabbar-tab-separator-hack1) !important;
}
.tabbrowser-tab:hover ~ .tabbrowser-tab[selected] ~ .tabbrowser-tab:not([hidden="true"]) {
border-image: none !important;
}
.tabbrowser-tab:hover ~ .tabbrowser-tab[selected] ~ .tabbrowser-tab:not([hidden="true"]) ~ .tabbrowser-tab:not([hidden="true"]) {
border-image: var(--gnome-tabbar-tab-separator-hack1) !important;
}
/* Tab labels */
tab {
color: var(--gnome-toolbar-color) !important;
font-family: Cantarell, inherit;
2020-07-19 15:58:22 +03:00
font-weight: normal;
font-size: 1em;
}
2021-04-23 07:12:40 +03:00
/* Reset tab background */
.tab-background {
2022-10-07 20:36:21 +03:00
border-radius: 6px !important;
2021-04-23 07:12:40 +03:00
box-shadow: none !important;
margin-block: 0 !important;
border: 0 !important;
2023-10-25 19:44:49 +03:00
transition: background 0.2s linear !important;
2021-04-23 07:12:40 +03:00
}
/* Center all inside tab */
.tab-content {
justify-content: center !important;
align-items: center !important;
margin-top: -1px;
}
.tab-content:not([pinned]) {
padding: 0 4px !important;
}
2021-06-15 22:05:03 +03:00
/* Fix custom info tab icon */
.tabbrowser-tab[image="chrome://global/skin/icons/info.svg"]:not([pinned]):not([busy]):not([progress]) .tab-icon-stack::before {
margin-inline-end: 5.5px;
}
.tabbrowser-tab[image="chrome://global/skin/icons/info.svg"] .tab-icon-image {
display: none !important;
}
/* Prevent tab icons size breaking */
.tab-icon-image, .tab-icon-sound, .tab-throbber, .tab-throbber-fallback, .tab-close-button {
min-width: 16px;
}
/* Center tab content */
.tab-label-container {
min-width: 0 !important;
max-width: min-content !important;
}
.tabbrowser-tab:not([pinned]) .tab-label-container {
margin-right: -16px;
}
.tabbrowser-tab:not([pinned]):is([selected="true"], :hover) .tab-label-container[textoverflow="true"] {
margin-right: 0;
}
.tabbrowser-tab:not([pinned]) .tab-icon-stack {
margin-left: auto !important;
}
.tab-close-button {
margin-left: auto;
}
/* Tab icon margin */
.tabbrowser-tab:not([pinned]) .tab-icon-stack {
2021-06-03 04:44:51 +03:00
margin-right: 2px;
}
.tab-throbber:not([pinned]), .tab-icon-pending:not([pinned]), .tab-icon-image:not([pinned]), .tab-sharing-icon-overlay:not([pinned]), .tab-icon-overlay:not([pinned]) {
margin-inline-end: 0 !important;
}
.tabbrowser-tab:not([soundplaying], [muted], [activemedia-blocked], [crashed]) .tab-icon-stack {
padding: 4px;
}
/* Hide favicon when mute icon is present */
.tabbrowser-tab:not([pinned]):is([soundplaying], [muted], [activemedia-blocked], [crashed]) .tab-icon-image:not([sharing]),
.tabbrowser-tab:not([pinned]):is([soundplaying], [muted], [activemedia-blocked], [crashed])[selected] .tab-icon-image {
display: none;
}
/* Hide secondary label about muting */
.tabbrowser-tab:is([soundplaying], [muted], [activemedia-blocked], [crashed]) .tab-secondary-label {
display: none;
}
2021-06-03 04:44:51 +03:00
/* Tab buttons */
.tab-icon-overlay,
.tab-close-button {
border: 0px solid transparent;
box-sizing: content-box; /* Avoid deformation on flexbox */
border-radius: 99px !important;
2021-06-03 04:44:51 +03:00
padding: 4px !important;
background-size: 24px;
2021-06-17 21:47:23 +03:00
transition: all 0.2s ease-out !important;
2021-06-03 04:44:51 +03:00
}
:root:not(:-moz-window-inactive) .tab-icon-overlay:hover,
:root:not(:-moz-window-inactive) .tab-close-button:hover {
2023-07-13 03:50:17 +03:00
background: var(--gnome-hover-color) !important;
}
:root:not(:-moz-window-inactive) .tab-icon-overlay:active,
:root:not(:-moz-window-inactive) .tab-close-button:active {
background: var(--gnome-active-color) !important;
2021-06-03 04:44:51 +03:00
}
.tab-icon-stack:is([soundplaying], [muted], [activemedia-blocked]) image {
margin: auto !important;
}
/* Always show the muted icon when poresent */
#tabbrowser-tabs:not([secondarytext-unsupported]) .tabbrowser-tab:not(:hover) .tab-icon-overlay[indicator-replaces-favicon] {
opacity: 1 !important;
}
/* Icon overlay smaller */
2023-10-25 19:16:20 +03:00
.tab-icon-overlay[pinned], .tab-icon-overlay:not([indicator-replaces-favicon], [selected]) {
width: 12px !important;
height: 12px !important;
padding: 2px !important;
}
/* Icon overlay small style */
.tab-icon-overlay:is([pinned], [sharing]):not([crashed]) {
stroke: unset !important;
}
.tab-icon-overlay:is([pinned]):not([crashed]),
.tab-icon-overlay:is([sharing]):not([crashed], [selected]) {
2023-07-13 03:50:17 +03:00
background: var(--gnome-button-background) !important;
}
.tab-icon-overlay:is([pinned], [sharing]):not([crashed]):hover {
2023-07-13 03:50:17 +03:00
background: var(--gnome-button-hover-background) !important;
}
/* Fix icon overlay posisition when sharing */
.tab-icon-overlay:not([crashed], [pinned]):is([sharing])[selected] {
top: 0 !important;
inset-inline-end: 0 !important;
}
2021-06-03 04:44:51 +03:00
/* Close tab button */
.tab-close-button {
list-style-image: url("../icons/window-close-symbolic.svg") !important;
fill: var(--gnome-toolbar-color) !important;
fill-opacity: 1 !important;
2021-04-22 15:41:13 +03:00
-moz-context-properties: fill, fill-opacity !important;
height: 16px !important;
margin-right: 0 !important;
opacity: 1 !important;
2021-04-22 15:41:13 +03:00
width: 16px !important;
2021-06-17 21:47:23 +03:00
z-index: 100 !important;
}
2021-06-17 21:47:23 +03:00
/* Autohide */
.tabbrowser-tab:not([selected="true"]) .tab-close-button {
2021-06-17 21:47:23 +03:00
visibility: hidden !important;
opacity: 0 !important;
}
.tabbrowser-tab:hover .tab-close-button {
2021-06-17 21:47:23 +03:00
visibility: visible !important;
opacity: 1 !important;
}
/* Fix close button position */
#tabbrowser-tabs[closebuttons="activetab"] .tabbrowser-tab:not([pinned]) .tab-close-button {
display: block !important;
}
/* Close button overlay */
.tabbrowser-tab:not([pinned]) .tab-content::before {
border-radius: 0 6px 6px 0;
content: "";
height: calc(100% - 4px);
opacity: 0;
position: absolute;
right: 2px;
top: 2px;
2023-10-25 19:44:49 +03:00
transition: background 0.4s linear;
width: 55px;
}
.tabbrowser-tab:not([pinned]) .tab-content::before {
background: linear-gradient(to left, var(--gnome-tabbar-tab-close-overlay-bg) 50%, transparent);
z-index: 99;
}
.tabbrowser-tab:not([pinned]):is([selected="true"], :hover) .tab-content::before {
opacity: 1;
}
.tabbrowser-tab:not([pinned])[selected="true"] .tab-content::before {
--gnome-tabbar-tab-close-overlay-bg: var(--gnome-tabbar-tab-active-background);
}
.tabbrowser-tab:not([pinned], :-moz-window-inactive)[selected="true"]:hover .tab-content::before {
--gnome-tabbar-tab-close-overlay-bg: var(--gnome-tabbar-tab-active-hover-background);
}
.tabbrowser-tab:not([pinned]):hover .tab-content::before {
--gnome-tabbar-tab-close-overlay-bg: var(--gnome-tabbar-tab-hover-background);
}
/* Tab close button etc. positioning */
.tab-throbber, .tab-icon-image, .tab-sharing-icon-overlay, .tab-icon-sound, .tab-close-button {
margin-top: 0 !important;
}
/* Active tab */
.tab-background[selected] {
2022-10-07 20:36:21 +03:00
background: none !important;
border-image: none !important;
}
.tab-background[selected] {
2022-10-07 20:36:21 +03:00
background-color: var(--gnome-tabbar-tab-active-background) !important;
}
/* Tab hover */
.tabbrowser-tab:hover > .tab-stack > .tab-background[selected]:not(:-moz-window-inactive) {
2019-06-25 03:57:54 +03:00
background-color: var(--gnome-tabbar-tab-active-hover-background) !important;
}
.tabbrowser-tab:hover > .tab-stack > .tab-background:not([selected]),
#TabsToolbar[brighttext] > #tabbrowser-tabs > .tabbrowser-tab:hover > .tab-stack > .tab-background:not([selected]),
#TabsToolbar[brighttext] > #tabbrowser-tabs > .tabbrowser-tab:hover > .tab-stack > .tab-background > .tab-line:not([selected]) {
background-color: transparent !important;
}
.tabbrowser-tab:hover > .tab-stack > .tab-background:not([selected]) {
2019-06-25 03:57:54 +03:00
background-color: var(--gnome-tabbar-tab-hover-background) !important;
border-image: none !important;
}
/* Full width tabs */
.tabbrowser-tab:not([style^="max-width"]):not([pinned]),
.tabbrowser-tab[style^="max-width: 100px !important;"]:not([pinned]) {
max-width: 100% !important;
--tab-min-width: 131px !important;
}
.tabbrowser-tab:not([style^="max-width"]):not([pinned]):not([fadein]),
.tabbrowser-tab[style^="max-width: 100px !important;"]:not([pinned]):not([fadein]) {
max-width: .1px !important;
}
2019-05-07 06:31:14 +03:00
/* Remove blank spaces on tabs start and end */
#TabsToolbar .titlebar-spacer {
display: none !important;
}
/* Tba containers */
2021-04-22 15:41:13 +03:00
.tabbrowser-tab[usercontextid] > .tab-stack > .tab-background > .tab-context-line {
display: none;
}
.tabbrowser-tab[class*="identity-color-"] .tab-label-container {
color: var(--identity-tab-color) !important;
font-weight: bold !important;
}
.identity-color-blue,
.identity-color-turquoise,
.identity-color-green,
.identity-color-yellow,
.identity-color-orange,
.identity-color-red,
.identity-color-pink,
.identity-color-purple {
--identity-icon-color: var(--identity-tab-color) !important;
}
.identity-color-blue {
--identity-tab-color: var(--gnome-tabbar-identity-color-blue) !important;
}
.identity-color-turquoise {
--identity-tab-color: var(--gnome-tabbar-identity-color-turquoise) !important;
}
.identity-color-green {
--identity-tab-color: var(--gnome-tabbar-identity-color-green) !important;
}
.identity-color-yellow {
--identity-tab-color: var(--gnome-tabbar-identity-color-yellow) !important;
}
.identity-color-orange {
--identity-tab-color: var(--gnome-tabbar-identity-color-orange) !important;
}
.identity-color-red {
--identity-tab-color: var(--gnome-tabbar-identity-color-red) !important;
}
.identity-color-pink {
--identity-tab-color: var(--gnome-tabbar-identity-color-pink) !important;
}
.identity-color-purple {
--identity-tab-color: var(--gnome-tabbar-identity-color-purple) !important;
}
/* Needs attetion tab indicator */
.tabbrowser-tab:is([image], [pinned]) > .tab-stack > .tab-content[attention]:not([selected="true"]),
.tabbrowser-tab > .tab-stack > .tab-content[pinned][titlechanged]:not([selected="true"]) {
background-image: radial-gradient(var(--gnome-tabbar-tab-needs-attetion), var(--gnome-tabbar-tab-needs-attetion) 10px) !important;
background-position: center bottom !important;
background-size: 14px 2px !important;
}
/* Tab spinner */
.tab-throbber::before {
animation: gnome-spinner 1s linear infinite !important;
background-image: url("../icons/process-working-symbolic.svg") !important;
width: 16px !important;
opacity: 1 !important;
}
@keyframes gnome-spinner {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
/* Tabs manager menu */
#alltabs-button {
visibility: collapse;
}
#tabbrowser-tabs[overflow] ~ #alltabs-button {
visibility: visible;
}
/* Firefox View */
#TabsToolbar #firefox-view-button .toolbarbutton-icon {
box-shadow: none !important;
fill: var(--gnome-toolbar-icon-fill) !important;
height: 16px !important;
opacity: 1 !important;
width: 16px !important;
}
:root:not([privatebrowsingmode="temporary"]):not([firefoxviewhidden]) :is(#firefox-view-button, #wrapper-firefox-view-button) + #tabbrowser-tabs {
border-inline-start: 0 !important;
padding-inline-start: var(--tab-overflow-pinned-tabs-width) !important;
margin-inline-start: 0 !important;
}
/* Left close buttons */
@media (-moz-gtk-csd-reversed-placement) {
/* Reorder and fix alignment */
.tab-icon-stack {
order: 1 !important;
margin-left: 0 !important;
}
.tab-label-container {
order: 2 !important;
margin-right: auto !important;
}
.tab-close-button {
order: 0 !important;
margin-left: 0 !important;
}
/* Overlay is nor longer needed */
.tabbrowser-tab:not([pinned]) .tab-content::before {
display: none !important;
}
}
/* OPTIONAL: Hide single tab */
@media (-moz-bool-pref: "gnomeTheme.hideSingleTab") {
#tabbrowser-tabs tab:only-of-type,
#tabbrowser-tabs tab:only-of-type ~ toolbarbutton,
#tabbrowser-tabs tab:only-of-type ~ #tabbrowser-arrowscrollbox-periphery {
2022-10-19 16:10:41 +03:00
visibility: collapse;
}
}
/* OPTIONAL: Use normal width tabs */
@media (-moz-bool-pref: "gnomeTheme.normalWidthTabs") {
.tabbrowser-tab:not([style^="max-width"]):not([pinned]),
.tabbrowser-tab[style^="max-width: 100px !important;"]:not([pinned]) {
max-width: 225px !important;
--tab-min-width: inherit !important;
}
}
/* OPTIONAL: Add more contrast to the active tab */
@media (-moz-bool-pref: "gnomeTheme.activeTabContrast") {
.tab-background[selected]:not(#hack),
:root:not(:-moz-window-inactive) .tabbrowser-tab:hover > .tab-stack > .tab-background:not(#hack) {
background: var(--gnome-tabbar-tab-active-background-contrast) !important;
}
.tabbrowser-tab:not([pinned])[selected="true"] .tab-content::before,
:root:not(:-moz-window-inactive) .tabbrowser-tab:hover .tab-content::before {
--gnome-tabbar-tab-close-overlay-bg: var(--gnome-tabbar-tab-active-background-contrast) !important;
}
}
/* OPTIONAL: Show the close button on the selected tab only */
@media (-moz-bool-pref: "gnomeTheme.closeOnlySelectedTabs") {
/* Hide the close buttons on hover */
.tabbrowser-tab:not([selected="true"]):hover .tab-close-button {
visibility: hidden !important;
opacity: 0 !important;
}
/* Hide the close button overlay on hover */
.tabbrowser-tab:not([pinned]):hover .tab-content::before {
--gnome-tabbar-tab-close-overlay-bg: unset;
}
/* Reset the overflow position of the tab label container */
.tabbrowser-tab:not([pinned]):not([selected="true"]):hover .tab-label-container[textoverflow="true"] {
margin-right: -16px;
}
}
2022-10-24 16:25:28 +03:00
/* OPTIONAL: Use tabs as headerbar */
@media (-moz-bool-pref: "gnomeTheme.tabsAsHeaderbar") {
2022-10-24 16:25:28 +03:00
/* Rearrange bars */
#navigator-toolbox #titlebar {
order: 0;
2022-10-24 16:25:28 +03:00
}
#navigator-toolbox #titlebar #TabsToolbar {
order: 0;
2022-10-24 16:25:28 +03:00
}
#navigator-toolbox #titlebar #toolbar-menubar {
order: 1;
2022-10-24 16:25:28 +03:00
}
#navigator-toolbox #nav-bar {
order: 3;
2022-10-24 16:25:28 +03:00
}
#navigator-toolbox #PersonalToolbar {
order: 4;
}
@media (-moz-bool-pref: "gnomeTheme.bookmarksToolbarUnderTabs") {
#navigator-toolbox #PersonalToolbar {
order: 2 !important;
}
2022-10-24 16:25:28 +03:00
}
/* Padding should be removed on the side touching the URL bar */
.tabbrowser-tab {
padding-bottom: 0px !important;
}
2022-10-24 16:25:28 +03:00
/* Remove nav-bar rounding and padding */
:root[tabsintitlebar][sizemode="normal"]:not([gtktiledwindow="true"]) #nav-bar {
border-radius: 0 !important;
}
:root[tabsintitlebar]:not([inFullscreen]) #nav-bar,
:root[tabsintitlebar][inFullscreen] #nav-bar {
2022-10-24 16:25:28 +03:00
padding-left: 3px !important;
padding-right: 3px !important;
}
/* Round and pad tab-bar */
:root[tabsintitlebar][sizemode="normal"]:not([gtktiledwindow="true"]) #TabsToolbar {
2022-10-24 16:25:28 +03:00
border-radius: env(-moz-gtk-csd-titlebar-radius) env(-moz-gtk-csd-titlebar-radius) 0 0 !important
}
:root[tabsintitlebar]:not([inFullscreen], [sizemode="maximized"]) #TabsToolbar .toolbar-items {
margin-block: auto;
2022-10-24 16:25:28 +03:00
padding: 0 46px;
}
/* Hide duplicate window controls from menubar */
:root[tabsintitlebar] #toolbar-menubar .titlebar-buttonbox-container {
display: none !important;
}
/* Force displaying controls in tab-bar */
:root[tabsintitlebar]:not([inDOMFullscreen]) #TabsToolbar .titlebar-buttonbox-container:not(#hack) {
display: flex !important;
2022-10-24 16:25:28 +03:00
position: static !important;
visibility: visible !important;
}
/* Blend single tab into whole bar */
@media (-moz-bool-pref: "gnomeTheme.hideSingleTab") {
2022-10-24 16:25:28 +03:00
#tabbrowser-tabs tab[first-visible-tab="true"][last-visible-tab="true"]:not([pinned]),
#tabbrowser-tabs tab[first-visible-tab="true"][last-visible-tab="true"]:not([pinned]) ~ toolbarbutton,
#tabbrowser-tabs tab[first-visible-tab="true"][last-visible-tab="true"]:not([pinned]) ~ #tabbrowser-arrowscrollbox-periphery {
visibility: visible;
}
#tabbrowser-tabs tab[first-visible-tab="true"][last-visible-tab="true"]:not([pinned]) {
-moz-window-dragging: drag;
}
#tabbrowser-tabs tab[first-visible-tab="true"][last-visible-tab="true"]:not([pinned]) .tab-background {
display: none !important
}
#tabbrowser-tabs tab[first-visible-tab="true"][last-visible-tab="true"]:not([pinned]) .tab-close-button {
visibility: hidden !important;
opacity: 0 !important;
}
#tabbrowser-tabs tab[first-visible-tab="true"][last-visible-tab="true"]:not([pinned]) .tab-content::before {
--gnome-tabbar-tab-close-overlay-bg: unset !important;
}
#tabbrowser-tabs tab[first-visible-tab="true"][last-visible-tab="true"]:not([pinned]) .tab-labelk-container[textoverflow="true"] {
margin-right: -16px;
}
/* Override normal width tabs */
@media (-moz-bool-pref: "gnomeTheme.normalWidthTabs") {
2022-10-24 16:25:28 +03:00
#tabbrowser-tabs tab[first-visible-tab="true"][last-visible-tab="true"]:not([pinned]):not([style^="max-width"]),
#tabbrowser-tabs tab[first-visible-tab="true"][last-visible-tab="true"][style^="max-width: 100px !important;"]:not([pinned]) {
max-width: 100% !important;
--tab-min-width: 131px !important;
}
}
}
}