Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/browser/base/content/browser-box-inc-xhtml.patch
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
diff --git a/browser/base/content/browser-box.inc.xhtml b/browser/base/content/browser-box.inc.xhtml
index afa7f8e7dd74173bf2c696bd96f7e86e8b0126bc..4847c24923f673e91eb7fb65ea6b037f38062405 100644
index afa7f8e7dd..68aa587863 100644
--- a/browser/base/content/browser-box.inc.xhtml
+++ b/browser/base/content/browser-box.inc.xhtml
@@ -25,7 +25,15 @@
Expand Down
2 changes: 1 addition & 1 deletion src/zen/common/ZenStartup.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
const browser = document.getElementById('browser');
browser.prepend(gNavToolbox);

const sidebarPanelWrapper = document.getElementById('tabbrowser-tabbox');
const sidebarPanelWrapper = document.getElementById('zen-tabbox-wrapper');
for (let id of kElementsToAppend) {
const elem = document.getElementById(id);
if (elem) {
Expand Down
14 changes: 6 additions & 8 deletions src/zen/common/styles/zen-sidebar.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#zen-tabbox-wrapper {
& #sidebar-splitter {
opacity: 0;
margin: 0 calc(-1 * var(--zen-element-separation) + 2px);
margin: 0 calc(-1 * var(--zen-element-separation) + 8px);
}

& #sidebar-box {
Expand All @@ -17,14 +17,12 @@
overflow: hidden;
}

& #tabbrowser-tabbox[sidebar-positionend] {
& #sidebar-box {
order: 8 !important;
}
& #sidebar-box[sidebar-positionend] {
order: 8 !important;
}

& #sidebar-splitter {
order: 7 !important;
}
#sidebar-box[sidebar-positionend] + #sidebar-splitter {
order: 7 !important;
}
}

Expand Down