angular-loading-bar icon indicating copy to clipboard operation
angular-loading-bar copied to clipboard

RTL Support

Open Sobiru opened this issue 9 years ago • 3 comments

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.

Sobiru avatar Jul 12 '16 10:07 Sobiru

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

chieffancypants avatar Jul 22 '16 18:07 chieffancypants

This extra CSS worked for me:

html[dir=rtl] #loading-bar .bar {
  left: auto;
  right: 0;
}

zhibek avatar Jul 04 '17 15:07 zhibek

html[dir=rtl] #loading-bar .bar {
  left: auto;
  right: 0;
}

html[dir=rtl] #loading-bar .bar .peg {
  right: auto;
  left: 0;
}

zvizvi avatar Dec 20 '18 14:12 zvizvi