angular-loading-bar
angular-loading-bar copied to clipboard
RTL Support
Hello,
Is there any option to make the loading bar go from right to left? This is extremely useful for apps that are in RTL langauges. I tried setting direction: rtl to the outer div but that didn't work.
Thanks in advance.
Wait, RTL languages also reverse the direction of progress bars? Just a guess, but maybe you can transform:rotate(180) the progress bar so it's flipped upside-down? and therefore will appear to pulse in the opposite direction
This extra CSS worked for me:
html[dir=rtl] #loading-bar .bar {
left: auto;
right: 0;
}
html[dir=rtl] #loading-bar .bar {
left: auto;
right: 0;
}
html[dir=rtl] #loading-bar .bar .peg {
right: auto;
left: 0;
}