diff options
author | Vincent Petry <vincent@nextcloud.com> | 2022-09-22 20:31:38 +0200 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2022-09-24 06:20:49 +0000 |
commit | d358efc7f938a2f79cf8df8b8b00356d55c0df58 (patch) | |
tree | e46d2b4059a89196ac008d2d0e6323591c77b90a /core/css | |
parent | b8912153db4448228f7157da2155c3d5207949a9 (diff) | |
download | nextcloud-server-d358efc7f938a2f79cf8df8b8b00356d55c0df58.tar.gz nextcloud-server-d358efc7f938a2f79cf8df8b8b00356d55c0df58.zip |
Fix install page
- Use normal labels instead of hiding them
- Fix position of the eye button (this is still very hacky)
- Define width on the box and not on the text fields
This really needs to be ported to vue
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/guest.css | 32 |
1 files changed, 28 insertions, 4 deletions
diff --git a/core/css/guest.css b/core/css/guest.css index b120d46a5c8..3883d66000e 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -105,12 +105,36 @@ form { margin: auto; padding: 0; } +form.install-form { + max-width: 300px; +} + +form.install-form fieldset, +form.install-form fieldset input { + width: 100%; +} +form.install-form .strengthify-wrapper { + bottom: 17px; + width: calc(100% - 8px); + left: 4px; + top: unset; +} + +form.install-form #show { + top: 18px; +} + form #sqliteInformation { - margin-top: 0px; + margin-top: 0.5rem; margin-bottom: 20px; } -form #adminaccount { +form #adminaccount, form #use_other_db { margin-bottom: 15px; + text-align: left; +} +form #adminaccount > legend, +form #adminlogin { + margin-bottom: 1rem; } form #advancedHeader { width: 100%; @@ -335,7 +359,7 @@ input[type='checkbox'].checkbox--white:checked + label:before { display: inline-block; position: relative; top: -20px; - width: 286px; + width: 250px; border-radius: 0 0 3px 3px; overflow: hidden; height: 3px; @@ -350,7 +374,7 @@ input[type='checkbox'].checkbox--white:checked + label:before { #show, #dbpassword-toggle { position: absolute; right: 2px; - top: 4px; + top: -3px; display: flex; justify-content: center; width: 44px; |