Fixed fullscreen videos having a top-bar on certain layouts (closes https://github.com/zen-browser/desktop/issues/3269)

This commit is contained in:
mr. M
2024-12-22 10:39:28 +01:00
parent a5830ca15b
commit c5ff01d528
3 changed files with 11 additions and 7 deletions

View File

@@ -31,10 +31,3 @@ height: var(--zen-toolbar-height);
}
}
}
:root[inDOMFullscreen='true'] & {
max-height: 0 !important;
min-height: unset !important;
opacity: 0 !important;
pointer-events: none !important;
}

View File

@@ -166,6 +166,13 @@
&[should-hide='true'] {
%include vertical-tabs-topbar.inc.css
}
:root[inDOMFullscreen='true'] & {
max-height: 0 !important;
min-height: unset !important;
opacity: 0 !important;
pointer-events: none !important;
}
}
}