summaryrefslogtreecommitdiff
path: root/lib/dijit/themes/claro/ProgressBar.less
diff options
context:
space:
mode:
Diffstat (limited to 'lib/dijit/themes/claro/ProgressBar.less')
-rw-r--r--lib/dijit/themes/claro/ProgressBar.less10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/dijit/themes/claro/ProgressBar.less b/lib/dijit/themes/claro/ProgressBar.less
index d361952ee..8edf426a0 100644
--- a/lib/dijit/themes/claro/ProgressBar.less
+++ b/lib/dijit/themes/claro/ProgressBar.less
@@ -32,18 +32,20 @@
}
.claro .dijitProgressBarEmpty {
/* outer container and background of the bar that's not finished yet*/
- background: @progressbar-empty-background-color url("images/progressBarEmpty.png") repeat-none left;
+ background: @progressbar-empty-background-color url(@image-progressbar-empty) no-repeat left;
border-color: @progressbar-border-color;
}
.claro .dijitProgressBarTile {
/* inner container for finished portion when in 'tile' (image) mode */
- background: @progressbar-full-background-color url("images/progressBarFull.png") repeat-x top;
+ background: @progressbar-full-background-color url(@image-progressbar-full) repeat-x top;
}
.dj_ie6 .claro .dijitProgressBarTile {
background-image: none;
}
.claro .dijitProgressBarFull {
border-right:1px solid @progressbar-border-color;
+ .transition-property(width);
+ .transition-duration(.25s);
}
.claro .dijitProgressBarLabel {
/* Set to a color that contrasts with both the "Empty" and "Full" parts. */
@@ -52,5 +54,5 @@
.claro .dijitProgressBarIndeterminate .dijitProgressBarTile {
/* use an animated gif for the progress bar in 'indeterminate' mode;
background-color won't appear unless user has turned off background images */
- background: @bar-background-color url("images/progressBarAnim.gif") repeat-x top;
-} \ No newline at end of file
+ background: @bar-background-color url(@image-progressbar-anim) repeat-x top;
+}