FIX: differentiates flag-modal and flag-modal-body (#9187)
This was causing body styles to be applied on the whole modal.
This commit is contained in:
parent
b7fb6d0d06
commit
8290856a4b
|
@ -1,4 +1,4 @@
|
||||||
{{#d-modal-body class="flag-modal" title=title}}
|
{{#d-modal-body class="flag-modal-body" title=title}}
|
||||||
<form>
|
<form>
|
||||||
{{#flag-selection nameKey=selected.name_key flags=flagsAvailable as |f|}}
|
{{#flag-selection nameKey=selected.name_key flags=flagsAvailable as |f|}}
|
||||||
{{flag-action-type flag=f
|
{{flag-action-type flag=f
|
||||||
|
|
|
@ -594,7 +594,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.flag-modal {
|
.flag-modal-body {
|
||||||
max-height: 450px;
|
max-height: 450px;
|
||||||
.flag-action-type-details {
|
.flag-action-type-details {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
|
@ -79,7 +79,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-device-width: 568px) {
|
@media only screen and (max-device-width: 568px) {
|
||||||
.modal .flag-modal .flag-message {
|
.modal .flag-modal-body .flag-message {
|
||||||
height: 3em;
|
height: 3em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue