remove outline buttons

This commit is contained in:
Eugene Pankov 2021-07-14 00:21:23 +02:00
parent 57a198b082
commit cbd7c7c02f
10 changed files with 13 additions and 13 deletions

View file

@ -2,5 +2,5 @@
input.form-control(type='text', #input, [(ngModel)]='value', (keyup.enter)='save()', autofocus)
.modal-footer
button.btn.btn-outline-primary((click)='save()') Save
button.btn.btn-outline-secondary((click)='close()') Cancel
button.btn.btn-primary((click)='save()') Save
button.btn.btn-secondary((click)='close()') Cancel

View file

@ -4,4 +4,4 @@
pre {{error}}
.modal-footer
button.btn.btn-outline-primary((click)='close()') Close
button.btn.btn-primary((click)='close()') Close

View file

@ -306,7 +306,7 @@ search-panel {
}
}
.btn.btn-outline-secondary {
.btn.btn-secondary {
@include button-outline-variant(#9badb9, #fff);
&:hover:not([disabled]), &:active:not([disabled]), &.active:not([disabled]) {
background-color: #3f484e;

View file

@ -4,7 +4,7 @@
.d-flex
h3.mb-1 Installed
button.btn.btn-outline-secondary.btn-sm.ml-auto((click)='openPluginsFolder()')
button.btn.btn-secondary.btn-sm.ml-auto((click)='openPluginsFolder()')
i.fas.fa-folder
span Plugins folder

View file

@ -61,5 +61,5 @@
ng-template(#placeholder)
.modal-footer
button.btn.btn-outline-primary((click)='save()') Save
button.btn.btn-outline-danger((click)='cancel()') Cancel
button.btn.btn-primary((click)='save()') Save
button.btn.btn-danger((click)='cancel()') Cancel

View file

@ -9,4 +9,4 @@
div([style.width]='timeoutProgress + "%"')
.modal-footer
button.btn.btn-outline-primary((click)='close()') Cancel
button.btn.btn-primary((click)='close()') Cancel

View file

@ -16,5 +16,5 @@ h3.modal-header.m-0.pb-0 Set master passphrase
i.fas.fa-eye
.modal-footer
button.btn.btn-outline-primary((click)='ok()') Set passphrase
button.btn.btn-outline-danger((click)='cancel()') Cancel
button.btn.btn-primary((click)='ok()') Set passphrase
button.btn.btn-danger((click)='cancel()') Cancel

View file

@ -1,4 +1,4 @@
button.btn.btn-outline-warning.btn-block(*ngIf='config.restartRequested', '(click)'='restartApp()') Restart the app to apply changes
button.btn.btn-warning.btn-block(*ngIf='config.restartRequested', '(click)'='restartApp()') Restart the app to apply changes
.content
ul.nav-pills(ngbNav, #nav='ngbNav', [activeId]='activeTab', orientation='vertical')

View file

@ -3,4 +3,4 @@
.no-wrap {{progressMessage}}
.modal-footer
button.btn.btn-outline-danger((click)='cancel()') Cancel
button.btn.btn-danger((click)='cancel()') Cancel

View file

@ -61,7 +61,7 @@ ul.nav-tabs(ngbNav, #nav='ngbNav')
.title Password
.description(*ngIf='!hasSavedPassword') Save a password in the keychain
.description(*ngIf='hasSavedPassword') There is a saved password for this connection
button.btn.btn-outline-success.ml-4(*ngIf='!hasSavedPassword', (click)='setPassword()')
button.btn.btn-success.ml-4(*ngIf='!hasSavedPassword', (click)='setPassword()')
i.fas.fa-key
span Set password
button.btn.btn-danger.ml-4(*ngIf='hasSavedPassword', (click)='clearSavedPassword()')