6887a0f573
The itemNode and expandoNode elements have changed from img to span (https://bugs.dojotoolkit.org/ticket/16699), so we now put our tree icons inside them rather than replacing them. Signed-off-by: Anders Kaseorg <andersk@mit.edu>
20 lines
No EOL
433 B
Text
20 lines
No EOL
433 B
Text
/* 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";
|
|
} |