mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
4c9d9289ef
No ref - Changed copy-url button style in browser view - Changed send-test-email input and button style in email view - Moved error notification for invalid email - Changed "Saved" notification style
22 lines
884 B
Handlebars
22 lines
884 B
Handlebars
<div class="modal-body modal-preview-email-content gh-pe-mobile-container h-auto overflow-auto">
|
|
<div class="gh-pe-mobile-bezel">
|
|
<div class="gh-pe-mobile-screen">
|
|
<iframe class="gh-post-preview-iframe" src={{@post.previewUrl}}></iframe>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="gh-post-preview-browser-footer">
|
|
<span class="mr3 nowrap fw6 f8 darkgrey">Share preview privately</span>
|
|
<div class="gh-post-preview-url-container truncate">
|
|
<span class="db truncate w-90">{{@post.previewUrl}}</span>
|
|
</div>
|
|
<button type="button" {{on "click" (perform this.copyPreviewUrl)}} class="gh-btn gh-btn-green gh-btn-icon gh-post-preview-copy-url-trigger">
|
|
<span>
|
|
{{#if this.copyPreviewUrl.isRunning}}
|
|
Copied!
|
|
{{else}}
|
|
copy
|
|
{{/if}}
|
|
</span>
|
|
</button>
|
|
</div> |