diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-07-24 14:03:40 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-07-28 15:13:04 +0200 |
commit | 7cd1a48222b6e9c3b42df563b24e79f5a26a683f (patch) | |
tree | b4404769de15d0e672ca6a91320704bd20cb495f /core | |
parent | 0cabafb513fda8bc127032a4a97100ef26001933 (diff) | |
download | nextcloud-server-7cd1a48222b6e9c3b42df563b24e79f5a26a683f.tar.gz nextcloud-server-7cd1a48222b6e9c3b42df563b24e79f5a26a683f.zip |
enable input grouping also outside of log in screen
Diffstat (limited to 'core')
-rw-r--r-- | core/css/styles.css | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 40c1622ca26..17ed3fbc74c 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -444,13 +444,15 @@ input[name='password-clone'] { .groupbottom { position: relative; } -#body-login .grouptop input { +#body-login .grouptop input, +.grouptop input { margin-bottom: 0; border-bottom: 0; border-bottom-left-radius: 0; border-bottom-right-radius: 0; } -#body-login .groupmiddle input { +#body-login .groupmiddle input, +.groupmiddle input { margin-top: 0; margin-bottom: 0; border-top: 0; @@ -458,7 +460,8 @@ input[name='password-clone'] { border-radius: 0; box-shadow: 0 1px 0 rgba(0,0,0,.1) inset !important; } -#body-login .groupbottom input { +#body-login .groupbottom input, +.groupbottom input { margin-top: 0; border-top: 0; border-top-right-radius: 0; |