Closed (fixed)
Project:
Address Field
Version:
7.x-1.x-dev
Component:
User interface
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
18 May 2013 at 18:37 UTC
Updated:
24 Jul 2013 at 18:31 UTC
Hello,
The address field doesn't float to the right and still has the margin to its right because the LTR rules take precedence, here's the fix:
@@ -1,10 +1,10 @@
-.addressfield-container-inline > div.form-item {
+div.addressfield-container-inline > div.form-item {
float: right;
margin-right: 0;
margin-left: 1em;
}
-.addressfield-container-inline.country-GB > div.form-item {
+div.addressfield-container-inline.country-GB > div.form-item {
margin-left: auto;
margin-right: 0;
}
Thanks,
Nabil
Comments
Comment #1
kadimi commentedComment #2
rszrama commentedCommitted.