Ticket #6229: progress.patch
| File progress.patch, 2.7 kB (added by dante, 7 months ago) |
|---|
-
dijit.css
473 473 z-index:-1; 474 474 top:0; 475 475 width:100%; 476 height:100%; 476 /* height:100%; */ 477 477 } 478 478 479 .dijitProgressBarTile {479 .dijitProgressBarTile { 480 480 /* inner container for finished portion */ 481 481 position:absolute; 482 482 overflow:hidden; … … 499 499 background-color:transparent !important; 500 500 } 501 501 502 .dj_iequirks .dijitProgressBarTile{ 502 .dj_iecontentbox .dijitProgressBarTile, 503 .dj_iequirks .dijitProgressBarTile { 503 504 width:100%; 504 505 height:100%; 505 506 } 506 507 507 .dj_ie6 .dijitProgressBarTile {508 .dj_ie6 .dijitProgressBarTile { 508 509 /* width:auto works in IE6 with position:static but not position:absolute */ 509 510 position:static; 510 511 /* height:auto does not work in IE6 */ 511 height:1 00%;512 height:1.6em; 512 513 } 513 514 514 .dijitProgressBarIndeterminate .dijitProgressBarLabel {515 .dijitProgressBarIndeterminate .dijitProgressBarLabel { 515 516 visibility:hidden; 516 517 } 517 518 518 .dijitProgressBarIndeterminate .dijitProgressBarTile {519 .dijitProgressBarIndeterminate .dijitProgressBarTile { 519 520 /* animated gif for 'indeterminate' mode */ 520 521 } 521 522 522 .dijitProgressBarIndeterminateHighContrastImage {523 .dijitProgressBarIndeterminateHighContrastImage { 523 524 display:none; 524 525 } 525 526 526 .dijit_a11y .dijitProgressBarIndeterminate .dijitProgressBarIndeterminateHighContrastImage {527 .dijit_a11y .dijitProgressBarIndeterminate .dijitProgressBarIndeterminateHighContrastImage { 527 528 display:block; 528 529 position:absolute; 529 530 top:0; … … 534 535 height:auto; 535 536 } 536 537 537 .dijitProgressBarLabel {538 .dijitProgressBarLabel { 538 539 display:block; 539 540 position:static; 540 541 width:100%; … … 547 548 bottom:0; /* start at the bottom */ 548 549 } 549 550 550 .dj_ie6 .dijitProgressBarV .dijitProgressBarTile{ 551 .dj_ie6 .dijitProgressBarFull { 552 height:1.6em; 553 } 554 .dj_ie6 .dijitProgressBarV .dijitProgressBarTile { 551 555 position:absolute; 552 556 /* can't use position:static here -- need absolute positioning to place 553 557 the bar at the bottom of a vertical progressbar */ -
tundra/ProgressBar.css
2 2 margin:2px 0px 2px 0px; 3 3 } 4 4 5 .tundra .dijitProgressBarEmpty {5 .tundra .dijitProgressBarEmpty { 6 6 /* outer container and background of the bar that's not finished yet*/ 7 7 background:#fff url("images/progressBarEmpty.png") repeat-x top left; 8 8 border-color: #a2a2a2 #b8b8b8 #b8b8b8 #a2a2a2; 9 9 } 10 10 11 .tundra .dijitProgressBarTile {11 .tundra .dijitProgressBarTile { 12 12 /* inner container for finished portion when in 'tile' (image) mode */ 13 13 background:#f0f0f0 url("images/progressBarFull.png") repeat-x center center; 14 14 }