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

353 lines
10 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;
}
2021-04-24 19:04:32 +03:00
/* Fix tabs bar icon sizes */
#TabsToolbar {
--toolbarbutton-inner-padding: var(--toolbarbutton-inner-padding) !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;
}
/* 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;
}
/* Tabsbar buttons */
#TabsToolbar .toolbarbutton-1:not(#hack) {
border-right: 1px solid var(--gnome-tabbar-tab-border-color) !important;
border-bottom: 1px solid var(--gnome-tabbar-tab-border-color) !important;
border-radius: 0 !important;
margin: 0 !important;
padding: 0 9px !important;
}
#tabbrowser-tabs[overflow=true] + .toolbarbutton-1:first-of-type {
border-left: 1px solid var(--gnome-tabbar-tab-border-color) !important;
}
#TabsToolbar .toolbarbutton-1:not([disabled]):not(:active):not([open]):hover {
background-color: var(--gnome-tabbar-tab-active-hover-background) !important;
}
#TabsToolbar .toolbarbutton-1:active, #TabsToolbar .toolbarbutton-1[open] {
background-color: var(--gnome-tabbar-tab-border-color) !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 */
2021-05-11 03:49:28 +03:00
.tabbrowser-tab:not([pinned=true]) {
margin: 0 !important;
}
.tabbrowser-tab {
border: 0 !important;
padding-inline: 0 !important;
}
#TabsToolbar {
padding: 0 !important;
}
2021-05-10 15:25:52 +03:00
2021-05-11 03:49:28 +03:00
/* Tabs borders */
2021-06-02 22:13:05 +03:00
.tabbrowser-tab {
2021-05-11 03:49:28 +03:00
border-right: 1px solid var(--gnome-tabbar-tab-border-color) !important;
}
2021-06-02 22:13:05 +03:00
#TabsToolbar {
margin-right: -1px !important;
}
2021-05-11 03:49:28 +03:00
#tabbrowser-tabs[overflow=true] .tabbrowser-tab[first-visible-unpinned-tab] {
border-left: 1px solid var(--gnome-tabbar-tab-border-color) !important;
}
2021-05-10 15:25:52 +03:00
/* 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;
}
tab:hover {
color: var(--gnome-tabbar-tab-hover-color) !important;
}
tab[selected] {
color: var(--gnome-tabbar-tab-active-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;
}
2021-04-23 07:12:40 +03:00
/* Reset tab background */
.tab-background {
border-radius: 0 !important;
box-shadow: none !important;
margin-block: 0 !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 */
2021-05-11 03:49:28 +03:00
.tabbrowser-tab .tab-close-button {
margin-left: auto !important;
}
/* Force tab favicon to the center */
2021-04-22 15:41:13 +03:00
.tabbrowser-tab:not([class*="identity-color-"]) .tab-icon-stack {
margin-left: auto !important;
}
/* Tab icon margin */
.tabbrowser-tab:not([pinned]) .tab-icon-stack {
2021-06-03 04:44:51 +03:00
margin-right: 2px;
}
/* If tab close button is not present, don't force favicon to the center */
2021-05-05 16:23:24 +03:00
#tabbrowser-tabs[closebuttons="activetab"] .tabbrowser-tab:not([selected="true"]) .tab-icon-stack {
margin-left: 0 !important;
}
2021-06-03 04:44:51 +03:00
/* Tab buttons */
.tab-icon-overlay,
.tab-close-button {
2019-06-05 00:52:23 +03:00
-moz-appearance: none !important;
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;
}
:root:not(:-moz-window-inactive) .tab-icon-overlay:hover,
:root:not(:-moz-window-inactive) .tab-close-button:hover {
background-image: var(--gnome-tabbar-close-hover);
}
.tab-icon-stack:is([soundplaying], [muted], [activemedia-blocked]) image {
margin: auto !important;
}
/* Close tab button */
:root {
--gnome-fill-icon: red !important;
}
.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;
opacity: 1 !important;
2021-04-22 15:41:13 +03:00
width: 16px !important;
}
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;
}
: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;
}
/* Autohide (Still Horrible) */
.tabbrowser-tab:not([selected="true"]) .tab-close-button {
visibility: hidden;
}
.tabbrowser-tab:hover .tab-close-button {
visibility: visible;
}
/* 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;
border-bottom: 1px solid var(--gnome-tabbar-tab-border-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;
border-bottom-color: var(--gnome-tabbar-tab-border-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;
border-bottom: 1px solid var(--gnome-tabbar-tab-border-color) !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 */
2021-04-22 15:41:13 +03:00
.tabbrowser-tab[usercontextid] > .tab-stack > .tab-background > .tab-context-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;
2021-04-22 15:41:13 +03:00
z-index: 1;
}
/* OPTIONAL: GNOME spinner */
/* Temporal until I find time to work around the rendering issue */
@supports -moz-bool-pref("gnomeTheme.spinner") {
/* 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);
}
}
}
/* OPTIONAL: Hide single tab */
@supports -moz-bool-pref("gnomeTheme.hideSingleTab") {
#tabbrowser-tabs tab:only-of-type {
display: none !important;
}
}
/* OPTIONAL: Use normal width tabs */
@supports -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;
}
}
/* OPTIONAL: Add more contrast to the active tab */
@supports -moz-bool-pref("gnomeTheme.activeTabContrast") {
.tab-background[selected=true],
:root:not(:-moz-window-inactive) .tabbrowser-tab:hover > .tab-stack > .tab-background:not(#hack) {
background: var(--gnome-tabbar-tab-active-background-contrast) !important;
}
}