django-nested-inline
django-nested-inline copied to clipboard
css .aligned label miss with rtl languages original css
The problem is when dealing with rtl languages your custom css override the rtl.css file The Only problem I have seen where with label going all the way to the left Here is a quick fix
.aligned label {
display: block;
padding: 3px 10px 0 0;
float: left; /*delete this line to fix the problem line:66*/
width: 8em;
}
after deleting the cause of this problem float:left;
.aligned label {
display: block;
padding: 3px 10px 0 0;
width: 8em;
}
This is working well with rtl languages
@s-block
I think if you just deleted all the floats left or right you will be in the safe side @s-block