FIX: Bookmark delete button alignment in modal-footer (#14087)
The commit cd38ec2a4d
broke
the bookmark delete button alignment in the modal.
This commit is contained in:
parent
052c78381b
commit
2bf2d799c3
|
@ -51,9 +51,7 @@
|
|||
{{d-button id="save-bookmark" label="bookmarks.save" class="btn-primary" action=(action "saveAndClose")}}
|
||||
{{d-modal-cancel close=(action "closeWithoutSavingBookmark")}}
|
||||
{{#if showDelete}}
|
||||
<div class="pull-right">
|
||||
{{d-button id="delete-bookmark" icon="trash-alt" class="btn-danger" action=(action "delete")}}
|
||||
</div>
|
||||
{{d-button id="delete-bookmark" icon="trash-alt" class="delete-bookmark btn-danger" action=(action "delete")}}
|
||||
{{/if}}
|
||||
</div>
|
||||
{{/conditional-loading-spinner}}
|
||||
|
|
|
@ -7,6 +7,10 @@
|
|||
margin: 0;
|
||||
border-top: 0;
|
||||
padding: 10px 0;
|
||||
|
||||
.delete-bookmark {
|
||||
margin-left: auto;
|
||||
}
|
||||
}
|
||||
.modal-body {
|
||||
width: 375px;
|
||||
|
|
Loading…
Reference in New Issue