diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-08-29 16:05:18 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-11-28 13:50:57 +0100 |
commit | 1a18b4803724d45a6f0756a22d72f0ea6a243322 (patch) | |
tree | e7cb4aa00f07c8fc7185bcdd467fc834135133a1 /core/css | |
parent | ee69dc128a856f14419cb20b3cced4baf495d7cb (diff) | |
download | nextcloud-server-1a18b4803724d45a6f0756a22d72f0ea6a243322.tar.gz nextcloud-server-1a18b4803724d45a6f0756a22d72f0ea6a243322.zip |
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.css | 4 | ||||
-rw-r--r-- | core/css/inputs.scss | 2 |
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) { |