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 form */
.draft .panel-body {
overflow: auto;
}
.form { .form {
clear: both; clear: both;
} }

View File

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