Skip to content

Commit

Permalink
Keep dialog glass border on narrow screens (#12591)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
dbkr authored Jun 11, 2024
1 parent 4e3de2b commit 3e7511c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion res/css/_common.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 3e7511c

Please sign in to comment.