diff --git a/src/zen/glance/ZenGlanceManager.mjs b/src/zen/glance/ZenGlanceManager.mjs index de653c244..949844619 100644 --- a/src/zen/glance/ZenGlanceManager.mjs +++ b/src/zen/glance/ZenGlanceManager.mjs @@ -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'); diff --git a/src/zen/tabs/zen-tabs/vertical-tabs.css b/src/zen/tabs/zen-tabs/vertical-tabs.css index c75b7896d..809401417 100644 --- a/src/zen/tabs/zen-tabs/vertical-tabs.css +++ b/src/zen/tabs/zen-tabs/vertical-tabs.css @@ -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 { diff --git a/src/zen/workspaces/ZenWorkspaces.mjs b/src/zen/workspaces/ZenWorkspaces.mjs index 41e983f70..96a28a1c6 100644 --- a/src/zen/workspaces/ZenWorkspaces.mjs +++ b/src/zen/workspaces/ZenWorkspaces.mjs @@ -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) {