Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core/css
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2017-08-29 17:05:18 +0300
committerMorris Jobke <hey@morrisjobke.de>2017-11-28 15:50:57 +0300
commit1a18b4803724d45a6f0756a22d72f0ea6a243322 (patch)
treee7cb4aa00f07c8fc7185bcdd467fc834135133a1 /core/css
parentee69dc128a856f14419cb20b3cced4baf495d7cb (diff)
Set primary action button color to same as theming color
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'core/css')
-rw-r--r--core/css/guest.css4
-rw-r--r--core/css/inputs.scss2
2 files changed, 3 insertions, 3 deletions
diff --git a/core/css/guest.css b/core/css/guest.css
index 2a300148419..e54b5f9a3b2 100644
--- a/core/css/guest.css
+++ b/core/css/guest.css
@@ -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;
}
diff --git a/core/css/inputs.scss b/core/css/inputs.scss
index 42b9f63b7e2..7a5e65a2631 100644
--- a/core/css/inputs.scss
+++ b/core/css/inputs.scss
@@ -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) {