mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-09-05 20:24:26 +08:00
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:
parent
ee96339fed
commit
90b1a109b0
2 changed files with 6 additions and 3 deletions
|
@ -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: ->
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue