From 5ca4553e70ae77b3c125b5fab22963ba29412992 Mon Sep 17 00:00:00 2001 From: Ivaon <155267770+Ivaon@users.noreply.github.com> Date: Wed, 5 Nov 2025 23:36:48 +0100 Subject: [PATCH 1/4] fix: targeting new container tab context menu with a higher specificity and removing opacity rule, p=#11166 --- src/zen/common/styles/zen-single-components.css | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/zen/common/styles/zen-single-components.css b/src/zen/common/styles/zen-single-components.css index 4ab836e02..8c7fa89cd 100644 --- a/src/zen/common/styles/zen-single-components.css +++ b/src/zen/common/styles/zen-single-components.css @@ -611,11 +611,8 @@ body > #confetti { } /* Contextual new tab popup menu */ -#tabs-newtab-button > .new-tab-popup > menuitem { +#navigator-toolbox #titlebar #TabsToolbar #tabs-newtab-button > .new-tab-popup > menuitem { & > :is(.menu-highlightable-text, .menu-accel) { - display: none !important; - } - & > label { - opacity: 1 !important; + display: none; } } From 11e339742150dcc87570841ebfeafbad6a530c20 Mon Sep 17 00:00:00 2001 From: "mr. m" Date: Thu, 6 Nov 2025 23:02:07 +0100 Subject: [PATCH 2/4] fix: Fixed addons menu being off-screen, b=closes #11177, c=common --- src/browser/base/content/zen-panels/site-data.inc | 5 +++-- src/zen/common/ZenUIManager.mjs | 11 ++++++----- surfer.json | 2 +- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/src/browser/base/content/zen-panels/site-data.inc b/src/browser/base/content/zen-panels/site-data.inc index b3b99dc06..e413d2c1e 100644 --- a/src/browser/base/content/zen-panels/site-data.inc +++ b/src/browser/base/content/zen-panels/site-data.inc @@ -5,10 +5,11 @@ + noautofocus="true" + position="bottomright topright"> # We'll keep the view with this name/id in order to prevent -# any sort of future issues we may have if firefox decides +# any sort of future issues we may have if firefox decides # to change the functionality of this view Date: Thu, 6 Nov 2025 23:07:06 +0100 Subject: [PATCH 3/4] chore: Increase the speed for glance background animation, b=no-bug, c=glance --- src/zen/glance/ZenGlanceManager.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zen/glance/ZenGlanceManager.mjs b/src/zen/glance/ZenGlanceManager.mjs index 70c7da14e..a35d4e021 100644 --- a/src/zen/glance/ZenGlanceManager.mjs +++ b/src/zen/glance/ZenGlanceManager.mjs @@ -926,7 +926,7 @@ opacity: [0.4, 1], }, { - duration: this.#GLANCE_ANIMATION_DURATION, + duration: this.#GLANCE_ANIMATION_DURATION / 2, type: 'spring', bounce: 0, } From a0f282a7598c2d5649646263675ee045461283bd Mon Sep 17 00:00:00 2001 From: "mr. m" <91018726+mr-cheffy@users.noreply.github.com> Date: Fri, 7 Nov 2025 10:35:15 +0100 Subject: [PATCH 4/4] feat: Increase the duration for glance close animation, p=#11184, c=glance --- src/zen/glance/ZenGlanceManager.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zen/glance/ZenGlanceManager.mjs b/src/zen/glance/ZenGlanceManager.mjs index a35d4e021..52e452175 100644 --- a/src/zen/glance/ZenGlanceManager.mjs +++ b/src/zen/glance/ZenGlanceManager.mjs @@ -926,7 +926,7 @@ opacity: [0.4, 1], }, { - duration: this.#GLANCE_ANIMATION_DURATION / 2, + duration: this.#GLANCE_ANIMATION_DURATION / 1.5, type: 'spring', bounce: 0, }