[Backport staging] Remove the glass border from modal spinners (#12369)
Co-authored-by: Robin <robin@robin.town>
This commit is contained in:
parent
ce8a2f333d
commit
cd314477ce
1 changed files with 16 additions and 8 deletions
|
@ -660,15 +660,23 @@ legend {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Spinner Dialog overide */
|
/* Spinner Dialog overide */
|
||||||
.mx_Dialog_wrapper.mx_Dialog_spinner .mx_Dialog {
|
.mx_Dialog_wrapper.mx_Dialog_spinner {
|
||||||
width: auto;
|
/* This is not a real dialog, so we shouldn't show a glass border */
|
||||||
border-radius: 8px;
|
.mx_Dialog_border {
|
||||||
padding: 8px;
|
display: contents;
|
||||||
box-shadow: none;
|
}
|
||||||
|
|
||||||
/* Don't show scroll-bars on spinner dialogs */
|
.mx_Dialog {
|
||||||
overflow-x: hidden;
|
inline-size: auto;
|
||||||
overflow-y: hidden;
|
block-size: auto;
|
||||||
|
border-radius: 8px;
|
||||||
|
padding: 8px;
|
||||||
|
box-shadow: none;
|
||||||
|
|
||||||
|
/* Don't show scroll-bars on spinner dialogs */
|
||||||
|
overflow-x: hidden;
|
||||||
|
overflow-y: hidden;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* TODO: Review mx_GeneralButton usage to see if it can use a different class */
|
/* TODO: Review mx_GeneralButton usage to see if it can use a different class */
|
||||||
|
|
Loading…
Reference in a new issue