Fix spinner position when UI is RTL *and spin it backwards*

(closes #3794)
This commit is contained in:
Bryan Housel
2017-01-25 11:44:10 -05:00
parent d0ee1579e9
commit 99594c19e6

View File

@@ -3666,6 +3666,21 @@ img.tile-removing {
border-radius: 4px 0 0 4px;
}
[dir='rtl'] .spinner {
float: left;
}
[dir='rtl'] .spinner img {
margin-left: 10px;
margin-right: auto;
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: "FlipH";
}
/* footer */
[dir='rtl'] #scale-block {
float: right;