Use vertical layout for MessageListHeaders, MessageListNotificationBar, Draft:Footer

Test Plan: No new tests. Visual verification.

Reviewers: bengotow

Reviewed By: bengotow

Differential Revision: https://phab.nylas.com/D2514
This commit is contained in:
Bernd Verst 2016-02-03 14:25:48 -08:00
parent ee96339fed
commit 90b1a109b0
2 changed files with 6 additions and 3 deletions

View file

@ -374,7 +374,8 @@ class ComposerView extends React.Component
<div className="composer-footer-region">
<InjectedComponentSet
matching={role: "Composer:Footer"}
exposedProps={draftClientId:@props.draftClientId, threadId: @props.threadId}/>
exposedProps={draftClientId:@props.draftClientId, threadId: @props.threadId}
direction="column"/>
</div>
_renderAttachments: ->

View file

@ -201,11 +201,13 @@ class MessageList extends React.Component
<InjectedComponentSet
className="message-list-notification-bars"
matching={role:"MessageListNotificationBar"}
exposedProps={thread: @state.currentThread}/>
exposedProps={thread: @state.currentThread}
direction="column"/>
<InjectedComponentSet
className="message-list-headers"
matching={role:"MessageListHeaders"}
exposedProps={thread: @state.currentThread}/>
exposedProps={thread: @state.currentThread}
direction="column"/>
</div>
{@_messageElements()}
</ScrollRegion>