diff options
author | Vincent Petry <pvince81@owncloud.com> | 2016-06-16 14:33:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-16 14:33:01 +0200 |
commit | 453a038e9c47d125d1a8ded93f38d082ce1cf228 (patch) | |
tree | 16f6fe98f7f3e2705d3d95ef3e22e019856a4626 | |
parent | d7f98fcdefe3214a5ceeb0d38b45aead6a5c8e2e (diff) | |
parent | 44910510f6f7947b8456b03f3e0c384e77b24644 (diff) | |
download | nextcloud-server-453a038e9c47d125d1a8ded93f38d082ce1cf228.tar.gz nextcloud-server-453a038e9c47d125d1a8ded93f38d082ce1cf228.zip |
Merge pull request #25142 from owncloud/fix-grouped-inputs
fix grouped input fields, make sure they take precedence
-rw-r--r-- | core/css/styles.css | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 0d7a5576e0c..32d4deb79e3 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -374,26 +374,26 @@ a.two-factor-cancel { } #body-login .grouptop input, .grouptop input { - margin-bottom: 0; - border-bottom: 0; - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; + margin-bottom: 0 !important; + border-bottom: 0 !important; + border-bottom-left-radius: 0 !important; + border-bottom-right-radius: 0 !important; } #body-login .groupmiddle input, .groupmiddle input { - margin-top: 0; - margin-bottom: 0; - border-top: 0; - border-bottom: 0; - border-radius: 0; + margin-top: 0 !important; + margin-bottom: 0 !important; + border-top: 0 !important; + border-bottom: 0 !important; + border-radius: 0 !important; box-shadow: 0 1px 0 rgba(0,0,0,.1) inset !important; } #body-login .groupbottom input, .groupbottom input { - margin-top: 0; - border-top: 0; - border-top-right-radius: 0; - border-top-left-radius: 0; + margin-top: 0 !important; + border-top: 0 !important; + border-top-right-radius: 0 !important; + border-top-left-radius: 0 !important; box-shadow: 0 1px 0 rgba(0,0,0,.1) inset !important; } #body-login .groupbottom input[type=submit] { |