extensions: tab center reborn: Fix breakeages

Signed-off-by: Birdinfire <42673166+BirdInFire@users.noreply.github.com>
This commit is contained in:
Birdinfire 2023-12-28 18:41:14 +01:00 committed by GitHub
parent bad853333d
commit 07670579cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 4 deletions

View File

@ -74,7 +74,7 @@ body {
} }
#newtab { #newtab {
display:none; width: 95%;
} }
.tab, .tab,
@ -100,7 +100,6 @@ body {
min-width: 16px; min-width: 16px;
} }
/* the @media rule only allows these settings apply when the sidebar is expanded */ /* the @media rule only allows these settings apply when the sidebar is expanded */
@media (min-width: 49px) { @media (min-width: 49px) {
/* Move close button to left side */ /* Move close button to left side */
@ -157,6 +156,7 @@ body {
background: var(--identity-color); background: var(--identity-color);
transition: inset .1s; transition: inset .1s;
} }
#tablist .tab.active[data-identity-color] .tab-context::before, #tablist .tab.active[data-identity-color] .tab-context::before,
#pinnedtablist:not(.compact) .tab.active[data-identity-color] .tab-context::before { #pinnedtablist:not(.compact) .tab.active[data-identity-color] .tab-context::before {
top: 1px; top: 1px;

View File

@ -13,13 +13,21 @@
#browser { #browser {
position: relative; position: relative;
} }
#tabbrowser-tabbox {
z-index: 0 !important;
}
#navigator-toolbox {
z-index: 10 !important;
}
#sidebar-box:not([lwt-sidebar]){ #sidebar-box:not([lwt-sidebar]){
appearance: unset !important; appearance: unset !important;
} }
#sidebar-box[sidebarcommand*="tabcenter"] { #sidebar-box[sidebarcommand*="tabcenter"] {
z-index: 1; z-index: 1 !important;
} }
#sidebar-box[sidebarcommand*="tabcenter"] #sidebar-header { #sidebar-box[sidebarcommand*="tabcenter"] #sidebar-header {
@ -41,7 +49,7 @@
overflow: hidden; overflow: hidden;
border-right: 1px solid var(--sidebar-border-color); border-right: 1px solid var(--sidebar-border-color);
z-index: 1; z-index: 1 !important;
top: 0; top: 0;
bottom: 0; bottom: 0;
} }