2019-03-13 21:52:09 +00:00
|
|
|
<div class="message {{type.class}}">
|
|
|
|
<div class="columns is-mobile is-variable is-1">
|
|
|
|
<div class="column is-narrow message-icon">
|
2019-05-13 19:05:25 +00:00
|
|
|
<Icon
|
|
|
|
aria-hidden="true"
|
2019-05-16 19:49:38 +00:00
|
|
|
@size="l"
|
2019-05-13 19:05:25 +00:00
|
|
|
@glyph="{{type.glyph}}"
|
|
|
|
/>
|
2019-03-13 21:52:09 +00:00
|
|
|
</div>
|
|
|
|
<div class="column">
|
|
|
|
<button type="button" class="close-button" {{action close}}>
|
2019-05-13 19:05:25 +00:00
|
|
|
<Icon
|
|
|
|
@glyph="cancel-plain"
|
|
|
|
@aria-label="Close"
|
|
|
|
/>
|
2019-03-13 21:52:09 +00:00
|
|
|
</button>
|
|
|
|
<div class="message-title">
|
|
|
|
{{type.text}}
|
|
|
|
</div>
|
|
|
|
{{#if message}}
|
2019-07-02 22:41:23 +00:00
|
|
|
<p class="message-body {{if @isPreformatted 'pre'}}" data-test-flash-message-body="true">{{message}}</p>
|
2019-03-13 21:52:09 +00:00
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|