Automated build for v0.01

This commit is contained in:
Fmstrat
2019-03-22 10:17:29 -04:00
commit 791b998489
2771 changed files with 222096 additions and 0 deletions

View File

@ -0,0 +1,20 @@
/* ProgressBar
*
* Styling of the ProgressBar when RTL direction is specified
*/
@import "variables";
.claro .dijitProgressBarRtl .dijitProgressBarFull {
border-left-width: 1px;
border-right-width: 0px;
}
.claro .dijitProgressBarIndeterminateRtl .dijitProgressBarTile {
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: "FlipH";
}