I am trying to remove the border and shadhow from the ProgressArea, but I cannot seem to get rid of the styling on .ruShadow. How would I remove any kind of border and drop shadow from the ProgressArea. ruShadow is not specificed in the CSS for the Skin so it seems I can only override it on the ProgressTemple, but I keep getting two divs rendered for ruShadow (the one automatically added by the ProgressArea and the one I seem to be adding below).
| <ProgressTemplate> |
| <div class="ruShadow" style="background: transparent; margin: 0; padding: 0;"> |
| <div id="radProgressArea_Panel"> |
| <ul class="ruProgress" style="border-style: none ;border-width: 0; padding-top: 15px;"> |
| <li class="ruFilePortion"> |
| <div class="ruBar"> |
| <div runat="server" id="PrimaryProgressBarInnerDiv"><!-- --></div> |
| </div> |
| Part: <span runat="server" id="PrimaryPercent"></span>% (<span runat="server" id="PrimaryValue"></span>) |
| <br /> |
| Total: <span runat="server" id="PrimaryTotal"></span> |
| </li> |
| <li class="ruFileCount"> |
| <div class="ruBar"> |
| <div runat="server" id="SecondaryProgressBarInnerDiv"><!-- --></div> |
| </div> |
| Part: <span runat="server" id="SecondaryPercent"></span>% (<span runat="server" id="SecondaryValue"></span>) |
| <br /> |
| Total: <span runat="server" id="SecondaryTotal"></span> |
| </li> |
| </ul> |
| </div> |
| </div> |
| </ProgressTemplate> |