gh-14409: Fix compact sidebar activation at right screen edge (gh-14769)

This commit is contained in:
Mark Sharland
2026-07-29 01:50:50 -07:00
committed by GitHub
parent e1189b2d0d
commit 0145cdfcbf

View File

@@ -353,3 +353,11 @@ body,
:root[zen-right-side="true"] #zen-appcontent-navbar-wrapper #PanelUI-button {
order: 2;
}
/* See #14409: firefox 150's body paint containment prevents the right side compact
sidebar from remaining active at the screen edge in macOS fullscreen */
@media (-moz-platform: macos) {
:root[macOSNativeFullscreen][zen-compact-mode][zen-right-side] body {
contain: none;
}
}