mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-05 12:16:53 +02:00
Remove the glass border from modal spinners (#12367)
It was not intentional, as these spinners are not a real dialog.
This commit is contained in:
parent
157ca48dff
commit
10526c92bb
@ -660,15 +660,23 @@ legend {
|
||||
}
|
||||
|
||||
/* Spinner Dialog overide */
|
||||
.mx_Dialog_wrapper.mx_Dialog_spinner .mx_Dialog {
|
||||
width: auto;
|
||||
border-radius: 8px;
|
||||
padding: 8px;
|
||||
box-shadow: none;
|
||||
.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;
|
||||
}
|
||||
|
||||
/* Don't show scroll-bars on spinner dialogs */
|
||||
overflow-x: hidden;
|
||||
overflow-y: hidden;
|
||||
.mx_Dialog {
|
||||
inline-size: auto;
|
||||
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 */
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user