mirror of
https://github.com/discourse/discourse.git
synced 2024-12-13 22:45:47 +08:00
407ff39fdf
1. recent css regression related to modal upgrade 2. autofocus and on-enter regressions 3. array related linting issue (reliance on Ember's firstObject/lastObject)
34 lines
578 B
SCSS
34 lines
578 B
SCSS
.poll-ui-builder.modal {
|
|
.modal-inner-container {
|
|
width: 40em; // scale with user font-size
|
|
max-width: 100vw; // prevent overflow if user font-size is enormous
|
|
}
|
|
|
|
.modal-body {
|
|
max-height: unset;
|
|
}
|
|
|
|
.poll-number {
|
|
margin-right: 10px;
|
|
|
|
&:last-of-type {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
.options {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.column {
|
|
display: inline-block;
|
|
width: calc(50% - 10px);
|
|
}
|
|
|
|
.d-editor-preview {
|
|
margin-top: 5px;
|
|
padding-top: 5px;
|
|
border-top: 1px solid var(--primary-low);
|
|
}
|
|
}
|