Skip to content

Commit fb1575d

Browse files
committed
fix: Fixed window controls not being accessible on fullscreen when element separation is 0, b=(no-bug), c=tabs
1 parent 004b946 commit fb1575d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/zen/tabs/zen-tabs/vertical-tabs-topbar.inc.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ z-index: 1;
1616

1717
&:not([zen-has-hover='true']):not([has-popup-menu]):not(:focus-within):not(:has(*:is([panelopen='true'], [open='true']))) {
1818
transition-delay: 0.2s;
19-
height: var(--zen-element-separation);
19+
/* In order to still use it on fullscreen, even if it's 0px, add .1px (almost invisible) */
20+
height: calc(var(--zen-element-separation) + 0.1px);
2021
overflow: hidden;
2122
opacity: 0;
2223
& > * {

0 commit comments

Comments
 (0)