Skip to content

Commit 141a98b

Browse files
committed
[UI] Fix status area bubble clipping in single-line mode
Replaced overflow: hidden with clip-path: inset() to prevent absolute positioned hover bubbles from getting clipped while still hiding the overflowing horizontal elements. Closes #8316
1 parent 7347afd commit 141a98b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ui/layout/layout.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@
289289
.l-shell__head--indicators-single-line & {
290290
flex-wrap: nowrap;
291291
justify-content: flex-start; // Overflow detection doesn't work with flex-end.
292-
overflow: hidden;
292+
clip-path: inset(-20px 0 -500px -500px);
293293

294294
> *:first-child {
295295
margin-left: auto; // Mimics justify-content: flex-end when in single line mode.

0 commit comments

Comments
 (0)