mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 06:43:40 +08:00
9830c40386
This commit also standardize the naming pattern of modals: `<Chat::Modal::FooBar />` and changes css class accordingly. Co-authored-by: David Taylor <david@taylorhq.com>
35 lines
565 B
SCSS
35 lines
565 B
SCSS
.chat-modal-new-message {
|
|
& + .modal-backdrop {
|
|
opacity: 1;
|
|
background: transparent;
|
|
}
|
|
|
|
.modal-body {
|
|
padding: 0;
|
|
}
|
|
|
|
.modal-header {
|
|
display: none;
|
|
}
|
|
|
|
.modal-inner-container {
|
|
width: var(--modal-max-width);
|
|
box-shadow: var(--shadow-dropdown);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mobile-device & {
|
|
.modal-inner-container {
|
|
border-radius: 0;
|
|
margin: 0 auto auto auto;
|
|
box-shadow: var(--shadow-modal);
|
|
}
|
|
}
|
|
|
|
.not-mobile-device & {
|
|
.modal-inner-container {
|
|
margin: 10px auto auto auto;
|
|
}
|
|
}
|
|
}
|