Skip to content

Commit 91cedcf

Browse files
committed
chore: Bump version and add pref for hiding the throbber, b=no-bug, c=tabs
1 parent 303af80 commit 91cedcf

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

prefs/theme.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
- name: zen.theme.use-sysyem-colors
3030
value: false
3131

32+
- name: zen.theme.hide-tab-throbber
33+
value: true
34+
3235
# ==== Mark: border radius ====
3336

3437
# macOS border radius

src/zen/tabs/zen-tabs/vertical-tabs.css

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1502,10 +1502,11 @@
15021502
opacity: 0.7;
15031503
}
15041504

1505-
.tab-throbber {
1506-
display: none !important; /* Hide throbber always */
1507-
}
1508-
1509-
.tab-icon-image {
1510-
display: flex !important;
1505+
@media (-moz-pref('zen.theme.hide-tab-throbber')) {
1506+
.tab-throbber {
1507+
display: none !important;
1508+
}
1509+
.tab-icon-image {
1510+
display: flex !important;
1511+
}
15111512
}

surfer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"brandShortName": "Zen",
2020
"brandFullName": "Zen Browser",
2121
"release": {
22-
"displayVersion": "1.14.10b",
22+
"displayVersion": "1.14.11b",
2323
"github": {
2424
"repo": "zen-browser/desktop"
2525
},

0 commit comments

Comments
 (0)