Remove the glass border from modal spinners (#12367)
It was not intentional, as these spinners are not a real dialog.pull/28217/head
parent
157ca48dff
commit
10526c92bb
|
@ -660,8 +660,15 @@ legend {
|
|||
}
|
||||
|
||||
/* Spinner Dialog overide */
|
||||
.mx_Dialog_wrapper.mx_Dialog_spinner .mx_Dialog {
|
||||
width: auto;
|
||||
.mx_Dialog_wrapper.mx_Dialog_spinner {
|
||||
/* This is not a real dialog, so we shouldn't show a glass border */
|
||||
.mx_Dialog_border {
|
||||
display: contents;
|
||||
}
|
||||
|
||||
.mx_Dialog {
|
||||
inline-size: auto;
|
||||
block-size: auto;
|
||||
border-radius: 8px;
|
||||
padding: 8px;
|
||||
box-shadow: none;
|
||||
|
@ -670,6 +677,7 @@ legend {
|
|||
overflow-x: hidden;
|
||||
overflow-y: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
/* TODO: Review mx_GeneralButton usage to see if it can use a different class */
|
||||
/* These classes were brought in from the old UserSettings and are included here to avoid */
|
||||
|
|
Loading…
Reference in New Issue