django-nested-inline icon indicating copy to clipboard operation
django-nested-inline copied to clipboard

css .aligned label miss with rtl languages original css

Open oalamoudi opened this issue 9 years ago • 2 comments

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

oalamoudi avatar Jul 30 '16 13:07 oalamoudi

@s-block

oalamoudi avatar Jul 30 '16 13:07 oalamoudi

I think if you just deleted all the floats left or right you will be in the safe side @s-block

oalamoudi avatar Jul 30 '16 13:07 oalamoudi