Ticket #6229: progress.patch

File progress.patch, 2.7 kB (added by dante, 7 months ago)

a patch, which might not be acceptable

  • dijit.css

     
    473473        z-index:-1; 
    474474        top:0; 
    475475        width:100%; 
    476         height:100%; 
     476/*      height:100%; */ 
    477477} 
    478478 
    479 .dijitProgressBarTile{ 
     479.dijitProgressBarTile { 
    480480        /* inner container for finished portion */ 
    481481        position:absolute; 
    482482        overflow:hidden; 
     
    499499        background-color:transparent !important; 
    500500} 
    501501 
    502 .dj_iequirks .dijitProgressBarTile{ 
     502.dj_iecontentbox .dijitProgressBarTile, 
     503.dj_iequirks .dijitProgressBarTile { 
    503504        width:100%; 
    504505        height:100%; 
    505506} 
    506507 
    507 .dj_ie6 .dijitProgressBarTile{ 
     508.dj_ie6 .dijitProgressBarTile { 
    508509        /* width:auto works in IE6 with position:static but not position:absolute */ 
    509510        position:static; 
    510511        /* height:auto does not work in IE6 */ 
    511         height:100%; 
     512        height:1.6em; 
    512513} 
    513514 
    514 .dijitProgressBarIndeterminate .dijitProgressBarLabel{ 
     515.dijitProgressBarIndeterminate .dijitProgressBarLabel { 
    515516        visibility:hidden; 
    516517} 
    517518 
    518 .dijitProgressBarIndeterminate .dijitProgressBarTile{ 
     519.dijitProgressBarIndeterminate .dijitProgressBarTile { 
    519520        /* animated gif for 'indeterminate' mode */ 
    520521} 
    521522 
    522 .dijitProgressBarIndeterminateHighContrastImage{ 
     523.dijitProgressBarIndeterminateHighContrastImage { 
    523524        display:none; 
    524525} 
    525526 
    526 .dijit_a11y .dijitProgressBarIndeterminate .dijitProgressBarIndeterminateHighContrastImage{ 
     527.dijit_a11y .dijitProgressBarIndeterminate .dijitProgressBarIndeterminateHighContrastImage { 
    527528        display:block; 
    528529        position:absolute; 
    529530        top:0; 
     
    534535        height:auto; 
    535536} 
    536537 
    537 .dijitProgressBarLabel{ 
     538.dijitProgressBarLabel { 
    538539        display:block; 
    539540        position:static; 
    540541        width:100%; 
     
    547548        bottom:0;               /* start at the bottom */ 
    548549} 
    549550 
    550 .dj_ie6 .dijitProgressBarV .dijitProgressBarTile{ 
     551.dj_ie6 .dijitProgressBarFull { 
     552        height:1.6em; 
     553} 
     554.dj_ie6 .dijitProgressBarV .dijitProgressBarTile { 
    551555        position:absolute; 
    552556        /* can't use position:static here -- need absolute positioning to place 
    553557           the bar at the bottom of a vertical progressbar */ 
  • tundra/ProgressBar.css

     
    22        margin:2px 0px 2px 0px; 
    33} 
    44 
    5 .tundra .dijitProgressBarEmpty{ 
     5.tundra .dijitProgressBarEmpty { 
    66        /* outer container and background of the bar that's not finished yet*/ 
    77        background:#fff url("images/progressBarEmpty.png") repeat-x top left; 
    88        border-color: #a2a2a2 #b8b8b8 #b8b8b8 #a2a2a2; 
    99} 
    1010 
    11 .tundra .dijitProgressBarTile{ 
     11.tundra .dijitProgressBarTile { 
    1212        /* inner container for finished portion when in 'tile' (image) mode */ 
    1313        background:#f0f0f0 url("images/progressBarFull.png") repeat-x center center; 
    1414}