diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-08-29 16:05:18 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-08-29 16:05:18 +0200 |
commit | 2e6d1a3453abf6dda86b981b7e69ae77079a9d01 (patch) | |
tree | fc27a4f89f5927649b4fa3d4fa4e663671ad63a3 | |
parent | badbab81eacd3f4a8242fe23feb5319ee4247027 (diff) | |
download | nextcloud-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>
-rw-r--r-- | apps/theming/css/theming.scss | 3 | ||||
-rw-r--r-- | core/css/guest.css | 4 | ||||
-rw-r--r-- | core/css/inputs.scss | 4 |
3 files changed, 5 insertions, 6 deletions
diff --git a/apps/theming/css/theming.scss b/apps/theming/css/theming.scss index 252d009289e..339bf8a58b9 100644 --- a/apps/theming/css/theming.scss +++ b/apps/theming/css/theming.scss @@ -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; } 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) { |