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) input.form-control(type='text', #input, [(ngModel)]='value', (keyup.enter)='save()', autofocus)
.modal-footer .modal-footer
button.btn.btn-outline-primary((click)='save()') Save button.btn.btn-primary((click)='save()') Save
button.btn.btn-outline-secondary((click)='close()') Cancel button.btn.btn-secondary((click)='close()') Cancel

View File

@ -4,4 +4,4 @@
pre {{error}} pre {{error}}
.modal-footer .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); @include button-outline-variant(#9badb9, #fff);
&:hover:not([disabled]), &:active:not([disabled]), &.active:not([disabled]) { &:hover:not([disabled]), &:active:not([disabled]), &.active:not([disabled]) {
background-color: #3f484e; background-color: #3f484e;

View File

@ -4,7 +4,7 @@
.d-flex .d-flex
h3.mb-1 Installed 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 i.fas.fa-folder
span Plugins folder span Plugins folder

View File

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

View File

@ -9,4 +9,4 @@
div([style.width]='timeoutProgress + "%"') div([style.width]='timeoutProgress + "%"')
.modal-footer .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 i.fas.fa-eye
.modal-footer .modal-footer
button.btn.btn-outline-primary((click)='ok()') Set passphrase button.btn.btn-primary((click)='ok()') Set passphrase
button.btn.btn-outline-danger((click)='cancel()') Cancel 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 .content
ul.nav-pills(ngbNav, #nav='ngbNav', [activeId]='activeTab', orientation='vertical') ul.nav-pills(ngbNav, #nav='ngbNav', [activeId]='activeTab', orientation='vertical')

View File

@ -3,4 +3,4 @@
.no-wrap {{progressMessage}} .no-wrap {{progressMessage}}
.modal-footer .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 .title Password
.description(*ngIf='!hasSavedPassword') Save a password in the keychain .description(*ngIf='!hasSavedPassword') Save a password in the keychain
.description(*ngIf='hasSavedPassword') There is a saved password for this connection .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 i.fas.fa-key
span Set password span Set password
button.btn.btn-danger.ml-4(*ngIf='hasSavedPassword', (click)='clearSavedPassword()') button.btn.btn-danger.ml-4(*ngIf='hasSavedPassword', (click)='clearSavedPassword()')