[Rt-commit] rt branch, 4.4/login-form-alignment, created. rt-4.4.3-39-g93958b856
? sunnavy
sunnavy at bestpractical.com
Wed Sep 5 16:31:09 EDT 2018
The branch, 4.4/login-form-alignment has been created
at 93958b8569b069f65f62ba20ea6090d4698a78b4 (commit)
- Log -----------------------------------------------------------------
commit 93958b8569b069f65f62ba20ea6090d4698a78b4
Author: Jim Brandt <jbrandt at bestpractical.com>
Date: Tue Aug 28 08:32:01 2018 -0400
Better align input boxes and login button
Input boxes have "left: 1em" css, which pushes their right edge 1em off,
so we need to push the button 1em accordingly(i.e. margin-right: -1em)
diff --git a/share/static/css/rudder/login.css b/share/static/css/rudder/login.css
index 889cb0e96..d21192aca 100644
--- a/share/static/css/rudder/login.css
+++ b/share/static/css/rudder/login.css
@@ -3,5 +3,14 @@
}
#login-box .input-row .label {
- width: 13em
+ width: 10.5em
+}
+
+#login-box div.button-row {
+ padding-right: 0;
+ margin-top: 1em;
+}
+
+#login-box .button {
+ margin-right: -1em;
}
-----------------------------------------------------------------------
More information about the rt-commit
mailing list