diff --git a/src/zen/compact-mode/zen-compact-mode.css b/src/zen/compact-mode/zen-compact-mode.css index ed6ea187..19da1e3f 100644 --- a/src/zen/compact-mode/zen-compact-mode.css +++ b/src/zen/compact-mode/zen-compact-mode.css @@ -91,7 +91,7 @@ } } - &:not([zen-single-toolbar='true']) .zen-essentials-container { + &:not([zen-sidebar-expanded='true']) .zen-essentials-container { padding: 0; } diff --git a/src/zen/tabs/zen-tabs/vertical-tabs.css b/src/zen/tabs/zen-tabs/vertical-tabs.css index a00bd3d0..5e1edd0e 100644 --- a/src/zen/tabs/zen-tabs/vertical-tabs.css +++ b/src/zen/tabs/zen-tabs/vertical-tabs.css @@ -1275,6 +1275,5 @@ &[hidden='true'] { visibility: hidden; pointer-events: none; - position: fixed; } } diff --git a/src/zen/welcome/ZenWelcome.mjs b/src/zen/welcome/ZenWelcome.mjs index 5a7083ef..098b184a 100644 --- a/src/zen/welcome/ZenWelcome.mjs +++ b/src/zen/welcome/ZenWelcome.mjs @@ -81,8 +81,8 @@ async function openInitialPinTab() { const tabs = [ - ['https://reddit.com/r/zen_browser', 'Zen on Reddit', 'https://zen-browser.github.io/static-cdn/reddit.png'], - ['https://x.com/zen_browser', 'Zen on Twitter', 'https://zen-browser.github.io/static-cdn/x.png'], + ['https://reddit.com/r/zen_browser', 'Zen on Reddit', 'https://private-cdn.zen-browser.app/reddit.png'], + ['https://x.com/zen_browser', 'Zen on Twitter', 'https://private-cdn.zen-browser.app/x.png'], ]; for (const site of tabs) { const tab = window.gBrowser.addTrustedTab(site[0], { @@ -374,47 +374,47 @@ - + - + - + - + - + - + - + - + - + diff --git a/src/zen/workspaces/ZenWorkspaces.mjs b/src/zen/workspaces/ZenWorkspaces.mjs index 2e088274..ff4cdaf8 100644 --- a/src/zen/workspaces/ZenWorkspaces.mjs +++ b/src/zen/workspaces/ZenWorkspaces.mjs @@ -2052,7 +2052,10 @@ var ZenWorkspaces = new (class extends ZenMultiWindowFeature { (w) => w.uuid === essentialsWorkspacess[essentialsWorkspacess.length - 1].uuid ); // Check if the container is even going to appear on the screen, to save on animation - if (firstWorkspaceIndex > newWorkspaceIndex || lastWorkspaceIndex < newWorkspaceIndex) { + if ( + (isGoingLeft && newWorkspaceIndex > lastWorkspaceIndex) || + (!isGoingLeft && newWorkspaceIndex < firstWorkspaceIndex) + ) { container.remove(); continue; }