fix: Fixed collapsed sidebar in compact mode not showing tabs, b=no-bug, c=glance, tabs, workspaces

This commit is contained in:
Mr. M
2025-10-06 00:46:34 +02:00
parent 47d1f973e4
commit 856d6f523a
3 changed files with 6 additions and 6 deletions

View File

@@ -623,6 +623,9 @@
browserElement.style.minWidth = '';
browserElement.style.minHeight = '';
this.browserWrapper.style.height = '100%';
this.browserWrapper.style.width = '85%';
gBrowser.tabContainer._invalidateCachedTabs();
this.overlay.style.removeProperty('overflow');
this.browserWrapper.removeAttribute('animate');

View File

@@ -20,7 +20,8 @@
width: 100%;
}
#pinned-drop-indicator {
#pinned-drop-indicator,
#drag-to-pin-promo-card {
/* We dont use this firefox feature */
display: none !important;
}
@@ -62,10 +63,6 @@
margin-right: calc(-1 * var(--zen-toolbox-padding));
}
}
#tabbrowser-arrowscrollbox {
min-height: fit-content !important;
}
}
:root[zen-window-buttons-reversed='true'] .titlebar-buttonbox-container {

View File

@@ -1496,7 +1496,7 @@ var gZenWorkspaces = new (class extends nsZenMultiWindowFeature {
this.log('Unloading workspace', workspaceId);
await gBrowser.explicitUnloadTabs(tabsToUnload); // TODO: unit test this
await gBrowser.explicitUnloadTabs(tabsToUnload); // TODO: unit test this
}
moveTabToWorkspace(tab, workspaceID) {