ProgressBar.css 913 B

123456789101112131415161718192021222324252627282930313233
  1. /****
  2. dijit.ProgressBar
  3. ****/
  4. .nihilo .dijitProgressBar {
  5. margin:2px 0 2px 0;
  6. }
  7. .nihilo .dijitProgressBarEmpty{
  8. /* outer container and background of the bar that's not finished yet*/
  9. background:#fff url("images/progressBarEmpty.png") repeat-x center center;
  10. border-color: #f8d582 #f8d582 #f8d582 #f8d582;
  11. }
  12. .nihilo .dijitProgressBarTile{
  13. /* inner container for finished portion when in 'tile' (image) mode */
  14. background:#f0f0f0 url("images/progressBarFull.png") repeat-x center center;
  15. }
  16. .nihilo .dijitProgressBarFull {
  17. border-right:1px solid #f8d582;
  18. }
  19. .nihilo .dijitProgressBarLabel {
  20. /* Set to a color that contrasts with both the "Empty" and "Full" parts. */
  21. color:#293a4b;
  22. }
  23. .nihilo .dijitProgressBarIndeterminate .dijitProgressBarTile {
  24. /* use an animated gif for the progress bar in 'indeterminate' mode */
  25. background:#cad2de url("images/progressBarAnim.gif") repeat-x center center;
  26. }