1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-24 07:39:43 +02:00

Remove usage of outline success button styling

All positive/success button actions should be solid green.
This commit is contained in:
sauls8t 2018-02-04 15:46:11 +00:00
parent bd9b7e120e
commit 1370b2f2b5
2 changed files with 2 additions and 2 deletions

View file

@ -33,7 +33,7 @@
<div class="col-4 buttons text-right">
{{#if cat.editMode}}
<button type="button" class="btn btn-outline-secondary" {{action 'onEditCancel' cat.id}}>Cancel</button>
<button type="button" class="btn btn-outline-success" {{action 'onSave' cat.id}}>Save</button>
<button type="button" class="btn btn-success" {{action 'onSave' cat.id}}>Save</button>
{{else}}
<div id="category-access-button-{{cat.id}}" class="button-icon-gray align-middle" data-toggle="tooltip" data-placement="top" title="Category access" {{action 'onShowAccessPicker' cat.id}}>
<i class="material-icons">security</i>

View file

@ -69,7 +69,7 @@
</div>
<div class="modal-footer">
<button type="button" class="btn btn-outline-secondary" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-outline-success" onclick={{action 'setPermissions'}}>Save</button>
<button type="button" class="btn btn-success" onclick={{action 'setPermissions'}}>Save</button>
</div>
</div>
</div>