Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

css .aligned label miss with rtl languages original css #69

Open
oalamoudi opened this issue Jul 30, 2016 · 2 comments
Open

css .aligned label miss with rtl languages original css #69

oalamoudi opened this issue Jul 30, 2016 · 2 comments

Comments

@oalamoudi
Copy link

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
Copy link
Author

@s-block

@oalamoudi
Copy link
Author

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant