summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2017-08-29 16:05:18 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2017-08-29 16:05:18 +0200
commit2e6d1a3453abf6dda86b981b7e69ae77079a9d01 (patch)
treefc27a4f89f5927649b4fa3d4fa4e663671ad63a3 /core
parentbadbab81eacd3f4a8242fe23feb5319ee4247027 (diff)
downloadnextcloud-server-2e6d1a3453abf6dda86b981b7e69ae77079a9d01.tar.gz
nextcloud-server-2e6d1a3453abf6dda86b981b7e69ae77079a9d01.zip
Set primary action button color to same as theming color
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'core')
-rw-r--r--core/css/guest.css4
-rw-r--r--core/css/inputs.scss4
2 files changed, 4 insertions, 4 deletions
diff --git a/core/css/guest.css b/core/css/guest.css
index a58121508ab..e9713b6b8c5 100644
--- a/core/css/guest.css
+++ b/core/css/guest.css
@@ -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;
}
diff --git a/core/css/inputs.scss b/core/css/inputs.scss
index 3ea90d322bb..cd1e6a4257c 100644
--- a/core/css/inputs.scss
+++ b/core/css/inputs.scss
@@ -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) {