Actions
Defect #31371
closed"Stay logged in" checkbox in Sign in page is misaligned after r18056
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Affected version:
Files
Related issues
Updated by Go MAEDA over 5 years ago
- Blocks Patch #31147: Add custom styles for all fields added
Updated by Marius BÄ‚LTEANU over 5 years ago
Here is the fix:
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css
index 11b9263..7bcdfaa 100644
--- a/public/stylesheets/application.css
+++ b/public/stylesheets/application.css
@@ -103,7 +103,8 @@ html>body #content { min-height: 600px; }
#login-form {margin:5em auto 2em auto; padding:20px; width:340px; border:1px solid #FDBF3B; background-color:#FFEBC1; border-radius:4px; box-sizing: border-box;}
#login-form label {display:block; margin-bottom:5px; font-weight:bold;}
#login-form label[for=autologin] {font-weight:normal;}
-#login-form input {display:block; width:100%; height: 29px;}
+#login-form input {height: 29px;}
+#login-form input[type=text], #login-form input[type=password], #login-form input[type=submit] {display: block; width: 100%;}
#login-form input[type=text], #login-form input[type=password] {margin-bottom: 15px;}
#login-form a.lost_password {float:right; font-weight:normal;}
#login-form input#openid_url {background:#fff url(../images/openid-bg.gif) no-repeat 4px 50%; padding-left:24px !important;}
Updated by Go MAEDA over 5 years ago
- Status changed from New to Closed
- Assignee set to Go MAEDA
- Resolution set to Fixed
Committed the patch. Thank you for writing the fix.
Actions