html5 - Setting up a panel-header with a progress bar that runs the length of it -


i have series of panels correspond # of tasks user has perform.

i set using panels panel heading has activity name , when expanded, reveals list of tasks associated activity. each of teh tasks can have status of incomplete, successful, failed.

i'd add stacked progress bar heading that, when panel collapsed, can see status of internal tasks. ideally first row of heading activity name , second row filled stacked progress bar.

<div class="panel-heading">     <div class="row">         <div class="col-md-12">             <h6>                 <a ng-click="ervm.shower = !ervm.shower">er heading goes here</a>             </h6>         </div>                </div>     <div class="row">         <div class="col-md-12">             <div class="progress" style="width:100%">                 <div class="progress-bar progress-bar-success" role="progressbar" style="width:40%">                     free space                 </div>                 <div class="progress-bar progress-bar-warning" role="progressbar" style="width:10%">                     warning                 </div>                 <div class="progress-bar progress-bar-danger" role="progressbar" style="width:20%">                     danger                 </div>             </div>         </div>     </div> </div> 

this comes close doing need seems follow bootstrap requirements implement i'm saying.

any appreciated.


Comments

Popular posts from this blog

android - MPAndroidChart - How to add Annotations or images to the chart -

javascript - Add class to another page attribute using URL id - Jquery -

firefox - Where is 'webgl.osmesalib' parameter? -