Incorrect text alignment for select elements when parent node has text-align: right
Actual: text squished to the right, overlaps the dropdown arrow
Expected: text looks normal, just the select is positioned to the right
Workaround:
.rfdSelect,
.rfdSelectBoxDropDown
{
text-align: left;
}
.rfdRtl .rfdSelect
{
text-align: right;
}