FIX: ensures local-dates modal is not taking full height on mobile (#7772)

This commit is contained in:
Joffrey JAFFEUX 2019-06-16 08:48:07 +02:00 committed by GitHub
parent 48b9e0d749
commit 32cd9ba59b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -297,14 +297,16 @@
}
html:not(.mobile-view) {
.discourse-local-dates-create-modal.modal-body {
.fixed-modal .discourse-local-dates-create-modal.modal-body {
width: 600px;
max-height: 400px;
max-height: 400px !important;
}
}
html.mobile-view {
.discourse-local-dates-create-modal.modal-body {
.fixed-modal .discourse-local-dates-create-modal.modal-body {
max-height: 400px !important;
.date-time-configuration {
flex-direction: column;
}