Merge pull request #7322 from nextcloud/12-6303

[stable12] Set primary action button color to same as theming color
This commit is contained in:
Morris Jobke 2017-12-04 11:12:51 +01:00 committed by GitHub
commit b1b02d3b3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -86,7 +86,7 @@
input.primary {
background-color: $color-primary-element;
border: 1px solid $color-primary;
border: 1px solid $color-primary-text;
color: $color-primary-text;
}

View File

@ -191,8 +191,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

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