2011-11-08 17:40:44 +01:00
|
|
|
/* ProgressBar
|
|
|
|
*
|
|
|
|
* Styling of the ProgressBar consists of the following:
|
|
|
|
*
|
|
|
|
* 1. the base progress bar
|
|
|
|
* .dijitProgressBar - sets margins for the progress bar
|
|
|
|
*
|
|
|
|
* 2. the empty bar
|
|
|
|
* .dijitProgressBarEmpty - sets background img and color for bar or parts of bar that are not finished yet
|
|
|
|
* Also sets border color for whole bar
|
|
|
|
*
|
|
|
|
* 3. tile mode
|
|
|
|
* .dijitProgressBarTile
|
|
|
|
* inner container for finished portion when in 'tile' (image) mode
|
|
|
|
*
|
|
|
|
* 4. full bar mode
|
|
|
|
* .dijitProgressBarFull
|
|
|
|
* adds border to right side of the filled portion of bar
|
|
|
|
*
|
|
|
|
* 5. text for label of bar
|
|
|
|
* .dijitProgressBarLabel - sets text color, which must contrast with both the "Empty" and "Full" parts.
|
|
|
|
*
|
|
|
|
* 6. indeterminate mode
|
|
|
|
* .dijitProgressBarIndeterminate .dijitProgressBarTile
|
|
|
|
* sets animated gif for the progress bar in 'indeterminate' mode
|
|
|
|
*/
|
2010-11-15 08:39:52 +01:00
|
|
|
.claro .dijitProgressBar {
|
2011-11-08 17:40:44 +01:00
|
|
|
margin: 2px 0 2px 0;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
|
|
|
.claro .dijitProgressBarEmpty {
|
2011-11-08 17:40:44 +01:00
|
|
|
/* outer container and background of the bar that's not finished yet*/
|
|
|
|
|
2013-03-18 07:26:24 +01:00
|
|
|
background-color: #ffffff;
|
2012-08-14 16:59:10 +02:00
|
|
|
border-color: #759dc0;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
|
|
|
.claro .dijitProgressBarTile {
|
2011-11-08 17:40:44 +01:00
|
|
|
/* inner container for finished portion when in 'tile' (image) mode */
|
|
|
|
|
2013-03-18 07:26:24 +01:00
|
|
|
background-color: #abd6ff;
|
|
|
|
background-image: url("images/progressBarFull.png");
|
|
|
|
background-repeat: repeat-x;
|
|
|
|
background-image: -moz-linear-gradient(rgba(255, 255, 255, 0.93) 0px, rgba(255, 255, 255, 0.41) 1px, rgba(255, 255, 255, 0.7) 2px, rgba(255, 255, 255, 0) 100%);
|
|
|
|
background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.93) 0px, rgba(255, 255, 255, 0.41) 1px, rgba(255, 255, 255, 0.7) 2px, rgba(255, 255, 255, 0) 100%);
|
|
|
|
background-image: -o-linear-gradient(rgba(255, 255, 255, 0.93) 0px, rgba(255, 255, 255, 0.41) 1px, rgba(255, 255, 255, 0.7) 2px, rgba(255, 255, 255, 0) 100%);
|
|
|
|
background-image: linear-gradient(rgba(255, 255, 255, 0.93) 0px, rgba(255, 255, 255, 0.41) 1px, rgba(255, 255, 255, 0.7) 2px, rgba(255, 255, 255, 0) 100%);
|
|
|
|
background-attachment: scroll;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
|
|
|
.dj_ie6 .claro .dijitProgressBarTile {
|
2011-11-08 17:40:44 +01:00
|
|
|
background-image: none;
|
|
|
|
}
|
2010-11-15 08:39:52 +01:00
|
|
|
.claro .dijitProgressBarFull {
|
2012-08-14 16:59:10 +02:00
|
|
|
border-right: 1px solid #759dc0;
|
|
|
|
-webkit-transition-property: width;
|
|
|
|
-moz-transition-property: width;
|
|
|
|
transition-property: width;
|
|
|
|
-webkit-transition-duration: 0.25s;
|
|
|
|
-moz-transition-duration: 0.25s;
|
|
|
|
transition-duration: 0.25s;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
|
|
|
.claro .dijitProgressBarLabel {
|
2011-11-08 17:40:44 +01:00
|
|
|
/* Set to a color that contrasts with both the "Empty" and "Full" parts. */
|
|
|
|
|
|
|
|
color: #000000;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
|
|
|
.claro .dijitProgressBarIndeterminate .dijitProgressBarTile {
|
2011-11-08 17:40:44 +01:00
|
|
|
/* use an animated gif for the progress bar in 'indeterminate' mode;
|
|
|
|
background-color won't appear unless user has turned off background images */
|
|
|
|
|
|
|
|
background: #efefef url("images/progressBarAnim.gif") repeat-x top;
|
|
|
|
}
|