Set primary action button color to same as theming color
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
parent
badbab81ea
commit
2e6d1a3453
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue