diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-10-04 17:37:20 +0300 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-10-04 17:37:20 +0300 |
commit | 0c53269b5e53271c4cfcf9fb332454d2934a4b39 (patch) | |
tree | 88badb3e2a9241932bd9a069472d94729bed52f8 | |
parent | da0db7bcb28dc49e7157c56b758f1d2c8d59fe5b (diff) | |
download | nextcloud-server-0c53269b5e53271c4cfcf9fb332454d2934a4b39.tar.gz nextcloud-server-0c53269b5e53271c4cfcf9fb332454d2934a4b39.zip |
remove specific border-radius for .primary button as it should be specific to log in instead
-rw-r--r-- | core/css/styles.css | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index e0ac951a054..28ae23f97c9 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -126,7 +126,6 @@ a.disabled, a.disabled:hover, a.disabled:focus { /* Primary action button, use sparingly */ .primary, input[type="submit"].primary, input[type="button"].primary, button.primary, .button.primary { border: 1px solid #1d2d44; - border-radius: 5px; background: #35537a; color: #ddd; } @@ -296,6 +295,9 @@ input[name="adminpass-clone"] { padding-left:1.8em; width:11.7em !important; } border: 1px solid #323233; border-radius: 5px; } +#body-login input[type='submit'] { + border-radius: 5px; +} /* Nicely grouping input field sets */ #body-login .grouptop input { |