Fix: Disabled border and margin on fullscreen dialogs
This commit is contained in:
parent
6f02cab725
commit
613edec9ce
1 changed files with 5 additions and 2 deletions
|
|
@ -832,16 +832,19 @@ progress+span {
|
|||
width: unset;
|
||||
}
|
||||
|
||||
.dialogContainer {
|
||||
.dialogContainer:not(:has(.dialog-fullscreen, .dialog-fullscreen-lowres)) {
|
||||
margin: .33em;
|
||||
}
|
||||
|
||||
.dialog {
|
||||
backdrop-filter: blur(5px);
|
||||
background-color: var(--drawerColor);
|
||||
min-width: 11em;
|
||||
}
|
||||
|
||||
.dialog:not(.dialog-fullscreen, .dialog-fullscreen-lowres) {
|
||||
border-radius: var(--largeRadius) !important;
|
||||
border: var(--defaultBorder);
|
||||
min-width: 11em;
|
||||
}
|
||||
|
||||
.dialogBackdropOpened {
|
||||
|
|
|
|||
Loading…
Reference in a new issue