diff options
author | Jochen <rothjochen@gmail.com> | 2019-09-06 20:02:19 +0200 |
---|---|---|
committer | Jochen <rothjochen@gmail.com> | 2019-09-06 20:02:19 +0200 |
commit | ba8acfe2d49e511fe8f3948d78325987bde37cd3 (patch) | |
tree | 4b9b8bda93dd4334c643a3c11b622eee4da59ab1 /core/css | |
parent | a1c83c12d01390face86ac7114d3932e10cb5ace (diff) | |
download | nextcloud-server-ba8acfe2d49e511fe8f3948d78325987bde37cd3.tar.gz nextcloud-server-ba8acfe2d49e511fe8f3948d78325987bde37cd3.zip |
Optimize responsiveness, remove primary class
Signed-off-by: Jochen <rothjochen@gmail.com>
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/guest.css | 27 |
1 files changed, 21 insertions, 6 deletions
diff --git a/core/css/guest.css b/core/css/guest.css index 4881dca1588..1f12fd69b0a 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -97,20 +97,19 @@ body { } .wrapper { - width: 300px; + max-width: 100%; margin-top: 10vh; } /* Default FORM */ form { position: relative; - width: 280px; margin: auto; padding: 0; } form fieldset { - margin-bottom: 20px; - text-align: left; + width: 260px; + margin: auto auto 20px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -156,25 +155,34 @@ form #datadirField legend { #alternative-logins { margin: 30px 15px 20px; display: block; + min-width: 260px; + max-width: 400px; + overflow: hidden; } #alternative-logins a { margin: 10px 5px; display: block; font-size: 15px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } #alternative-logins a::before { content: ""; background-repeat: no-repeat; background-size: contain; - width: 18px; + width: 0; height: 18px; display: inline-block; vertical-align: bottom; - margin-right: 5px; } +#alternative-logins .button { + color: #0082c9; + padding: 12px 20px; +} @media only screen and (max-width: 1024px) { .wrapper { @@ -183,6 +191,9 @@ form #datadirField legend { #alternative-logins { margin: 30px 15px 10px; } + #alternative-logins .label-prefix { + display: none; + } } @@ -198,6 +209,10 @@ form #datadirField legend { applied to the button instead. */ } +#submit-wrapper { + margin: 0 auto; +} + #submit-wrapper input.login:hover ~ .submit-icon.icon-confirm-white, #submit-wrapper input.login:focus ~ .submit-icon.icon-confirm-white, #submit-wrapper input.login:active ~ .submit-icon.icon-confirm-white { |