diff options
author | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-10-22 22:23:49 +0300 |
---|---|---|
committer | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-10-24 18:36:17 +0300 |
commit | 5eeaab562cc152c378aa43e152a36b9826fdfe7c (patch) | |
tree | bc39eb586c75eb0dfd186bbe8fc7b6d89f7c34f7 /phpBB/styles/prosilver | |
parent | 1638ff3cba881eb7bce2ffc29946db0644feaff2 (diff) | |
download | forums-5eeaab562cc152c378aa43e152a36b9826fdfe7c.tar forums-5eeaab562cc152c378aa43e152a36b9826fdfe7c.tar.gz forums-5eeaab562cc152c378aa43e152a36b9826fdfe7c.tar.bz2 forums-5eeaab562cc152c378aa43e152a36b9826fdfe7c.tar.xz forums-5eeaab562cc152c378aa43e152a36b9826fdfe7c.zip |
[ticket/11956] Responsive quick login form
PHPBB3-11956
Diffstat (limited to 'phpBB/styles/prosilver')
-rw-r--r-- | phpBB/styles/prosilver/template/index_body.html | 6 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/responsive.css | 24 |
2 files changed, 27 insertions, 3 deletions
diff --git a/phpBB/styles/prosilver/template/index_body.html b/phpBB/styles/prosilver/template/index_body.html index dd8af710aa..4565a2d7c7 100644 --- a/phpBB/styles/prosilver/template/index_body.html +++ b/phpBB/styles/prosilver/template/index_body.html @@ -25,10 +25,10 @@ <form method="post" action="{S_LOGIN_ACTION}" class="headerspace"> <h3><a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a><!-- IF S_REGISTER_ENABLED --> • <a href="{U_REGISTER}">{L_REGISTER}</a><!-- ENDIF --></h3> <fieldset class="quick-login"> - <label for="username">{L_USERNAME}{L_COLON}</label> <input type="text" name="username" id="username" size="10" class="inputbox" title="{L_USERNAME}" /> - <label for="password">{L_PASSWORD}{L_COLON}</label> <input type="password" name="password" id="password" size="10" class="inputbox" title="{L_PASSWORD}" /> + <label for="username"><span>{L_USERNAME}{L_COLON}</span> <input type="text" name="username" id="username" size="10" class="inputbox" title="{L_USERNAME}" /></label> + <label for="password"><span>{L_PASSWORD}{L_COLON}</span> <input type="password" name="password" id="password" size="10" class="inputbox" title="{L_PASSWORD}" /></label> <!-- IF S_AUTOLOGIN_ENABLED --> - | <label for="autologin">{L_LOG_ME_IN} <input type="checkbox" name="autologin" id="autologin" /></label> + <span class="responsive-hide">|</span> <label for="autologin">{L_LOG_ME_IN} <input type="checkbox" name="autologin" id="autologin" /></label> <!-- ENDIF --> <input type="submit" name="login" value="{L_LOGIN}" class="button2" /> {S_LOGIN_REDIRECT} diff --git a/phpBB/styles/prosilver/theme/responsive.css b/phpBB/styles/prosilver/theme/responsive.css index 322f11e291..693e6a4474 100644 --- a/phpBB/styles/prosilver/theme/responsive.css +++ b/phpBB/styles/prosilver/theme/responsive.css @@ -306,6 +306,30 @@ dl.pmlist dd:first-of-type { display: inline-block !important; } +fieldset.quick-login label { + display: block; + margin-bottom: 5px; + white-space: normal; +} + +fieldset.quick-login label > span { + display: inline-block; + min-width: 100px; +} + +fieldset.quick-login input.inputbox { + width: 85%; + max-width: 300px; + margin-left: 20px; +} + +fieldset.quick-login label[for="autologin"] { + display: inline-block; + text-align: right; + min-width: 50%; +} + + /* User profile ----------------------------------------*/ .column1, .column2, .left-box.profile-details { |