Added min/max height to edit post modal and allowed suggestion list to overflow (#2674)

Этот коммит содержится в:
Harrison Healey
2016-04-11 13:43:07 -04:00
коммит произвёл Corey Hulen
родитель 2c9e184b8c
Коммит af6c85cb62

Просмотреть файл

@@ -14,13 +14,18 @@
max-height: calc(90vh - 62px); max-height: calc(90vh - 62px);
overflow: auto; overflow: auto;
padding: 20px 15px; padding: 20px 15px;
}
.edit-modal-body { .edit-modal-body {
overflow: visible; overflow: visible;
.suggestion-list__content { .custom-textarea {
max-height: 150px; min-height: 8em;
} max-height: 60vh;
}
.suggestion-list__content {
max-height: 150px;
} }
} }