Browse Source

Fixed the cancel button.

pull/103/head
Sebastian Stehle 8 years ago
parent
commit
1734f3b78b
  1. 2
      src/Squidex/app/features/schemas/pages/schema/schema-page.component.html
  2. 8
      src/Squidex/app/theme/_vars.scss

2
src/Squidex/app/features/schemas/pages/schema/schema-page.component.html

@ -70,7 +70,7 @@
</div> </div>
<button type="submit" class="btn btn-success" [disabled]="!hasName">Add Field</button> <button type="submit" class="btn btn-success" [disabled]="!hasName">Add Field</button>
<button type="button" class="btn btn-secondary" (click)="cancelAddField()">Cancel</button> <button type="button" class="btn btn-link" (click)="cancelAddField()">Cancel</button>
</div> </div>
<div> <div>

8
src/Squidex/app/theme/_vars.scss

@ -53,14 +53,14 @@ $color-dark2-placeholder: #757e8d;
$color-panel-icon: #a2b0b6; $color-panel-icon: #a2b0b6;
$color-badge-success-background: #d6ffdb; $color-badge-success-background: #e4f6e6;
$color-badge-success-foreground: #3bab48; $color-badge-success-foreground: #4cc159;
$color-badge-warning-background: #ffe8cc; $color-badge-warning-background: #ffe8cc;
$color-badge-warning-foreground: #efa243; $color-badge-warning-foreground: #efa243;
$color-badge-danger-background: #fcc; $color-badge-danger-background: #fce0e3;
$color-badge-danger-foreground: #ef4343; $color-badge-danger-foreground: #f56a76;
$color-badge-info-background: #d0f2fb; $color-badge-info-background: #d0f2fb;
$color-badge-info-foreground: #43ccef; $color-badge-info-foreground: #43ccef;

Loading…
Cancel
Save