Created by: AlexandreBroudin
Currently, adding a pull-right/left class in a RTL layout does not have sens.
You have to do this :
.rtl {
.pull-left {
float: right;
}
.pull-right {
float: left;
}
}
So, by changing -right to -direction and -left by -origin, you don't have this problem
.pull-origin {
float: left;
}
.pull-direction {
float: right;
}
.rtl {
.pull-origin {
float: right;
}
.pull-direction {
float: left;
}
}