From 91cedcfc1a98adecdc3f2e97921b4ed12df28f98 Mon Sep 17 00:00:00 2001 From: "Mr. M" Date: Sat, 9 Aug 2025 10:43:09 +0200 Subject: [PATCH] chore: Bump version and add pref for hiding the throbber, b=no-bug, c=tabs --- prefs/theme.yaml | 3 +++ src/zen/tabs/zen-tabs/vertical-tabs.css | 13 +++++++------ surfer.json | 2 +- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/prefs/theme.yaml b/prefs/theme.yaml index db630cfc2..0c1c7bcb1 100644 --- a/prefs/theme.yaml +++ b/prefs/theme.yaml @@ -29,6 +29,9 @@ - name: zen.theme.use-sysyem-colors value: false +- name: zen.theme.hide-tab-throbber + value: true + # ==== Mark: border radius ==== # macOS border radius diff --git a/src/zen/tabs/zen-tabs/vertical-tabs.css b/src/zen/tabs/zen-tabs/vertical-tabs.css index 9e63b6ee2..71699d3df 100644 --- a/src/zen/tabs/zen-tabs/vertical-tabs.css +++ b/src/zen/tabs/zen-tabs/vertical-tabs.css @@ -1502,10 +1502,11 @@ opacity: 0.7; } -.tab-throbber { - display: none !important; /* Hide throbber always */ -} - -.tab-icon-image { - display: flex !important; +@media (-moz-pref('zen.theme.hide-tab-throbber')) { + .tab-throbber { + display: none !important; + } + .tab-icon-image { + display: flex !important; + } } diff --git a/surfer.json b/surfer.json index 8562bb22c..0aa8635a3 100644 --- a/surfer.json +++ b/surfer.json @@ -19,7 +19,7 @@ "brandShortName": "Zen", "brandFullName": "Zen Browser", "release": { - "displayVersion": "1.14.10b", + "displayVersion": "1.14.11b", "github": { "repo": "zen-browser/desktop" },