mirror of
https://github.com/zen-browser/desktop.git
synced 2025-10-05 17:36:34 +00:00
44 lines
2.0 KiB
C++
44 lines
2.0 KiB
C++
diff --git a/browser/components/customizableui/CustomizeMode.sys.mjs b/browser/components/customizableui/CustomizeMode.sys.mjs
|
|
index 41f347130e754ad0ee3416c1a3881211c4d2f777..9f906fd5f11731025abdf55eb5e60a824f8dd81f 100644
|
|
--- a/browser/components/customizableui/CustomizeMode.sys.mjs
|
|
+++ b/browser/components/customizableui/CustomizeMode.sys.mjs
|
|
@@ -354,7 +354,7 @@ CustomizeMode.prototype = {
|
|
this._transitioning = true;
|
|
|
|
let customizer = document.getElementById("customization-container");
|
|
- let browser = document.getElementById("browser");
|
|
+ let browser = document.getElementById("tabbrowser-tabbox"); // ZEN: This fixes customizing mode!!! Dont remove it
|
|
browser.hidden = true;
|
|
customizer.hidden = false;
|
|
|
|
@@ -485,7 +485,7 @@ CustomizeMode.prototype = {
|
|
}
|
|
|
|
let customizer = document.getElementById("customization-container");
|
|
- let browser = document.getElementById("browser");
|
|
+ let browser = document.getElementById("tabbrowser-tabbox"); // ZEN: This fixes customizing mode!!! Dont remove it
|
|
customizer.hidden = true;
|
|
browser.hidden = false;
|
|
|
|
@@ -2276,6 +2276,20 @@ CustomizeMode.prototype = {
|
|
if (makeSpaceImmediately) {
|
|
aItem.setAttribute("notransition", "true");
|
|
}
|
|
+ if (aItem.parentElement.id === "TabsToolbar-customization-target") {
|
|
+ // We change the border values so we can properly implement the native vertical tabs
|
|
+ // drag and drop behavior.
|
|
+ aItem.style.borderColor = "transparent";
|
|
+ if (aValue == "before") {
|
|
+ prop = "borderTopWidth";
|
|
+ otherProp = "borderBottomWidth";
|
|
+ aItem.style.borderTopStyle = "solid";
|
|
+ } else {
|
|
+ prop = "borderBottomWidth";
|
|
+ otherProp = "borderTopWidth";
|
|
+ aItem.style.borderBottomStyle = "solid";
|
|
+ }
|
|
+ }
|
|
aItem.style[prop] = borderWidth + "px";
|
|
aItem.style.removeProperty(otherProp);
|
|
if (makeSpaceImmediately) {
|