This commit is contained in:
Eugene Pankov
2017-07-15 19:17:44 +02:00
parent 60ce10d1e3
commit ed0bfb39f3
2 changed files with 7 additions and 6 deletions

View File

@@ -23,6 +23,7 @@ $body-color: #aaa;
$font-family-sans-serif: "Source Sans Pro"; $font-family-sans-serif: "Source Sans Pro";
$font-size-base: 14rem / 16; $font-size-base: 14rem / 16;
$btn-border-radius: 0;
$btn-secondary-color: #ccc; $btn-secondary-color: #ccc;
$btn-secondary-bg: #222; $btn-secondary-bg: #222;
$btn-secondary-border: #444; $btn-secondary-border: #444;

View File

@@ -2,9 +2,9 @@ button.btn.btn-outline-warning.btn-block(*ngIf='config.restartRequested', '(clic
ngb-tabset.vertical(type='tabs') ngb-tabset.vertical(type='tabs')
ngb-tab ngb-tab
template(ngbTabTitle) ng-template(ngbTabTitle)
| Application | Application
template(ngbTabContent) ng-template(ngbTabContent)
.row .row
.col.col-lg-6 .col.col-lg-6
.form-group .form-group
@@ -153,9 +153,9 @@ ngb-tabset.vertical(type='tabs')
) )
ngb-tab ngb-tab
template(ngbTabTitle) ng-template(ngbTabTitle)
| Hotkeys | Hotkeys
template(ngbTabContent) ng-template(ngbTabContent)
input.form-control(type='search', placeholder='Search hotkeys', [(ngModel)]='hotkeyFilter') input.form-control(type='search', placeholder='Search hotkeys', [(ngModel)]='hotkeyFilter')
.form-group .form-group
table.hotkeys-table table.hotkeys-table
@@ -173,7 +173,7 @@ ngb-tabset.vertical(type='tabs')
) )
ngb-tab(*ngFor='let provider of settingsProviders') ngb-tab(*ngFor='let provider of settingsProviders')
template(ngbTabTitle) ng-template(ngbTabTitle)
| {{provider.title}} | {{provider.title}}
template(ngbTabContent) ng-template(ngbTabContent)
settings-tab-body([provider]='provider') settings-tab-body([provider]='provider')