Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

[Backport staging] Remove the glass border from modal spinners #12369

Merged
merged 1 commit into from
Mar 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 16 additions & 8 deletions res/css/_common.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

.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;
/* 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 */
Expand Down
Loading