mirror of
https://github.com/zen-browser/desktop.git
synced 2026-06-22 02:43:21 +00:00
Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0cd67f882a | ||
|
|
bc6e4676f4 | ||
|
|
e331f07265 | ||
|
|
6e401db8ae | ||
|
|
afb4e4ff02 | ||
|
|
d55c0193c5 | ||
|
|
1b967a7080 |
@@ -34,8 +34,8 @@ Zen is a firefox-based browser with the aim of pushing your productivity to a ne
|
|||||||
|
|
||||||
### Firefox Versions
|
### Firefox Versions
|
||||||
|
|
||||||
- [`Release`](https://zen-browser.app/download) - Is currently built using Firefox version `152.0`! 🚀
|
- [`Release`](https://zen-browser.app/download) - Is currently built using Firefox version `152.0.1`! 🚀
|
||||||
- [`Twilight`](https://zen-browser.app/download?twilight) - Is currently built using Firefox version `RC 152.0`!
|
- [`Twilight`](https://zen-browser.app/download?twilight) - Is currently built using Firefox version `RC 152.0.1`!
|
||||||
|
|
||||||
### Contributing
|
### Contributing
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
01604ce201d4de3c6d4b930d271ce4fe05e8d0c8
|
2960f4c1ce58d289d3b9ec885695f0017d2636ab
|
||||||
@@ -7,10 +7,6 @@
|
|||||||
value: true
|
value: true
|
||||||
condition: "defined(XP_WIN)"
|
condition: "defined(XP_WIN)"
|
||||||
|
|
||||||
- name: widget.windows.mica.popups
|
|
||||||
value: true
|
|
||||||
condition: "defined(XP_WIN)"
|
|
||||||
|
|
||||||
# 1 = DWMSBT_MAINWINDOW
|
# 1 = DWMSBT_MAINWINDOW
|
||||||
# 2 = DWMSBT_TRANSIENTWINDOW (default, also used for popups)
|
# 2 = DWMSBT_TRANSIENTWINDOW (default, also used for popups)
|
||||||
# 3 = DWMSBT_TABBEDWINDOW
|
# 3 = DWMSBT_TABBEDWINDOW
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
diff --git a/browser/components/customizableui/CustomizableUI.sys.mjs b/browser/components/customizableui/CustomizableUI.sys.mjs
|
diff --git a/browser/components/customizableui/CustomizableUI.sys.mjs b/browser/components/customizableui/CustomizableUI.sys.mjs
|
||||||
index d5d4596739cde5d3d49d6294867f5da122c526b8..126474de8a38a11948c437703c875e98ff7c5f86 100644
|
index d5d4596739cde5d3d49d6294867f5da122c526b8..c206cfb374542c496be9bf0305a0a80bbcf503b2 100644
|
||||||
--- a/browser/components/customizableui/CustomizableUI.sys.mjs
|
--- a/browser/components/customizableui/CustomizableUI.sys.mjs
|
||||||
+++ b/browser/components/customizableui/CustomizableUI.sys.mjs
|
+++ b/browser/components/customizableui/CustomizableUI.sys.mjs
|
||||||
@@ -13,6 +13,7 @@ ChromeUtils.defineESModuleGetters(lazy, {
|
@@ -13,6 +13,7 @@ ChromeUtils.defineESModuleGetters(lazy, {
|
||||||
@@ -186,7 +186,7 @@ index d5d4596739cde5d3d49d6294867f5da122c526b8..126474de8a38a11948c437703c875e98
|
|||||||
});
|
});
|
||||||
|
|
||||||
lazy.log.debug(
|
lazy.log.debug(
|
||||||
@@ -7930,7 +7931,37 @@ class OverflowableToolbar {
|
@@ -7930,7 +7931,39 @@ class OverflowableToolbar {
|
||||||
Math.max(targetWidth, targetChildrenWidth)
|
Math.max(targetWidth, targetChildrenWidth)
|
||||||
);
|
);
|
||||||
totalAvailWidth = Math.ceil(totalAvailWidth);
|
totalAvailWidth = Math.ceil(totalAvailWidth);
|
||||||
@@ -194,6 +194,8 @@ index d5d4596739cde5d3d49d6294867f5da122c526b8..126474de8a38a11948c437703c875e98
|
|||||||
+ if (this.#target.id == 'nav-bar-customization-target' &&
|
+ if (this.#target.id == 'nav-bar-customization-target' &&
|
||||||
+ win.gZenVerticalTabsManager._hasSetSingleToolbar &&
|
+ win.gZenVerticalTabsManager._hasSetSingleToolbar &&
|
||||||
+ Services.prefs.getBoolPref("zen.view.overflow-webext-toolbar", true) &&
|
+ Services.prefs.getBoolPref("zen.view.overflow-webext-toolbar", true) &&
|
||||||
|
+ !win.document.documentElement.hasAttribute("zen-creating-workspace") &&
|
||||||
|
+ !win.document.documentElement.hasAttribute("inDOMFullscreen") &&
|
||||||
+ !win.gURLBar.hasAttribute("breakout-extend")) {
|
+ !win.gURLBar.hasAttribute("breakout-extend")) {
|
||||||
+ const availSelectors = ":is(#page-action-buttons, #zen-copy-url-button, .unified-extensions-item, .urlbar-addon-page-action)";
|
+ const availSelectors = ":is(#page-action-buttons, #zen-copy-url-button, .unified-extensions-item, .urlbar-addon-page-action)";
|
||||||
+ const width = [
|
+ const width = [
|
||||||
@@ -225,7 +227,7 @@ index d5d4596739cde5d3d49d6294867f5da122c526b8..126474de8a38a11948c437703c875e98
|
|||||||
return { isOverflowing, targetContentWidth, totalAvailWidth };
|
return { isOverflowing, targetContentWidth, totalAvailWidth };
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -7991,7 +8022,11 @@ class OverflowableToolbar {
|
@@ -7991,7 +8024,11 @@ class OverflowableToolbar {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -238,7 +240,7 @@ index d5d4596739cde5d3d49d6294867f5da122c526b8..126474de8a38a11948c437703c875e98
|
|||||||
lazy.log.debug(
|
lazy.log.debug(
|
||||||
`Need ${minSize} but width is ${totalAvailWidth} so bailing`
|
`Need ${minSize} but width is ${totalAvailWidth} so bailing`
|
||||||
);
|
);
|
||||||
@@ -8024,7 +8059,7 @@ class OverflowableToolbar {
|
@@ -8024,7 +8061,7 @@ class OverflowableToolbar {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!inserted) {
|
if (!inserted) {
|
||||||
@@ -247,7 +249,7 @@ index d5d4596739cde5d3d49d6294867f5da122c526b8..126474de8a38a11948c437703c875e98
|
|||||||
}
|
}
|
||||||
child.removeAttribute("cui-anchorid");
|
child.removeAttribute("cui-anchorid");
|
||||||
child.removeAttribute("overflowedItem");
|
child.removeAttribute("overflowedItem");
|
||||||
@@ -8150,6 +8185,9 @@ class OverflowableToolbar {
|
@@ -8150,6 +8187,9 @@ class OverflowableToolbar {
|
||||||
* if no such list exists.
|
* if no such list exists.
|
||||||
*/
|
*/
|
||||||
get #webExtList() {
|
get #webExtList() {
|
||||||
@@ -257,7 +259,7 @@ index d5d4596739cde5d3d49d6294867f5da122c526b8..126474de8a38a11948c437703c875e98
|
|||||||
if (!this.#webExtListRef) {
|
if (!this.#webExtListRef) {
|
||||||
let targetID = this.#toolbar.getAttribute("addon-webext-overflowtarget");
|
let targetID = this.#toolbar.getAttribute("addon-webext-overflowtarget");
|
||||||
if (!targetID) {
|
if (!targetID) {
|
||||||
@@ -8161,6 +8199,9 @@ class OverflowableToolbar {
|
@@ -8161,6 +8201,9 @@ class OverflowableToolbar {
|
||||||
let win = this.#toolbar.documentGlobal;
|
let win = this.#toolbar.documentGlobal;
|
||||||
let { panel } = win.gUnifiedExtensions;
|
let { panel } = win.gUnifiedExtensions;
|
||||||
this.#webExtListRef = panel.querySelector(`#${targetID}`);
|
this.#webExtListRef = panel.querySelector(`#${targetID}`);
|
||||||
@@ -267,7 +269,7 @@ index d5d4596739cde5d3d49d6294867f5da122c526b8..126474de8a38a11948c437703c875e98
|
|||||||
}
|
}
|
||||||
return this.#webExtListRef;
|
return this.#webExtListRef;
|
||||||
}
|
}
|
||||||
@@ -8369,7 +8410,7 @@ class OverflowableToolbar {
|
@@ -8369,7 +8412,7 @@ class OverflowableToolbar {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case "mousedown": {
|
case "mousedown": {
|
||||||
|
|||||||
13
src/browser/components/nova/NovaPrefs-sys-mjs.patch
Normal file
13
src/browser/components/nova/NovaPrefs-sys-mjs.patch
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
diff --git a/browser/components/nova/NovaPrefs.sys.mjs b/browser/components/nova/NovaPrefs.sys.mjs
|
||||||
|
index 3d22c881c481643fcffbc581523905a1847a7d41..453dd4d9c43d7483c037a993afbf2b854533497c 100644
|
||||||
|
--- a/browser/components/nova/NovaPrefs.sys.mjs
|
||||||
|
+++ b/browser/components/nova/NovaPrefs.sys.mjs
|
||||||
|
@@ -18,7 +18,7 @@ const PLATFORM_PREFS = (() => {
|
||||||
|
})();
|
||||||
|
|
||||||
|
function applyNovaPlatformDefaults() {
|
||||||
|
- const on = Services.prefs.getBoolPref("browser.nova.enabled", false);
|
||||||
|
+ const on = true;
|
||||||
|
const defaults = Services.prefs.getDefaultBranch("");
|
||||||
|
for (const pref of PLATFORM_PREFS) {
|
||||||
|
defaults.setBoolPref(pref, on);
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
diff --git a/browser/components/preferences/preferences.js b/browser/components/preferences/preferences.js
|
diff --git a/browser/components/preferences/preferences.js b/browser/components/preferences/preferences.js
|
||||||
index 57add34d876fb885275f1147209c6fbeee367a7c..d4c64b9ec8b6d1e6e0bd0b888c6e7351fbe299a4 100644
|
index 57add34d876fb885275f1147209c6fbeee367a7c..be0ab43b299317c0022a5e719f47a070c1574714 100644
|
||||||
--- a/browser/components/preferences/preferences.js
|
--- a/browser/components/preferences/preferences.js
|
||||||
+++ b/browser/components/preferences/preferences.js
|
+++ b/browser/components/preferences/preferences.js
|
||||||
@@ -132,6 +132,7 @@ ChromeUtils.defineLazyGetter(this, "gSubDialog", function () {
|
@@ -132,6 +132,7 @@ ChromeUtils.defineLazyGetter(this, "gSubDialog", function () {
|
||||||
@@ -10,7 +10,25 @@ index 57add34d876fb885275f1147209c6fbeee367a7c..d4c64b9ec8b6d1e6e0bd0b888c6e7351
|
|||||||
],
|
],
|
||||||
resizeCallback: async ({ title, frame }) => {
|
resizeCallback: async ({ title, frame }) => {
|
||||||
// Search within main document and highlight matched keyword.
|
// Search within main document and highlight matched keyword.
|
||||||
@@ -522,6 +523,10 @@ function init_all() {
|
@@ -437,6 +438,8 @@ const CONFIG_PANES = Object.freeze({
|
||||||
|
tabsBrowsing: {
|
||||||
|
l10nId: "tabs-browsing-section",
|
||||||
|
groupIds: [
|
||||||
|
+ "defaultBrowserHome",
|
||||||
|
+ "startupHome",
|
||||||
|
"browserLayout",
|
||||||
|
"tabs",
|
||||||
|
"pageNavigation",
|
||||||
|
@@ -477,7 +480,7 @@ function register_module(categoryName, categoryObject) {
|
||||||
|
}
|
||||||
|
this._initted = true;
|
||||||
|
let template = document.getElementById("template-" + categoryName);
|
||||||
|
- if (template && !srdSectionPrefs.all) {
|
||||||
|
+ if (template && (!srdSectionPrefs.all || categoryName.startsWith("paneZen"))) {
|
||||||
|
// Replace the template element with the nodes inside of it.
|
||||||
|
template.replaceWith(template.content);
|
||||||
|
|
||||||
|
@@ -522,6 +525,10 @@ function init_all() {
|
||||||
register_module("paneSearch", gSearchPane);
|
register_module("paneSearch", gSearchPane);
|
||||||
register_module("panePrivacy", gPrivacyPane);
|
register_module("panePrivacy", gPrivacyPane);
|
||||||
register_module("paneContainers", gContainersPane);
|
register_module("paneContainers", gContainersPane);
|
||||||
@@ -21,3 +39,15 @@ index 57add34d876fb885275f1147209c6fbeee367a7c..d4c64b9ec8b6d1e6e0bd0b888c6e7351
|
|||||||
|
|
||||||
// Restore the cached Firefox Labs nav button visibility so it shows
|
// Restore the cached Firefox Labs nav button visibility so it shows
|
||||||
// immediately when recipes are expected to be available, before
|
// immediately when recipes are expected to be available, before
|
||||||
|
@@ -651,9 +658,9 @@ async function gotoPref(
|
||||||
|
let redesignEnabled = srdSectionPrefs.all;
|
||||||
|
let categories = document.getElementById("categories");
|
||||||
|
const kDefaultCategoryInternalName = redesignEnabled
|
||||||
|
- ? "paneSync"
|
||||||
|
+ ? "paneTabsBrowsing"
|
||||||
|
: "paneGeneral";
|
||||||
|
- const kDefaultCategory = redesignEnabled ? "sync" : "general";
|
||||||
|
+ const kDefaultCategory = redesignEnabled ? "tabsBrowsing" : "general";
|
||||||
|
let hash = document.location.hash;
|
||||||
|
let category = aCategory || hash.substring(1) || kDefaultCategoryInternalName;
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
diff --git a/browser/components/tabbrowser/content/tabbrowser.js b/browser/components/tabbrowser/content/tabbrowser.js
|
diff --git a/browser/components/tabbrowser/content/tabbrowser.js b/browser/components/tabbrowser/content/tabbrowser.js
|
||||||
index 08b5b56e069d038d72c87355920c4ce8a55ed805..fff7da6865c694b439ee12d05db06d642a5b0a04 100644
|
index 08b5b56e069d038d72c87355920c4ce8a55ed805..555ffd4772d9d4903491fdff9f3682852f8a52bd 100644
|
||||||
--- a/browser/components/tabbrowser/content/tabbrowser.js
|
--- a/browser/components/tabbrowser/content/tabbrowser.js
|
||||||
+++ b/browser/components/tabbrowser/content/tabbrowser.js
|
+++ b/browser/components/tabbrowser/content/tabbrowser.js
|
||||||
@@ -511,6 +511,7 @@
|
@@ -511,6 +511,7 @@
|
||||||
@@ -14,9 +14,6 @@ index 08b5b56e069d038d72c87355920c4ce8a55ed805..fff7da6865c694b439ee12d05db06d64
|
|||||||
return this.tabContainer.visibleTabs;
|
return this.tabContainer.visibleTabs;
|
||||||
}
|
}
|
||||||
|
|
||||||
- get pinnedTabCount() {
|
|
||||||
- for (var i = 0; i < this.tabs.length; i++) {
|
|
||||||
- if (!this.tabs[i].pinned) {
|
|
||||||
+ zenHandleTabMove(...args) {
|
+ zenHandleTabMove(...args) {
|
||||||
+ return this.#handleTabMove(...args);
|
+ return this.#handleTabMove(...args);
|
||||||
+ }
|
+ }
|
||||||
@@ -31,15 +28,15 @@ index 08b5b56e069d038d72c87355920c4ce8a55ed805..fff7da6865c694b439ee12d05db06d64
|
|||||||
+ continue;
|
+ continue;
|
||||||
+ }
|
+ }
|
||||||
+ if (!item.pinned && !item.hasAttribute("zen-glance-tab")) {
|
+ if (!item.pinned && !item.hasAttribute("zen-glance-tab")) {
|
||||||
break;
|
+ break;
|
||||||
}
|
+ }
|
||||||
+ if (item.visible) {
|
+ if (item.visible) {
|
||||||
+ i += !item.hasAttribute("zen-glance-tab");
|
+ i += !item.hasAttribute("zen-glance-tab");
|
||||||
+ }
|
+ }
|
||||||
}
|
+ }
|
||||||
return i;
|
+ return i;
|
||||||
}
|
+ }
|
||||||
|
+
|
||||||
+ ungroupTabsUntilNoActive(tab) {
|
+ ungroupTabsUntilNoActive(tab) {
|
||||||
+ if (!tab || !tab.group) return;
|
+ if (!tab || !tab.group) return;
|
||||||
+ const activeGroups = tab.group.activeGroups;
|
+ const activeGroups = tab.group.activeGroups;
|
||||||
@@ -62,17 +59,19 @@ index 08b5b56e069d038d72c87355920c4ce8a55ed805..fff7da6865c694b439ee12d05db06d64
|
|||||||
+ return i;
|
+ return i;
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
+ get pinnedTabCount() {
|
get pinnedTabCount() {
|
||||||
|
- for (var i = 0; i < this.tabs.length; i++) {
|
||||||
|
- if (!this.tabs[i].pinned) {
|
||||||
+ let i = 0;
|
+ let i = 0;
|
||||||
+ for (let tab of this.tabs) {
|
+ for (let tab of this.tabs) {
|
||||||
+ if (!tab.pinned && !tab.hasAttribute("zen-glance-tab")) {
|
+ if (!tab.pinned && !tab.hasAttribute("zen-glance-tab")) {
|
||||||
+ break;
|
break;
|
||||||
+ }
|
}
|
||||||
+ i += !tab.hasAttribute("zen-glance-tab");
|
+ i += !tab.hasAttribute("zen-glance-tab");
|
||||||
+ }
|
}
|
||||||
+ return i;
|
return i;
|
||||||
+ }
|
}
|
||||||
+
|
|
||||||
+ get tabsWithoutGlance() {
|
+ get tabsWithoutGlance() {
|
||||||
+ return this.tabs.filter(tab => !tab.hasAttribute("zen-glance-tab"));
|
+ return this.tabs.filter(tab => !tab.hasAttribute("zen-glance-tab"));
|
||||||
+ }
|
+ }
|
||||||
@@ -297,7 +296,7 @@ index 08b5b56e069d038d72c87355920c4ce8a55ed805..fff7da6865c694b439ee12d05db06d64
|
|||||||
+
|
+
|
||||||
+ let hasZenDefaultUserContextId = false;
|
+ let hasZenDefaultUserContextId = false;
|
||||||
+ let zenForcedWorkspaceId = undefined;
|
+ let zenForcedWorkspaceId = undefined;
|
||||||
+ if (beforeRouteResult.isRouteFound) {
|
+ if (beforeRouteResult.isRouteFound && typeof userContextId !== "undefined") {
|
||||||
+ userContextId = beforeRouteResult.userContextId;
|
+ userContextId = beforeRouteResult.userContextId;
|
||||||
+ hasZenDefaultUserContextId = true;
|
+ hasZenDefaultUserContextId = true;
|
||||||
+ } else if (typeof gZenWorkspaces !== "undefined" && !_forZenEmptyTab) {
|
+ } else if (typeof gZenWorkspaces !== "undefined" && !_forZenEmptyTab) {
|
||||||
|
|||||||
@@ -323,7 +323,7 @@ zen-workspace {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
color: color-mix(in srgb, var(--toolbox-textcolor) 95%, var(--zen-primary-color));
|
color: color-mix(in srgb, var(--toolbox-textcolor) 95%, var(--zen-primary-color));
|
||||||
|
|
||||||
--tab-selected-bgcolor: color-mix(in srgb, light-dark(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.18)) 95%, var(--zen-primary-color)) !important;
|
--tab-background-color-selected: color-mix(in srgb, light-dark(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.18)) 95%, var(--zen-primary-color)) !important;
|
||||||
--tab-selected-shadow: 0 0.8px 1.5px 0px light-dark(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.05)) !important;
|
--tab-selected-shadow: 0 0.8px 1.5px 0px light-dark(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.05)) !important;
|
||||||
--tab-selected-textcolor: color-mix(in srgb, var(--toolbox-textcolor) 95%, var(--zen-primary-color)) !important;
|
--tab-selected-textcolor: color-mix(in srgb, var(--toolbox-textcolor) 95%, var(--zen-primary-color)) !important;
|
||||||
|
|
||||||
@@ -399,8 +399,8 @@ zen-workspace {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
:root:not(:is([animating-background], [swipe-gesture])) &:not([active]) {
|
:root:not(:is([animating-background], [swipe-gesture])) #navigator-toolbox:not([movingtab]) &:not([active]) {
|
||||||
display: none;
|
-moz-subtree-hidden-only-visually: 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ tab-group[split-view-group] {
|
|||||||
}
|
}
|
||||||
|
|
||||||
& > .tabbrowser-tab {
|
& > .tabbrowser-tab {
|
||||||
--tab-selected-bgcolor: var(--zen-split-view-active-tab-bg);
|
--tab-background-color-selected: var(--zen-split-view-active-tab-bg);
|
||||||
--tab-hover-background-color: transparent;
|
--tab-hover-background-color: transparent;
|
||||||
--tab-selected-shadow: none;
|
--tab-selected-shadow: none;
|
||||||
--border-radius-medium: var(--tab-border-radius);
|
--border-radius-medium: var(--tab-border-radius);
|
||||||
@@ -106,7 +106,7 @@ tab-group[split-view-group] {
|
|||||||
|
|
||||||
tab-group[split-view-group]:where([hasactivetab]) &,
|
tab-group[split-view-group]:where([hasactivetab]) &,
|
||||||
&:has(> tab:is([multiselected])) {
|
&:has(> tab:is([multiselected])) {
|
||||||
background-color: var(--tab-selected-bgcolor);
|
background-color: var(--tab-background-color-selected);
|
||||||
box-shadow: var(--tab-selected-shadow);
|
box-shadow: var(--tab-selected-shadow);
|
||||||
|
|
||||||
& > .tabbrowser-tab {
|
& > .tabbrowser-tab {
|
||||||
|
|||||||
@@ -1084,7 +1084,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&[in-urlbar] {
|
&[in-urlbar] {
|
||||||
background: var(--tab-selected-bgcolor) !important;
|
background: var(--tab-background-color-selected) !important;
|
||||||
box-shadow: var(--tab-selected-shadow);
|
box-shadow: var(--tab-selected-shadow);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1172,7 +1172,7 @@
|
|||||||
border-radius: var(--border-radius-medium) !important;
|
border-radius: var(--border-radius-medium) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
--tab-selected-bgcolor: light-dark(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.2));
|
--tab-background-color-selected: light-dark(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.2));
|
||||||
|
|
||||||
&:not([visuallyselected], [multiselected="true"]) .tab-background {
|
&:not([visuallyselected], [multiselected="true"]) .tab-background {
|
||||||
background: var(--zen-toolbar-element-bg);
|
background: var(--zen-toolbar-element-bg);
|
||||||
@@ -1195,7 +1195,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&:hover .tab-background {
|
&:hover .tab-background {
|
||||||
background: light-dark(rgba(0, 0, 0, 0.1), var(--tab-selected-bgcolor));
|
background: light-dark(rgba(0, 0, 0, 0.1), var(--tab-background-color-selected));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* stylelint-disable-next-line media-query-no-invalid */
|
/* stylelint-disable-next-line media-query-no-invalid */
|
||||||
|
|||||||
@@ -5,8 +5,8 @@
|
|||||||
"binaryName": "zen",
|
"binaryName": "zen",
|
||||||
"version": {
|
"version": {
|
||||||
"product": "firefox",
|
"product": "firefox",
|
||||||
"version": "152.0",
|
"version": "152.0.1",
|
||||||
"candidate": "152.0",
|
"candidate": "152.0.1",
|
||||||
"candidateBuild": 1
|
"candidateBuild": 1
|
||||||
},
|
},
|
||||||
"buildOptions": {
|
"buildOptions": {
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
"brandShortName": "Zen",
|
"brandShortName": "Zen",
|
||||||
"brandFullName": "Zen Browser",
|
"brandFullName": "Zen Browser",
|
||||||
"release": {
|
"release": {
|
||||||
"displayVersion": "1.21.2b",
|
"displayVersion": "1.21.3b",
|
||||||
"github": {
|
"github": {
|
||||||
"repo": "zen-browser/desktop"
|
"repo": "zen-browser/desktop"
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user