tt-rss/lib/dijit/themes/soria/ProgressBar.css

33 lines
883 B
CSS
Raw Normal View History

2011-11-08 17:40:44 +01:00
/****
dijit.ProgressBar
****/
.soria .dijitProgressBar {
2011-11-08 17:40:44 +01:00
margin:2px 0 2px 0;
}
2011-11-08 17:40:44 +01:00
.soria .dijitProgressBarEmpty{
2011-11-08 17:40:44 +01:00
/* outer container and background of the bar that's not finished yet*/
background:#fff url("images/progressBarEmpty.png") repeat-x center center;
border-color: #8ba0bd;
}
2011-11-08 17:40:44 +01:00
.soria .dijitProgressBarTile{
2011-11-08 17:40:44 +01:00
/* inner container for finished portion when in 'tile' (image) mode */
background:#f0f0f0 url("images/progressBarFull.png") repeat-x center center;
}
2011-11-08 17:40:44 +01:00
.soria .dijitProgressBarFull {
border-right:1px solid #8ba0bd;
}
2011-11-08 17:40:44 +01:00
.soria .dijitProgressBarLabel {
2011-11-08 17:40:44 +01:00
/* Set to a color that contrasts with both the "Empty" and "Full" parts. */
color:#293a4b;
}
2011-11-08 17:40:44 +01:00
.soria .dijitProgressBarIndeterminate .dijitProgressBarTile {
2011-11-08 17:40:44 +01:00
/* use an animated gif for the progress bar in 'indeterminate' mode */
background:#cad2de url("images/progressBarAnim.gif") repeat-x center center;
2011-11-08 17:40:44 +01:00
}