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 {
background-color: nc-lighten($color-primary, .9);
border: 1px solid $color-primary;
background-color: $color-primary;
color: $color-primary-text;
}

View File

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

View File

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