mirror of
https://github.com/zen-browser/desktop.git
synced 2026-02-02 10:04:37 +00:00
Merge branch 'dev' of https://github.com/zen-browser/desktop into dev
This commit is contained in:
@@ -1403,7 +1403,8 @@ window.gZenVerticalTabsManager = {
|
||||
if (
|
||||
this._tabEdited ||
|
||||
((!Services.prefs.getBoolPref("zen.tabs.rename-tabs") ||
|
||||
Services.prefs.getBoolPref("browser.tabs.closeTabByDblclick")) &&
|
||||
(Services.prefs.getBoolPref("browser.tabs.closeTabByDblclick") &&
|
||||
event.type === "dblclick")) &&
|
||||
isTab) ||
|
||||
!gZenVerticalTabsManager._prefsSidebarExpanded
|
||||
) {
|
||||
|
||||
@@ -309,7 +309,7 @@
|
||||
order: 2;
|
||||
}
|
||||
|
||||
#notification-popup-box:not([open]) {
|
||||
#notification-popup-box:not([open]):not(:has(> [showing="true"])) {
|
||||
margin-inline-start: calc(-10px - 2 * var(--urlbar-icon-padding));
|
||||
opacity: 0;
|
||||
transition: all 0.2s;
|
||||
|
||||
@@ -1386,10 +1386,10 @@ class nsZenViewSplitter extends nsZenDOMOperatedFeature {
|
||||
new nsSplitLeafNode(tabs[i], 50),
|
||||
new nsSplitLeafNode(tabs[i + 1], 50),
|
||||
];
|
||||
rootNode.addChild(columnNode);
|
||||
rootNode.addChild(columnNode, false);
|
||||
}
|
||||
if (tabs.length % 2 !== 0) {
|
||||
rootNode.addChild(new nsSplitLeafNode(tabs[tabs.length - 1], rowWidth));
|
||||
rootNode.addChild(new nsSplitLeafNode(tabs[tabs.length - 1], rowWidth), false);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user