Set primary action button color to same as theming color

Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
Jan-Christoph Borchardt 2017-08-29 16:05:18 +02:00
parent badbab81ea
commit 2e6d1a3453
3 changed files with 5 additions and 6 deletions

View File

@ -60,8 +60,7 @@
} }
input.primary { input.primary {
background-color: nc-lighten($color-primary, .9); background-color: $color-primary;
border: 1px solid $color-primary;
color: $color-primary-text; color: $color-primary-text;
} }

View File

@ -213,8 +213,8 @@ input.update-continue {
} }
input.primary, input.primary,
button.primary { button.primary {
border: 1px solid #0082c9; border: 1px solid #fff;
background-color: #00a2e9; background-color: #0082c9;
color: #fff; color: #fff;
} }

View File

@ -66,8 +66,8 @@ textarea,
} }
/* Primary action button, use sparingly */ /* Primary action button, use sparingly */
&.primary { &.primary {
border: 1px solid $color-primary; border: 1px solid #fff;
background-color: rgba($color-primary, .7); background-color: $color-primary;
color: $color-primary-text; color: $color-primary-text;
cursor: pointer; cursor: pointer;
&:not(:disabled) { &:not(:disabled) {