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

301 lines
9.3 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;
}
2020-02-04 01:31:38 +02:00
#TabsToolbar:not([inFullscreen]) > .toolbar-items {
margin-bottom: -1px !important;
}
/* Tabs bar height */
#tabbrowser-tabs,
#tabbrowser-tabs arrowscrollbox {
height: auto !important;
min-height: auto !important;
}
2020-07-19 15:58:22 +03:00
#TabsToolbar {
background-color: var(--gnome-tabbar-tab-background) !important;
}
#TabsToolbar:-moz-window-inactive {
background-color: var(--gnome-inactive-tabbar-tab-background) !important;
}
tab > stack {
2019-07-06 19:06:28 +03:00
height: 38px !important;
2019-07-11 02:38:08 +03:00
min-height: 38px !important;
}
/* Extra margin for the first and last tabs */
.tabbrowser-tab[first-tab]:not([pinned=true]) {
margin-left: 8px !important;
}
.tabbrowser-tab[last-tab]:not([pinned=true]) {
margin-right: 8px !important;
}
/* Remove hover effects on tab bar buttons */
#TabsToolbar {
--toolbarbutton-active-background: transparent !important;
--toolbarbutton-hover-background: transparent !important;
2019-05-07 06:31:14 +03:00
padding: 0 3px !important;
}
/* New hover effect */
#TabsToolbar toolbarbutton {
fill-opacity: .6 !important;
}
#TabsToolbar toolbarbutton:not([disabled]):hover,
#TabsToolbar toolbarbutton[open=true] {
fill-opacity: 1 !important;
}
/* Remove shadow next to tab scroll buttons */
.arrowscrollbox-overflow-start-indicator,
.arrowscrollbox-overflow-end-indicator {
display: none;
}
/* Remove tab separators */
.tabbrowser-tab::after,
.tabbrowser-tab::before {
border-color: transparent !important;
border-image: none !important;
2020-07-19 15:58:22 +03:00
border-width: 0 !important;
}
/* Space between tabs */
.tabbrowser-tab:not([pinned=true]) {
margin: 0 4px !important;
}
/* Tab labels */
tab {
color: var(--gnome-tabbar-tab-color) !important;
font-family: Cantarell, inherit;
2020-07-19 15:58:22 +03:00
font-weight: normal;
font-size: 1em;
2020-07-20 07:45:22 +03:00
border-left: 1px solid transparent !important;
border-right: 1px solid transparent !important;
}
tab:hover {
color: var(--gnome-tabbar-tab-hover-color) !important;
}
tab[selected] {
color: var(--gnome-tabbar-tab-active-color) !important;
2020-07-20 07:45:22 +03:00
border-left-color: var(--gnome-tabbar-tab-border-color) !important;
border-right-color: var(--gnome-tabbar-tab-border-color) !important;
}
tab:-moz-window-inactive {
color: var(--gnome-inactive-tabbar-tab-color) !important;
}
tab[selected]:-moz-window-inactive {
color: var(--gnome-inactive-tabbar-tab-active-color) !important;
2020-07-20 07:45:22 +03:00
border-left-color: var(--gnome-inactive-headerbar-border-color) !important;
border-right-color: var(--gnome-inactive-headerbar-border-color) !important;
}
/* Center all inside tab */
.tab-content {
display: flex;
justify-content: center;
align-items: center;
margin-top: -1px;
min-width: 100% !important;
2019-05-07 06:31:14 +03:00
padding: 0 10px !important;
}
/* Prevent tab icons size breaking */
.tab-icon-image, .tab-icon-sound, .tab-throbber, .tab-throbber-fallback, .tab-close-button {
min-width: 16px;
}
/* Adjust tab label width */
.tab-label-container {
min-width: 0 !important;
}
/* Put tab close button and icon sound to the right */
.tab-icon-sound[soundplaying="true"], .tab-icon-sound[muted="true"],
.tab-icon-sound[activemedia-blocked="true"] {
margin-left: auto !important;
}
.tabbrowser-tab:not([soundplaying]):not([muted]):not([activemedia-blocked]) .tab-close-button {
margin-left: auto !important;
}
2019-06-07 01:56:00 +03:00
.tab-icon-sound {
margin-right: 6px;
}
/* Force tab favicon to the center */
.tabbrowser-tab:not([class*="identity-color-"]) .tab-throbber, .tabbrowser-tab:not([class*="identity-color-"]) .tab-throbber-fallback {
margin-left: auto;
}
.tabbrowser-tab:not([busy]):not([class*="identity-color-"]) .tab-icon-image {
margin-left: auto;
}
/* If tab favicon is not present, force tab label to the center */
.tabbrowser-tab .tab-label-container {
margin-left: 0 !important;
}
.tabbrowser-tab:not([image]):not([busy]):not([progress]):not([class*="identity-color-"]) .tab-label-container {
margin-left: auto !important;
}
/* If tab close button is not present, don't force favicon to the center */
#tabbrowser-tabs[closebuttons="activetab"] .tabbrowser-tab:not([selected="true"]) .tab-throbber,
#tabbrowser-tabs[closebuttons="activetab"] .tabbrowser-tab:not([selected="true"]) .tab-throbber-fallback,
#tabbrowser-tabs[closebuttons="activetab"] .tabbrowser-tab:not([selected="true"]):not([busy]) .tab-icon-image,
#tabbrowser-tabs[closebuttons="activetab"] .tabbrowser-tab:not([selected="true"]):not([image]) .tab-label-container {
margin-left: 0 !important;
}
/* Remove tab icons */
/* tab:not([pinned=true]) .tab-icon-image {
display: none;
} */
/* Close tab button */
2019-06-05 00:52:23 +03:00
:root {
--gnome-fill-icon: red !important;
}
.tab-close-button {
2019-06-05 00:52:23 +03:00
-moz-appearance: none !important;
border: 1px solid transparent;
box-sizing: content-box; /* Avoid deformation on flexbox */
2019-06-05 00:52:23 +03:00
border-radius: 5px;
list-style-image: url("../icons/window-close-symbolic.svg") !important;
fill: var(--gnome-toolbar-color) !important;
fill-opacity: 1 !important;
-moz-context-properties: fill, fill-opacity;
height: 16px;
opacity: .3;
padding: 2px;
width: 16px;
}
2019-07-06 19:06:28 +03:00
:root:-moz-window-inactive .tab-close-button:not(#hack) {
2019-06-04 03:46:34 +03:00
opacity: .18 !important;
}
2019-06-05 00:52:23 +03:00
:root:not(:-moz-window-inactive) .tab-close-button:hover {
2019-06-25 03:57:54 +03:00
background-image: var(--gnome-button-background);
box-shadow: var(--gnome-button-box-shadow);
border: 1px solid var(--gnome-button-border-color);
border-bottom-color: var(--gnome-button-border-accent-color);
opacity: 1;
}
:root:not(:-moz-window-inactive) .tab-close-button:active {
2019-06-25 03:57:54 +03:00
background-image: var(--gnome-button-active-background) !important;
box-shadow: var(--gnome-button-active-box-shadow) !important;
border-color: var(--gnome-button-active-border-color) !important;
border-bottom-color: var(--gnome-button-active-border-color) !important;
border-top-color: var(--gnome-button-active-border-accent-color) !important;
}
2019-06-25 03:57:54 +03:00
.tab-close-button:active:not(:hover) {
background-image: none !important;
box-shadow: none !important;
}
/* Tab close button etc. positioning */
.tab-throbber, .tab-icon-image, .tab-sharing-icon-overlay, .tab-icon-sound, .tab-close-button {
margin-top: 0 !important;
}
/* Remove blue line above tabs */
.tab-line {
display: none;
}
/* Active tab */
.tab-background[selected=true] {
2019-06-25 03:57:54 +03:00
background-color: var(--gnome-tabbar-tab-active-background) !important;
background-image: none !important;
2019-06-04 17:58:42 +03:00
border: 0 !important;
border-image: none !important;
2020-07-19 15:58:22 +03:00
border-bottom: 4px solid var(--gnome-tabbar-tab-active-border-bottom-color) !important;
}
.tab-background[selected=true]:-moz-window-inactive {
2019-06-25 03:57:54 +03:00
background-color: var(--gnome-inactive-tabbar-tab-active-background) !important;
2019-06-04 17:58:42 +03:00
border-bottom-color: var(--gnome-inactive-tabbar-tab-active-border-bottom-color) !important;
}
/* Tab hover */
:root:not(:-moz-window-inactive) .tabbrowser-tab:hover > .tab-stack > .tab-background[selected=true] {
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=true]),
#TabsToolbar[brighttext] > #tabbrowser-tabs > .tabbrowser-tab:hover > .tab-stack > .tab-background:not([selected=true]),
#TabsToolbar[brighttext] > #tabbrowser-tabs > .tabbrowser-tab:hover > .tab-stack > .tab-background > .tab-line:not([selected=true]) {
background-color: transparent !important;
}
:root:not(:-moz-window-inactive) .tabbrowser-tab:hover > .tab-stack > .tab-background:not([selected=true]) {
2019-06-25 03:57:54 +03:00
background-color: var(--gnome-tabbar-tab-hover-background) !important;
border-image: none !important;
2020-07-19 15:58:22 +03:00
border-bottom: 4px solid var(--gnome-tabbar-tab-hover-border-bottom-color) !important;
}
2019-07-18 01:37:55 +03:00
/* Tabs scroll buttons hover */
#TabsToolbar .scrollbutton-up:not([disabled]):hover, #TabsToolbar .scrollbutton-down:not([disabled]):hover {
background-color: var(--gnome-tabbar-tab-active-hover-background) !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;
}
.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;
}
/* Remove container bottom line indicator */
.tabbrowser-tab[usercontextid] > .tab-stack > .tab-background > .tab-bottom-line {
display: none;
}
/* Create new container tab indicator */
.tabbrowser-tab[class*="identity-color-"] .tab-content::before {
content: "";
display: block;
2019-08-14 00:17:37 +03:00
background-image: var(#userContext-icons:--identity-icon);
background: var( --identity-tab-color);
-moz-context-properties: fill;
fill: var(--identity-icon-color);
background-size: contain;
background-repeat: no-repeat;
background-position: center center;
min-width: 10px;
height: 10px;
margin-right: 5px;
margin-left: auto !important;
border-radius: 100%;
}
.tabbrowser-tab[class*="identity-color-"][pinned] .tab-content::before,
.tabbrowser-tab[class*="identity-color-"][image] .tab-content::before,
.tabbrowser-tab[class*="identity-color-"][busy] .tab-content::before,
.tabbrowser-tab[class*="identity-color-"][progress] .tab-content::before {
right: -10px;
top: -8px;
position: relative;
margin-right: -10px;
}
/* OPTIONAL: Hide Single Tab */
@supports -moz-bool-pref("gnomeTheme.hideSingleTab") {
#tabbrowser-tabs tab:only-of-type {
display: none !important;
}
}