Keep dialog glass border on narrow screens (#12591)

* Keep dialog glass border on narrow screens

It got pushed off the edge and eventually disappeared on narrow
screens, so force it to always be present.

* Update screenshot
This commit is contained in:
David Baker 2024-06-11 09:31:17 +01:00 committed by GitHub
parent 4e3de2b27e
commit 3e7511cc5d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 27 KiB

View file

@ -332,7 +332,10 @@ legend {
.mx_Dialog_border {
z-index: var(--dialog-zIndex-standard);
position: relative;
max-height: calc(100% - var(--cpd-space-12x));
width: 100%;
max-width: min-content;
box-sizing: border-box;
max-height: calc(100% - var(--cpd-space-6x));
display: flex;
flex-direction: column;