Fix #157: Make draft column scrollable on overflow.

This commit is contained in:
Nicolas Perriault 2017-05-14 12:53:13 +02:00
parent 60ba13158d
commit d5f69c18fd
No known key found for this signature in database
GPG Key ID: DA5E4C83904F7A2A
2 changed files with 5 additions and 1 deletions

View File

@ -389,6 +389,10 @@ li.load-more {
/* Draft form */
.draft .panel-body {
overflow: auto;
}
.form {
clear: both;
}

View File

@ -168,7 +168,7 @@ draftView ({ draft, currentUser } as model) =
else
"Post a message"
]
, div [ class "panel-body" ]
, div [ class "panel-body timeline" ]
[ currentUserView currentUser
, draftReplyToView draft
, Html.form [ class "form", onSubmit SubmitDraft ]