patternfly-sass 3.3.4 → 3.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/assets/images/patternfly/OpenShift-Logo-NoText.svg +51 -0
 - data/assets/images/patternfly/OpenShift-Logo-Text.svg +95 -0
 - data/assets/images/patternfly/RH_Atomic-Logo-NoText.svg +53 -0
 - data/assets/images/patternfly/RH_Atomic-Logo-Text.svg +91 -0
 - data/assets/images/patternfly/kubernetes-Logo.svg +60 -0
 - data/assets/stylesheets/patternfly/_datatables.scss +0 -2
 - data/assets/stylesheets/patternfly/_mixin_overrides.scss +1 -1
 - data/assets/stylesheets/patternfly/_mixins.scss +1 -1
 - data/assets/stylesheets/patternfly/lib/bootstrap-select.scss +1 -1
 - data/bower.json +1 -1
 - data/lib/patternfly-sass/version.rb +2 -2
 - data/spec/html/alerts.html +49 -41
 - data/spec/html/basic.html +1 -0
 - data/spec/html/blank-slate.html +2 -2
 - data/spec/html/bootstrap-datepicker.html +33 -5
 - data/spec/html/bootstrap-treeview-2.html +1 -0
 - data/spec/html/cards.html +22 -31
 - data/spec/html/dashboard.html +1 -0
 - data/spec/html/dist/css/patternfly-additions.css +0 -2
 - data/spec/html/dist/css/patternfly-additions.css.map +1 -1
 - data/spec/html/dist/css/patternfly-additions.min.css +1 -1
 - data/spec/html/dist/css/patternfly-additions.min.css.map +1 -1
 - data/spec/html/form.html +1 -0
 - data/spec/html/layout-alt-fixed-inner-scroll.html +13 -25
 - data/spec/html/layout-alt-fixed-with-footer-inner-scroll.html +13 -25
 - data/spec/html/layout-alt-fixed-with-footer.html +13 -25
 - data/spec/html/layout-alt-fixed.html +13 -25
 - data/spec/html/list-view.html +12 -12
 - data/spec/html/login.html +45 -44
 - data/spec/html/pie-charts.html +1 -1
 - data/spec/html/popovers.html +14 -13
 - data/spec/html/tab.html +1 -0
 - data/spec/html/time-picker.html +19 -17
 - data/spec/html/toast.html +44 -40
 - data/spec/html/typography-2.html +1 -0
 - data/spec/html/vertical-navigation-without-icons.html +236 -228
 - data/spec/html/vertical-navigation.html +236 -228
 - data/tasks/converter.rb +5 -0
 - metadata +7 -2
 
    
        data/spec/html/tab.html
    CHANGED
    
    
    
        data/spec/html/time-picker.html
    CHANGED
    
    | 
         @@ -46,28 +46,30 @@ 
     | 
|
| 
       46 
46 
     | 
    
         
             
            <h3>Component</h3>
         
     | 
| 
       47 
47 
     | 
    
         
             
            <div class="row">
         
     | 
| 
       48 
48 
     | 
    
         
             
              <div class="col-lg-4 col-md-5 col-sm-6">
         
     | 
| 
       49 
     | 
    
         
            -
                <div class="input-group time-picker-pf" id=" 
     | 
| 
       50 
     | 
    
         
            -
             
     | 
| 
      
 49 
     | 
    
         
            +
                <div class="input-group time-picker-pf" id="timepicker1">
         
     | 
| 
      
 50 
     | 
    
         
            +
              <input type="text" class="form-control">
         
     | 
| 
       51 
51 
     | 
    
         
             
                  <span class="input-group-addon btn btn-default">
         
     | 
| 
       52 
52 
     | 
    
         
             
                    <span class="fa fa-clock-o"></span>
         
     | 
| 
       53 
53 
     | 
    
         
             
                  </span>
         
     | 
| 
       54 
     | 
    
         
            -
             
     | 
| 
       55 
     | 
    
         
            -
             
     | 
| 
       56 
     | 
    
         
            -
             
     | 
| 
       57 
     | 
    
         
            -
             
     | 
| 
       58 
     | 
    
         
            -
             
     | 
| 
       59 
     | 
    
         
            -
             
     | 
| 
       60 
     | 
    
         
            -
             
     | 
| 
       61 
     | 
    
         
            -
             
     | 
| 
       62 
     | 
    
         
            -
             
     | 
| 
       63 
     | 
    
         
            -
             
     | 
| 
       64 
     | 
    
         
            -
             
     | 
| 
       65 
     | 
    
         
            -
             
     | 
| 
       66 
     | 
    
         
            -
             
     | 
| 
       67 
     | 
    
         
            -
             
     | 
| 
       68 
     | 
    
         
            -
             
     | 
| 
      
 54 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 55 
     | 
    
         
            +
            <script>
         
     | 
| 
      
 56 
     | 
    
         
            +
              $(function () {
         
     | 
| 
      
 57 
     | 
    
         
            +
                $('#timepicker1').datetimepicker({
         
     | 
| 
      
 58 
     | 
    
         
            +
                  format: 'LT',
         
     | 
| 
      
 59 
     | 
    
         
            +
                  keyBinds: {
         
     | 
| 
      
 60 
     | 
    
         
            +
                    enter: function () {
         
     | 
| 
      
 61 
     | 
    
         
            +
                      $('#timepicker1').find('input').trigger('change');
         
     | 
| 
      
 62 
     | 
    
         
            +
                      this.hide();
         
     | 
| 
      
 63 
     | 
    
         
            +
                    }
         
     | 
| 
      
 64 
     | 
    
         
            +
                  }
         
     | 
| 
      
 65 
     | 
    
         
            +
                });
         
     | 
| 
      
 66 
     | 
    
         
            +
                $('#timepicker1').data('DateTimePicker').clear();
         
     | 
| 
      
 67 
     | 
    
         
            +
              });
         
     | 
| 
      
 68 
     | 
    
         
            +
            </script>
         
     | 
| 
      
 69 
     | 
    
         
            +
             
     | 
| 
       69 
70 
     | 
    
         
             
              </div>
         
     | 
| 
       70 
71 
     | 
    
         
             
            </div>
         
     | 
| 
      
 72 
     | 
    
         
            +
             
     | 
| 
       71 
73 
     | 
    
         
             
                </div><!-- /container -->
         
     | 
| 
       72 
74 
     | 
    
         
             
              </body>
         
     | 
| 
       73 
75 
     | 
    
         
             
            </html>
         
     | 
    
        data/spec/html/toast.html
    CHANGED
    
    | 
         @@ -73,8 +73,8 @@ 
     | 
|
| 
       73 
73 
     | 
    
         
             
                    This server is in the North West Datacenter.
         
     | 
| 
       74 
74 
     | 
    
         
             
                  </div>
         
     | 
| 
       75 
75 
     | 
    
         
             
                  <hr>
         
     | 
| 
       76 
     | 
    
         
            -
             
     | 
| 
       77 
     | 
    
         
            -
             
     | 
| 
      
 76 
     | 
    
         
            +
            <div class="toast-pf alert alert-info">
         
     | 
| 
      
 77 
     | 
    
         
            +
              <div class="dropdown pull-right dropdown-kebab-pf">
         
     | 
| 
       78 
78 
     | 
    
         
             
              <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
         
     | 
| 
       79 
79 
     | 
    
         
             
                <span class="fa fa-ellipsis-v"></span>
         
     | 
| 
       80 
80 
     | 
    
         
             
              </button>
         
     | 
| 
         @@ -87,48 +87,52 @@ 
     | 
|
| 
       87 
87 
     | 
    
         
             
              </ul>
         
     | 
| 
       88 
88 
     | 
    
         
             
            </div>
         
     | 
| 
       89 
89 
     | 
    
         | 
| 
       90 
     | 
    
         
            -
             
     | 
| 
       91 
     | 
    
         
            -
             
     | 
| 
       92 
     | 
    
         
            -
             
     | 
| 
       93 
     | 
    
         
            -
             
     | 
| 
       94 
     | 
    
         
            -
             
     | 
| 
       95 
     | 
    
         
            -
             
     | 
| 
      
 90 
     | 
    
         
            +
              <div class="pull-right toast-pf-action">
         
     | 
| 
      
 91 
     | 
    
         
            +
                <a href="#">Reload Server</a>
         
     | 
| 
      
 92 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 93 
     | 
    
         
            +
              <span class="pficon pficon-info"></span>
         
     | 
| 
      
 94 
     | 
    
         
            +
              <strong>Great job!</strong> This is really working out.
         
     | 
| 
      
 95 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 96 
     | 
    
         
            +
             
     | 
| 
       96 
97 
     | 
    
         
             
                  <br>
         
     | 
| 
       97 
     | 
    
         
            -
             
     | 
| 
       98 
     | 
    
         
            -
             
     | 
| 
       99 
     | 
    
         
            -
             
     | 
| 
       100 
     | 
    
         
            -
             
     | 
| 
       101 
     | 
    
         
            -
             
     | 
| 
       102 
     | 
    
         
            -
             
     | 
| 
       103 
     | 
    
         
            -
             
     | 
| 
       104 
     | 
    
         
            -
             
     | 
| 
      
 98 
     | 
    
         
            +
            <div class="toast-pf alert alert-success alert-dismissable">
         
     | 
| 
      
 99 
     | 
    
         
            +
              <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
         
     | 
| 
      
 100 
     | 
    
         
            +
                <span class="pficon pficon-close"></span>
         
     | 
| 
      
 101 
     | 
    
         
            +
              </button>
         
     | 
| 
      
 102 
     | 
    
         
            +
              <span class="pficon pficon-ok"></span>
         
     | 
| 
      
 103 
     | 
    
         
            +
              The server configuration changed.
         
     | 
| 
      
 104 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 105 
     | 
    
         
            +
             
     | 
| 
       105 
106 
     | 
    
         
             
                  <br>
         
     | 
| 
       106 
     | 
    
         
            -
             
     | 
| 
       107 
     | 
    
         
            -
             
     | 
| 
       108 
     | 
    
         
            -
             
     | 
| 
       109 
     | 
    
         
            -
             
     | 
| 
       110 
     | 
    
         
            -
             
     | 
| 
       111 
     | 
    
         
            -
             
     | 
| 
       112 
     | 
    
         
            -
             
     | 
| 
       113 
     | 
    
         
            -
             
     | 
| 
       114 
     | 
    
         
            -
             
     | 
| 
       115 
     | 
    
         
            -
             
     | 
| 
      
 107 
     | 
    
         
            +
            <div class="toast-pf alert alert-warning alert-dismissable">
         
     | 
| 
      
 108 
     | 
    
         
            +
              <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
         
     | 
| 
      
 109 
     | 
    
         
            +
                <span class="pficon pficon-close"></span>
         
     | 
| 
      
 110 
     | 
    
         
            +
              </button>
         
     | 
| 
      
 111 
     | 
    
         
            +
              <div class="pull-right toast-pf-action">
         
     | 
| 
      
 112 
     | 
    
         
            +
                <a href="#">Reload Server</a>
         
     | 
| 
      
 113 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 114 
     | 
    
         
            +
              <span class="pficon pficon-warning-triangle-o"></span>
         
     | 
| 
      
 115 
     | 
    
         
            +
              The server configuration changed.
         
     | 
| 
      
 116 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 117 
     | 
    
         
            +
             
     | 
| 
       116 
118 
     | 
    
         
             
                  <br>
         
     | 
| 
       117 
     | 
    
         
            -
             
     | 
| 
       118 
     | 
    
         
            -
             
     | 
| 
       119 
     | 
    
         
            -
             
     | 
| 
       120 
     | 
    
         
            -
             
     | 
| 
      
 119 
     | 
    
         
            +
            <div class="toast-pf alert alert-danger">
         
     | 
| 
      
 120 
     | 
    
         
            +
              <span class="pficon pficon-error-circle-o"></span>
         
     | 
| 
      
 121 
     | 
    
         
            +
              Failed to add <strong>server_abc</strong>.
         
     | 
| 
      
 122 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 123 
     | 
    
         
            +
             
     | 
| 
       121 
124 
     | 
    
         
             
                  <hr>
         
     | 
| 
       122 
     | 
    
         
            -
             
     | 
| 
       123 
     | 
    
         
            -
             
     | 
| 
       124 
     | 
    
         
            -
             
     | 
| 
       125 
     | 
    
         
            -
             
     | 
| 
       126 
     | 
    
         
            -
             
     | 
| 
       127 
     | 
    
         
            -
             
     | 
| 
       128 
     | 
    
         
            -
             
     | 
| 
       129 
     | 
    
         
            -
             
     | 
| 
       130 
     | 
    
         
            -
             
     | 
| 
       131 
     | 
    
         
            -
             
     | 
| 
      
 125 
     | 
    
         
            +
            <div class="toast-pf toast-pf-max-width alert alert-warning alert-dismissable">
         
     | 
| 
      
 126 
     | 
    
         
            +
              <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
         
     | 
| 
      
 127 
     | 
    
         
            +
                <span class="pficon pficon-close"></span>
         
     | 
| 
      
 128 
     | 
    
         
            +
              </button>
         
     | 
| 
      
 129 
     | 
    
         
            +
              <div class="pull-right toast-pf-action">
         
     | 
| 
      
 130 
     | 
    
         
            +
                <a href="#">Reload Server</a>
         
     | 
| 
      
 131 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 132 
     | 
    
         
            +
              <span class="pficon pficon-warning-triangle-o"></span>
         
     | 
| 
      
 133 
     | 
    
         
            +
              Max-width is set on this example.
         
     | 
| 
      
 134 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 135 
     | 
    
         
            +
             
     | 
| 
       132 
136 
     | 
    
         | 
| 
       133 
137 
     | 
    
         
             
                </div><!-- /container -->
         
     | 
| 
       134 
138 
     | 
    
         
             
              </body>
         
     | 
    
        data/spec/html/typography-2.html
    CHANGED
    
    
| 
         @@ -129,7 +129,7 @@ 
     | 
|
| 
       129 
129 
     | 
    
         
             
                    <span class="pficon pficon-container-node"></span>
         
     | 
| 
       130 
130 
     | 
    
         
             
                    <span class="list-group-item-value">Storage</span>
         
     | 
| 
       131 
131 
     | 
    
         
             
                  </a>
         
     | 
| 
       132 
     | 
    
         
            -
             
     | 
| 
      
 132 
     | 
    
         
            +
            <div id="storage-secondary" class="nav-pf-persistent-secondary">
         
     | 
| 
       133 
133 
     | 
    
         
             
              <div class="persistent-secondary-header">
         
     | 
| 
       134 
134 
     | 
    
         
             
                <a class="secondary-collapse-toggle-pf" href="#" data-toggle="collapse-secondary-nav"></a>
         
     | 
| 
       135 
135 
     | 
    
         
             
                <span>Storage</span>
         
     | 
| 
         @@ -261,7 +261,7 @@ 
     | 
|
| 
       261 
261 
     | 
    
         
             
                    <span class="fa fa-cog"></span>
         
     | 
| 
       262 
262 
     | 
    
         
             
                    <span class="list-group-item-value">Admin</span>
         
     | 
| 
       263 
263 
     | 
    
         
             
                  </a>
         
     | 
| 
       264 
     | 
    
         
            -
             
     | 
| 
      
 264 
     | 
    
         
            +
            <div id="admin-secondary" class="nav-pf-persistent-secondary">
         
     | 
| 
       265 
265 
     | 
    
         
             
              <div class="persistent-secondary-header">
         
     | 
| 
       266 
266 
     | 
    
         
             
                <a class="secondary-collapse-toggle-pf" href="#" data-toggle="collapse-secondary-nav"></a>
         
     | 
| 
       267 
267 
     | 
    
         
             
                <span>Admin</span>
         
     | 
| 
         @@ -338,41 +338,44 @@ 
     | 
|
| 
       338 
338 
     | 
    
         
             
                  <div class="row row-cards-pf">
         
     | 
| 
       339 
339 
     | 
    
         
             
                  <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
         
     | 
| 
       340 
340 
     | 
    
         
             
                    <div class="col-xs-12 col-sm-6 col-md-3">
         
     | 
| 
       341 
     | 
    
         
            -
             
     | 
| 
       342 
     | 
    
         
            -
             
     | 
| 
       343 
     | 
    
         
            -
             
     | 
| 
       344 
     | 
    
         
            -
             
     | 
| 
       345 
     | 
    
         
            -
             
     | 
| 
       346 
     | 
    
         
            -
             
     | 
| 
       347 
     | 
    
         
            -
             
     | 
| 
       348 
     | 
    
         
            -
             
     | 
| 
       349 
     | 
    
         
            -
             
     | 
| 
       350 
     | 
    
         
            -
             
     | 
| 
      
 341 
     | 
    
         
            +
            <div class="card-pf card-pf-accented card-pf-aggregate-status">
         
     | 
| 
      
 342 
     | 
    
         
            +
              <h2 class="card-pf-title">
         
     | 
| 
      
 343 
     | 
    
         
            +
                <span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">0</span> Ipsum
         
     | 
| 
      
 344 
     | 
    
         
            +
              </h2>
         
     | 
| 
      
 345 
     | 
    
         
            +
              <div class="card-pf-body">
         
     | 
| 
      
 346 
     | 
    
         
            +
                <p class="card-pf-aggregate-status-notifications">
         
     | 
| 
      
 347 
     | 
    
         
            +
                  <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
         
     | 
| 
      
 348 
     | 
    
         
            +
                </p>
         
     | 
| 
      
 349 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 350 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 351 
     | 
    
         
            +
             
     | 
| 
       351 
352 
     | 
    
         
             
                    </div>
         
     | 
| 
       352 
353 
     | 
    
         
             
                    <div class="col-xs-12 col-sm-6 col-md-3">
         
     | 
| 
       353 
     | 
    
         
            -
             
     | 
| 
       354 
     | 
    
         
            -
             
     | 
| 
       355 
     | 
    
         
            -
             
     | 
| 
       356 
     | 
    
         
            -
             
     | 
| 
       357 
     | 
    
         
            -
             
     | 
| 
       358 
     | 
    
         
            -
             
     | 
| 
       359 
     | 
    
         
            -
             
     | 
| 
       360 
     | 
    
         
            -
             
     | 
| 
       361 
     | 
    
         
            -
             
     | 
| 
       362 
     | 
    
         
            -
             
     | 
| 
       363 
     | 
    
         
            -
             
     | 
| 
      
 354 
     | 
    
         
            +
            <div class="card-pf card-pf-accented card-pf-aggregate-status">
         
     | 
| 
      
 355 
     | 
    
         
            +
              <h2 class="card-pf-title">
         
     | 
| 
      
 356 
     | 
    
         
            +
                <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">20</span> Amet</a>
         
     | 
| 
      
 357 
     | 
    
         
            +
              </h2>
         
     | 
| 
      
 358 
     | 
    
         
            +
              <div class="card-pf-body">
         
     | 
| 
      
 359 
     | 
    
         
            +
                <p class="card-pf-aggregate-status-notifications">
         
     | 
| 
      
 360 
     | 
    
         
            +
                  <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
         
     | 
| 
      
 361 
     | 
    
         
            +
                  <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-warning-triangle-o"></span>1</a></span>
         
     | 
| 
      
 362 
     | 
    
         
            +
                </p>
         
     | 
| 
      
 363 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 364 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 365 
     | 
    
         
            +
             
     | 
| 
       364 
366 
     | 
    
         
             
                    </div>
         
     | 
| 
       365 
367 
     | 
    
         
             
                    <div class="col-xs-12 col-sm-6 col-md-3">
         
     | 
| 
       366 
     | 
    
         
            -
             
     | 
| 
       367 
     | 
    
         
            -
             
     | 
| 
       368 
     | 
    
         
            -
             
     | 
| 
       369 
     | 
    
         
            -
             
     | 
| 
       370 
     | 
    
         
            -
             
     | 
| 
       371 
     | 
    
         
            -
             
     | 
| 
       372 
     | 
    
         
            -
             
     | 
| 
       373 
     | 
    
         
            -
             
     | 
| 
       374 
     | 
    
         
            -
             
     | 
| 
       375 
     | 
    
         
            -
             
     | 
| 
      
 368 
     | 
    
         
            +
            <div class="card-pf card-pf-accented card-pf-aggregate-status">
         
     | 
| 
      
 369 
     | 
    
         
            +
              <h2 class="card-pf-title">
         
     | 
| 
      
 370 
     | 
    
         
            +
                <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">9</span> Adipiscing</a>
         
     | 
| 
      
 371 
     | 
    
         
            +
              </h2>
         
     | 
| 
      
 372 
     | 
    
         
            +
              <div class="card-pf-body">
         
     | 
| 
      
 373 
     | 
    
         
            +
                <p class="card-pf-aggregate-status-notifications">
         
     | 
| 
      
 374 
     | 
    
         
            +
                  <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
         
     | 
| 
      
 375 
     | 
    
         
            +
                </p>
         
     | 
| 
      
 376 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 377 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 378 
     | 
    
         
            +
             
     | 
| 
       376 
379 
     | 
    
         
             
                    </div>
         
     | 
| 
       377 
380 
     | 
    
         
             
                    <div class="col-xs-12 col-sm-6 col-md-3">
         
     | 
| 
       378 
381 
     | 
    
         
             
                      <div class="card-pf card-pf-accented card-pf-aggregate-status">
         
     | 
| 
         @@ -390,47 +393,50 @@ 
     | 
|
| 
       390 
393 
     | 
    
         
             
                  <div class="row row-cards-pf">
         
     | 
| 
       391 
394 
     | 
    
         
             
                  <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
         
     | 
| 
       392 
395 
     | 
    
         
             
                    <div class="col-xs-12 col-sm-6 col-md-3">
         
     | 
| 
       393 
     | 
    
         
            -
             
     | 
| 
       394 
     | 
    
         
            -
             
     | 
| 
       395 
     | 
    
         
            -
             
     | 
| 
       396 
     | 
    
         
            -
             
     | 
| 
       397 
     | 
    
         
            -
             
     | 
| 
       398 
     | 
    
         
            -
             
     | 
| 
       399 
     | 
    
         
            -
             
     | 
| 
       400 
     | 
    
         
            -
             
     | 
| 
       401 
     | 
    
         
            -
             
     | 
| 
       402 
     | 
    
         
            -
             
     | 
| 
       403 
     | 
    
         
            -
             
     | 
| 
      
 396 
     | 
    
         
            +
            <div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
         
     | 
| 
      
 397 
     | 
    
         
            +
              <h2 class="card-pf-title">
         
     | 
| 
      
 398 
     | 
    
         
            +
                <span class="fa fa-rebel"></span>
         
     | 
| 
      
 399 
     | 
    
         
            +
                <span class="card-pf-aggregate-status-count">0</span> Ipsum
         
     | 
| 
      
 400 
     | 
    
         
            +
              </h2>
         
     | 
| 
      
 401 
     | 
    
         
            +
              <div class="card-pf-body">
         
     | 
| 
      
 402 
     | 
    
         
            +
                <p class="card-pf-aggregate-status-notifications">
         
     | 
| 
      
 403 
     | 
    
         
            +
                  <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
         
     | 
| 
      
 404 
     | 
    
         
            +
                </p>
         
     | 
| 
      
 405 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 406 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 407 
     | 
    
         
            +
             
     | 
| 
       404 
408 
     | 
    
         
             
                    </div>
         
     | 
| 
       405 
409 
     | 
    
         
             
                    <div class="col-xs-12 col-sm-6 col-md-3">
         
     | 
| 
       406 
     | 
    
         
            -
             
     | 
| 
       407 
     | 
    
         
            -
             
     | 
| 
       408 
     | 
    
         
            -
             
     | 
| 
       409 
     | 
    
         
            -
             
     | 
| 
       410 
     | 
    
         
            -
             
     | 
| 
       411 
     | 
    
         
            -
             
     | 
| 
       412 
     | 
    
         
            -
             
     | 
| 
       413 
     | 
    
         
            -
             
     | 
| 
       414 
     | 
    
         
            -
             
     | 
| 
       415 
     | 
    
         
            -
             
     | 
| 
       416 
     | 
    
         
            -
             
     | 
| 
       417 
     | 
    
         
            -
             
     | 
| 
       418 
     | 
    
         
            -
             
     | 
| 
      
 410 
     | 
    
         
            +
            <div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
         
     | 
| 
      
 411 
     | 
    
         
            +
              <h2 class="card-pf-title">
         
     | 
| 
      
 412 
     | 
    
         
            +
                <span class="fa fa-paper-plane"></span>
         
     | 
| 
      
 413 
     | 
    
         
            +
                <a href="#">
         
     | 
| 
      
 414 
     | 
    
         
            +
                  <span class="card-pf-aggregate-status-count">20</span> Amet
         
     | 
| 
      
 415 
     | 
    
         
            +
                </a>
         
     | 
| 
      
 416 
     | 
    
         
            +
              </h2>
         
     | 
| 
      
 417 
     | 
    
         
            +
              <div class="card-pf-body">
         
     | 
| 
      
 418 
     | 
    
         
            +
                <p class="card-pf-aggregate-status-notifications">
         
     | 
| 
      
 419 
     | 
    
         
            +
                  <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
         
     | 
| 
      
 420 
     | 
    
         
            +
                </p>
         
     | 
| 
      
 421 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 422 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 423 
     | 
    
         
            +
             
     | 
| 
       419 
424 
     | 
    
         
             
                    </div>
         
     | 
| 
       420 
425 
     | 
    
         
             
                    <div class="col-xs-12 col-sm-6 col-md-3">
         
     | 
| 
       421 
     | 
    
         
            -
             
     | 
| 
       422 
     | 
    
         
            -
             
     | 
| 
       423 
     | 
    
         
            -
             
     | 
| 
       424 
     | 
    
         
            -
             
     | 
| 
       425 
     | 
    
         
            -
             
     | 
| 
       426 
     | 
    
         
            -
             
     | 
| 
       427 
     | 
    
         
            -
             
     | 
| 
       428 
     | 
    
         
            -
             
     | 
| 
       429 
     | 
    
         
            -
             
     | 
| 
       430 
     | 
    
         
            -
             
     | 
| 
       431 
     | 
    
         
            -
             
     | 
| 
       432 
     | 
    
         
            -
             
     | 
| 
       433 
     | 
    
         
            -
             
     | 
| 
      
 426 
     | 
    
         
            +
            <div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
         
     | 
| 
      
 427 
     | 
    
         
            +
              <h2 class="card-pf-title">
         
     | 
| 
      
 428 
     | 
    
         
            +
                <span class="pficon pficon-cluster"></span>
         
     | 
| 
      
 429 
     | 
    
         
            +
                <a href="#">
         
     | 
| 
      
 430 
     | 
    
         
            +
                  <span class="card-pf-aggregate-status-count">9</span> Adipiscing
         
     | 
| 
      
 431 
     | 
    
         
            +
                </a>
         
     | 
| 
      
 432 
     | 
    
         
            +
              </h2>
         
     | 
| 
      
 433 
     | 
    
         
            +
              <div class="card-pf-body">
         
     | 
| 
      
 434 
     | 
    
         
            +
                <p class="card-pf-aggregate-status-notifications">
         
     | 
| 
      
 435 
     | 
    
         
            +
                  <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
         
     | 
| 
      
 436 
     | 
    
         
            +
                </p>
         
     | 
| 
      
 437 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 438 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 439 
     | 
    
         
            +
             
     | 
| 
       434 
440 
     | 
    
         
             
                    </div>
         
     | 
| 
       435 
441 
     | 
    
         
             
                    <div class="col-xs-12 col-sm-6 col-md-3">
         
     | 
| 
       436 
442 
     | 
    
         
             
                      <div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
         
     | 
| 
         @@ -451,125 +457,126 @@ 
     | 
|
| 
       451 
457 
     | 
    
         
             
                  <div class="row row-cards-pf">
         
     | 
| 
       452 
458 
     | 
    
         
             
                  <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
         
     | 
| 
       453 
459 
     | 
    
         
             
                    <div class="col-xs-12 col-sm-6">
         
     | 
| 
       454 
     | 
    
         
            -
             
     | 
| 
       455 
     | 
    
         
            -
             
     | 
| 
       456 
     | 
    
         
            -
             
     | 
| 
       457 
     | 
    
         
            -
             
     | 
| 
       458 
     | 
    
         
            -
             
     | 
| 
       459 
     | 
    
         
            -
             
     | 
| 
       460 
     | 
    
         
            -
             
     | 
| 
       461 
     | 
    
         
            -
             
     | 
| 
       462 
     | 
    
         
            -
             
     | 
| 
       463 
     | 
    
         
            -
             
     | 
| 
       464 
     | 
    
         
            -
             
     | 
| 
       465 
     | 
    
         
            -
             
     | 
| 
       466 
     | 
    
         
            -
             
     | 
| 
       467 
     | 
    
         
            -
             
     | 
| 
       468 
     | 
    
         
            -
             
     | 
| 
       469 
     | 
    
         
            -
             
     | 
| 
       470 
     | 
    
         
            -
             
     | 
| 
       471 
     | 
    
         
            -
             
     | 
| 
       472 
     | 
    
         
            -
             
     | 
| 
       473 
     | 
    
         
            -
             
     | 
| 
       474 
     | 
    
         
            -
             
     | 
| 
       475 
     | 
    
         
            -
             
     | 
| 
       476 
     | 
    
         
            -
             
     | 
| 
       477 
     | 
    
         
            -
             
     | 
| 
       478 
     | 
    
         
            -
             
     | 
| 
       479 
     | 
    
         
            -
             
     | 
| 
       480 
     | 
    
         
            -
             
     | 
| 
       481 
     | 
    
         
            -
             
     | 
| 
       482 
     | 
    
         
            -
             
     | 
| 
       483 
     | 
    
         
            -
             
     | 
| 
       484 
     | 
    
         
            -
             
     | 
| 
       485 
     | 
    
         
            -
             
     | 
| 
       486 
     | 
    
         
            -
             
     | 
| 
       487 
     | 
    
         
            -
             
     | 
| 
       488 
     | 
    
         
            -
             
     | 
| 
       489 
     | 
    
         
            -
             
     | 
| 
       490 
     | 
    
         
            -
             
     | 
| 
       491 
     | 
    
         
            -
             
     | 
| 
       492 
     | 
    
         
            -
             
     | 
| 
       493 
     | 
    
         
            -
             
     | 
| 
       494 
     | 
    
         
            -
             
     | 
| 
       495 
     | 
    
         
            -
             
     | 
| 
       496 
     | 
    
         
            -
             
     | 
| 
       497 
     | 
    
         
            -
             
     | 
| 
       498 
     | 
    
         
            -
             
     | 
| 
       499 
     | 
    
         
            -
             
     | 
| 
       500 
     | 
    
         
            -
             
     | 
| 
       501 
     | 
    
         
            -
             
     | 
| 
       502 
     | 
    
         
            -
             
     | 
| 
       503 
     | 
    
         
            -
             
     | 
| 
       504 
     | 
    
         
            -
             
     | 
| 
       505 
     | 
    
         
            -
             
     | 
| 
       506 
     | 
    
         
            -
             
     | 
| 
      
 460 
     | 
    
         
            +
            <div class="card-pf">
         
     | 
| 
      
 461 
     | 
    
         
            +
              <div class="card-pf-heading">
         
     | 
| 
      
 462 
     | 
    
         
            +
                <h2 class="card-pf-title">
         
     | 
| 
      
 463 
     | 
    
         
            +
                  Top Utilized Clusters
         
     | 
| 
      
 464 
     | 
    
         
            +
                </h2>
         
     | 
| 
      
 465 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 466 
     | 
    
         
            +
              <div class="card-pf-body">
         
     | 
| 
      
 467 
     | 
    
         
            +
                <div class="progress-description">
         
     | 
| 
      
 468 
     | 
    
         
            +
                  RHOS6-Controller
         
     | 
| 
      
 469 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 470 
     | 
    
         
            +
                <div class="progress progress-label-top-right">
         
     | 
| 
      
 471 
     | 
    
         
            +
                  <div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100" style="width: 95%;"  data-toggle="tooltip" title="95% Used">
         
     | 
| 
      
 472 
     | 
    
         
            +
                    <span><strong>190.0 of 200.0 GB</strong> Used</span>
         
     | 
| 
      
 473 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 474 
     | 
    
         
            +
                  <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="5" aria-valuemin="0" aria-valuemax="100" style="width: 5%;" data-toggle="tooltip" title="5% Available">
         
     | 
| 
      
 475 
     | 
    
         
            +
                    <span class="sr-only">5% Available</span>
         
     | 
| 
      
 476 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 477 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 478 
     | 
    
         
            +
                <div class="progress-description">
         
     | 
| 
      
 479 
     | 
    
         
            +
                  CFMEQE-Cluster
         
     | 
| 
      
 480 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 481 
     | 
    
         
            +
                <div class="progress progress-label-top-right">
         
     | 
| 
      
 482 
     | 
    
         
            +
                  <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;"  data-toggle="tooltip" title="50% Used">
         
     | 
| 
      
 483 
     | 
    
         
            +
                    <span><strong>100.0 of 200.0 GB</strong> Used</span>
         
     | 
| 
      
 484 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 485 
     | 
    
         
            +
                  <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="50% Available">
         
     | 
| 
      
 486 
     | 
    
         
            +
                    <span class="sr-only">50% Available</span>
         
     | 
| 
      
 487 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 488 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 489 
     | 
    
         
            +
                <div class="progress-description">
         
     | 
| 
      
 490 
     | 
    
         
            +
                  RHOS-Undercloud
         
     | 
| 
      
 491 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 492 
     | 
    
         
            +
                <div class="progress progress-label-top-right">
         
     | 
| 
      
 493 
     | 
    
         
            +
                  <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: 70%;"  data-toggle="tooltip" title="70% Used">
         
     | 
| 
      
 494 
     | 
    
         
            +
                    <span><strong>140.0 of 200.0 GB</strong> Used</span>
         
     | 
| 
      
 495 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 496 
     | 
    
         
            +
                  <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100" style="width: 30%;" data-toggle="tooltip" title="30% Available">
         
     | 
| 
      
 497 
     | 
    
         
            +
                    <span class="sr-only">30% Available</span>
         
     | 
| 
      
 498 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 499 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 500 
     | 
    
         
            +
                <div class="progress-description">
         
     | 
| 
      
 501 
     | 
    
         
            +
                  RHEL6-Controller
         
     | 
| 
      
 502 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 503 
     | 
    
         
            +
                <div class="progress progress-label-top-right">
         
     | 
| 
      
 504 
     | 
    
         
            +
                  <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="76.5" aria-valuemin="0" aria-valuemax="100" style="width: 76.5%;"  data-toggle="tooltip" title="76.5% Used">
         
     | 
| 
      
 505 
     | 
    
         
            +
                    <span><strong>153.0 of 200.0 GB</strong> Used</span>
         
     | 
| 
      
 506 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 507 
     | 
    
         
            +
                  <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="23.5" aria-valuemin="0" aria-valuemax="100" style="width: 23.5%;" data-toggle="tooltip" title="23.5% Available">
         
     | 
| 
      
 508 
     | 
    
         
            +
                    <span class="sr-only">23.5% Available</span>
         
     | 
| 
      
 509 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 510 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 511 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 512 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 513 
     | 
    
         
            +
             
     | 
| 
       507 
514 
     | 
    
         
             
                    </div>
         
     | 
| 
       508 
515 
     | 
    
         
             
                    <div class="col-xs-12 col-sm-6">
         
     | 
| 
       509 
     | 
    
         
            -
             
     | 
| 
       510 
     | 
    
         
            -
             
     | 
| 
       511 
     | 
    
         
            -
             
     | 
| 
       512 
     | 
    
         
            -
             
     | 
| 
       513 
     | 
    
         
            -
             
     | 
| 
       514 
     | 
    
         
            -
             
     | 
| 
       515 
     | 
    
         
            -
             
     | 
| 
       516 
     | 
    
         
            -
             
     | 
| 
       517 
     | 
    
         
            -
             
     | 
| 
       518 
     | 
    
         
            -
             
     | 
| 
       519 
     | 
    
         
            -
             
     | 
| 
       520 
     | 
    
         
            -
             
     | 
| 
       521 
     | 
    
         
            -
             
     | 
| 
       522 
     | 
    
         
            -
             
     | 
| 
       523 
     | 
    
         
            -
             
     | 
| 
       524 
     | 
    
         
            -
             
     | 
| 
       525 
     | 
    
         
            -
             
     | 
| 
       526 
     | 
    
         
            -
             
     | 
| 
       527 
     | 
    
         
            -
             
     | 
| 
       528 
     | 
    
         
            -
             
     | 
| 
       529 
     | 
    
         
            -
             
     | 
| 
       530 
     | 
    
         
            -
             
     | 
| 
       531 
     | 
    
         
            -
             
     | 
| 
       532 
     | 
    
         
            -
             
     | 
| 
       533 
     | 
    
         
            -
             
     | 
| 
       534 
     | 
    
         
            -
             
     | 
| 
       535 
     | 
    
         
            -
             
     | 
| 
       536 
     | 
    
         
            -
             
     | 
| 
       537 
     | 
    
         
            -
             
     | 
| 
       538 
     | 
    
         
            -
             
     | 
| 
       539 
     | 
    
         
            -
             
     | 
| 
       540 
     | 
    
         
            -
             
     | 
| 
       541 
     | 
    
         
            -
             
     | 
| 
       542 
     | 
    
         
            -
             
     | 
| 
       543 
     | 
    
         
            -
             
     | 
| 
       544 
     | 
    
         
            -
             
     | 
| 
       545 
     | 
    
         
            -
             
     | 
| 
       546 
     | 
    
         
            -
             
     | 
| 
       547 
     | 
    
         
            -
             
     | 
| 
       548 
     | 
    
         
            -
             
     | 
| 
       549 
     | 
    
         
            -
             
     | 
| 
       550 
     | 
    
         
            -
             
     | 
| 
       551 
     | 
    
         
            -
             
     | 
| 
       552 
     | 
    
         
            -
             
     | 
| 
       553 
     | 
    
         
            -
             
     | 
| 
       554 
     | 
    
         
            -
             
     | 
| 
       555 
     | 
    
         
            -
             
     | 
| 
       556 
     | 
    
         
            -
             
     | 
| 
       557 
     | 
    
         
            -
             
     | 
| 
       558 
     | 
    
         
            -
             
     | 
| 
       559 
     | 
    
         
            -
             
     | 
| 
       560 
     | 
    
         
            -
             
     | 
| 
       561 
     | 
    
         
            -
             
     | 
| 
       562 
     | 
    
         
            -
             
     | 
| 
       563 
     | 
    
         
            -
             
     | 
| 
       564 
     | 
    
         
            -
             
     | 
| 
       565 
     | 
    
         
            -
             
     | 
| 
       566 
     | 
    
         
            -
             
     | 
| 
      
 516 
     | 
    
         
            +
            <div class="card-pf">
         
     | 
| 
      
 517 
     | 
    
         
            +
              <div class="card-pf-heading">
         
     | 
| 
      
 518 
     | 
    
         
            +
                <h2 class="card-pf-title">
         
     | 
| 
      
 519 
     | 
    
         
            +
                  Quotas
         
     | 
| 
      
 520 
     | 
    
         
            +
                </h2>
         
     | 
| 
      
 521 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 522 
     | 
    
         
            +
              <div class="card-pf-body">
         
     | 
| 
      
 523 
     | 
    
         
            +
                <div class="progress-container progress-description-left progress-label-right">
         
     | 
| 
      
 524 
     | 
    
         
            +
                  <div class="progress-description">
         
     | 
| 
      
 525 
     | 
    
         
            +
                    CPU
         
     | 
| 
      
 526 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 527 
     | 
    
         
            +
                  <div class="progress">
         
     | 
| 
      
 528 
     | 
    
         
            +
                    <div class="progress-bar" role="progressbar" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" style="width: 25%;" data-toggle="tooltip" title="25% Used">
         
     | 
| 
      
 529 
     | 
    
         
            +
                      <span><strong>115 of 460</strong> MHz</span>
         
     | 
| 
      
 530 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 531 
     | 
    
         
            +
                    <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%;" data-toggle="tooltip" title="75% Available">
         
     | 
| 
      
 532 
     | 
    
         
            +
                      <span class="sr-only">75% Available</span>
         
     | 
| 
      
 533 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 534 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 535 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 536 
     | 
    
         
            +
                <div class="progress-container progress-description-left progress-label-right">
         
     | 
| 
      
 537 
     | 
    
         
            +
                  <div class="progress-description">
         
     | 
| 
      
 538 
     | 
    
         
            +
                    Memory
         
     | 
| 
      
 539 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 540 
     | 
    
         
            +
                  <div class="progress">
         
     | 
| 
      
 541 
     | 
    
         
            +
                    <div class="progress-bar" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Used">
         
     | 
| 
      
 542 
     | 
    
         
            +
                      <span><strong>8 of 16</strong> GB</span>
         
     | 
| 
      
 543 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 544 
     | 
    
         
            +
                    <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Available">
         
     | 
| 
      
 545 
     | 
    
         
            +
                      <span class="sr-only">50% Available</span>
         
     | 
| 
      
 546 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 547 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 548 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 549 
     | 
    
         
            +
                <div class="progress-container progress-description-left progress-label-right">
         
     | 
| 
      
 550 
     | 
    
         
            +
                  <div class="progress-description">
         
     | 
| 
      
 551 
     | 
    
         
            +
                    Pods
         
     | 
| 
      
 552 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 553 
     | 
    
         
            +
                  <div class="progress">
         
     | 
| 
      
 554 
     | 
    
         
            +
                    <div class="progress-bar" role="progressbar" aria-valuenow="62.5" aria-valuemin="0" aria-valuemax="100" style="width: 62.5%;" data-toggle="tooltip" title="62.5% Used">
         
     | 
| 
      
 555 
     | 
    
         
            +
                      <span><strong>5 of 8</strong> Total</span>
         
     | 
| 
      
 556 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 557 
     | 
    
         
            +
                    <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="37.5" aria-valuemin="0" aria-valuemax="100" style="width: 37.5%;" data-toggle="tooltip" title="37.5% Available">
         
     | 
| 
      
 558 
     | 
    
         
            +
                      <span class="sr-only">37.5% Available</span>
         
     | 
| 
      
 559 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 560 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 561 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 562 
     | 
    
         
            +
                <div class="progress-container progress-description-left progress-label-right">
         
     | 
| 
      
 563 
     | 
    
         
            +
                  <div class="progress-description">
         
     | 
| 
      
 564 
     | 
    
         
            +
                    Services
         
     | 
| 
      
 565 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 566 
     | 
    
         
            +
                  <div class="progress">
         
     | 
| 
      
 567 
     | 
    
         
            +
                    <div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;" data-toggle="tooltip" title="100% Used">
         
     | 
| 
      
 568 
     | 
    
         
            +
                      <span><strong>2 of 2</strong> Total</span>
         
     | 
| 
      
 569 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 570 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 571 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 572 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 573 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 574 
     | 
    
         
            +
             
     | 
| 
       567 
575 
     | 
    
         
             
                    </div>
         
     | 
| 
       568 
576 
     | 
    
         
             
                  </div><!-- /row -->
         
     | 
| 
       569 
577 
     | 
    
         
             
                  <div class="row row-cards-pf">
         
     | 
| 
       570 
578 
     | 
    
         
             
                    <div class="col-md-12">
         
     | 
| 
       571 
     | 
    
         
            -
             
     | 
| 
       572 
     | 
    
         
            -
                      <div class="card-pf card-pf-utilization">
         
     | 
| 
      
 579 
     | 
    
         
            +
            <div class="card-pf card-pf-utilization">
         
     | 
| 
       573 
580 
     | 
    
         
             
              <div class="card-pf-heading">
         
     | 
| 
       574 
581 
     | 
    
         
             
                <p class="card-pf-heading-details">Last 30 days</p>
         
     | 
| 
       575 
582 
     | 
    
         
             
                <h2 class="card-pf-title">
         
     | 
| 
         @@ -745,8 +752,7 @@ 
     | 
|
| 
       745 
752 
     | 
    
         
             
                  </div><!-- /row -->
         
     | 
| 
       746 
753 
     | 
    
         
             
                  <div class="row row-cards-pf">
         
     | 
| 
       747 
754 
     | 
    
         
             
                    <div class="col-xs-12 col-sm-4 col-md-4">
         
     | 
| 
       748 
     | 
    
         
            -
             
     | 
| 
       749 
     | 
    
         
            -
                      <div class="card-pf card-pf-utilization">
         
     | 
| 
      
 755 
     | 
    
         
            +
            <div class="card-pf card-pf-utilization">
         
     | 
| 
       750 
756 
     | 
    
         
             
              <h2 class="card-pf-title">
         
     | 
| 
       751 
757 
     | 
    
         
             
                Network
         
     | 
| 
       752 
758 
     | 
    
         
             
              </h2>
         
     | 
| 
         @@ -812,51 +818,53 @@ 
     | 
|
| 
       812 
818 
     | 
    
         
             
                  <div class="row row-cards-pf">
         
     | 
| 
       813 
819 
     | 
    
         
             
                  <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
         
     | 
| 
       814 
820 
     | 
    
         
             
                    <div class="col-xs-12 col-sm-6 col-md-5">
         
     | 
| 
       815 
     | 
    
         
            -
             
     | 
| 
       816 
     | 
    
         
            -
             
     | 
| 
       817 
     | 
    
         
            -
             
     | 
| 
       818 
     | 
    
         
            -
             
     | 
| 
       819 
     | 
    
         
            -
             
     | 
| 
       820 
     | 
    
         
            -
             
     | 
| 
       821 
     | 
    
         
            -
             
     | 
| 
       822 
     | 
    
         
            -
             
     | 
| 
       823 
     | 
    
         
            -
             
     | 
| 
       824 
     | 
    
         
            -
             
     | 
| 
       825 
     | 
    
         
            -
             
     | 
| 
       826 
     | 
    
         
            -
             
     | 
| 
       827 
     | 
    
         
            -
             
     | 
| 
       828 
     | 
    
         
            -
             
     | 
| 
       829 
     | 
    
         
            -
             
     | 
| 
       830 
     | 
    
         
            -
             
     | 
| 
       831 
     | 
    
         
            -
             
     | 
| 
       832 
     | 
    
         
            -
             
     | 
| 
       833 
     | 
    
         
            -
             
     | 
| 
      
 821 
     | 
    
         
            +
            <div class="card-pf">
         
     | 
| 
      
 822 
     | 
    
         
            +
              <div class="card-pf-heading">
         
     | 
| 
      
 823 
     | 
    
         
            +
                <div class="dropdown card-pf-time-frame-filter">
         
     | 
| 
      
 824 
     | 
    
         
            +
                  <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
         
     | 
| 
      
 825 
     | 
    
         
            +
                    Last 30 Days <span class="caret"></span>
         
     | 
| 
      
 826 
     | 
    
         
            +
                  </button>
         
     | 
| 
      
 827 
     | 
    
         
            +
                  <ul class="dropdown-menu dropdown-menu-right" role="menu">
         
     | 
| 
      
 828 
     | 
    
         
            +
                    <li><a href="#">Last 60 Days</a></li>
         
     | 
| 
      
 829 
     | 
    
         
            +
                    <li><a href="#">Last 90 Days</a></li>
         
     | 
| 
      
 830 
     | 
    
         
            +
                  </ul>
         
     | 
| 
      
 831 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 832 
     | 
    
         
            +
                <h2 class="card-pf-title">
         
     | 
| 
      
 833 
     | 
    
         
            +
                  Card Title
         
     | 
| 
      
 834 
     | 
    
         
            +
                </h2>
         
     | 
| 
      
 835 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 836 
     | 
    
         
            +
              <div class="card-pf-body">
         
     | 
| 
      
 837 
     | 
    
         
            +
                <p>[card contents]</p>
         
     | 
| 
      
 838 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 839 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 840 
     | 
    
         
            +
             
     | 
| 
       834 
841 
     | 
    
         
             
                    </div>
         
     | 
| 
       835 
842 
     | 
    
         
             
                    <div class="col-xs-12 col-sm-6 col-md-7">
         
     | 
| 
       836 
     | 
    
         
            -
             
     | 
| 
       837 
     | 
    
         
            -
             
     | 
| 
       838 
     | 
    
         
            -
             
     | 
| 
       839 
     | 
    
         
            -
             
     | 
| 
       840 
     | 
    
         
            -
             
     | 
| 
       841 
     | 
    
         
            -
             
     | 
| 
       842 
     | 
    
         
            -
             
     | 
| 
       843 
     | 
    
         
            -
             
     | 
| 
       844 
     | 
    
         
            -
             
     | 
| 
       845 
     | 
    
         
            -
             
     | 
| 
       846 
     | 
    
         
            -
             
     | 
| 
       847 
     | 
    
         
            -
             
     | 
| 
       848 
     | 
    
         
            -
             
     | 
| 
       849 
     | 
    
         
            -
             
     | 
| 
       850 
     | 
    
         
            -
             
     | 
| 
       851 
     | 
    
         
            -
             
     | 
| 
       852 
     | 
    
         
            -
             
     | 
| 
       853 
     | 
    
         
            -
             
     | 
| 
       854 
     | 
    
         
            -
             
     | 
| 
       855 
     | 
    
         
            -
             
     | 
| 
       856 
     | 
    
         
            -
             
     | 
| 
       857 
     | 
    
         
            -
             
     | 
| 
       858 
     | 
    
         
            -
             
     | 
| 
       859 
     | 
    
         
            -
             
     | 
| 
      
 843 
     | 
    
         
            +
            <div class="card-pf">
         
     | 
| 
      
 844 
     | 
    
         
            +
              <h2 class="card-pf-title">
         
     | 
| 
      
 845 
     | 
    
         
            +
                Card Title
         
     | 
| 
      
 846 
     | 
    
         
            +
              </h2>
         
     | 
| 
      
 847 
     | 
    
         
            +
              <div class="card-pf-body">
         
     | 
| 
      
 848 
     | 
    
         
            +
                <p>[card contents]</p>
         
     | 
| 
      
 849 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 850 
     | 
    
         
            +
              <div class="card-pf-footer">
         
     | 
| 
      
 851 
     | 
    
         
            +
                <div class="dropdown card-pf-time-frame-filter">
         
     | 
| 
      
 852 
     | 
    
         
            +
                  <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
         
     | 
| 
      
 853 
     | 
    
         
            +
                    Last 30 Days <span class="caret"></span>
         
     | 
| 
      
 854 
     | 
    
         
            +
                  </button>
         
     | 
| 
      
 855 
     | 
    
         
            +
                  <ul class="dropdown-menu dropdown-menu-right" role="menu">
         
     | 
| 
      
 856 
     | 
    
         
            +
                    <li><a href="#">Last 60 Days</a></li>
         
     | 
| 
      
 857 
     | 
    
         
            +
                    <li><a href="#">Last 90 Days</a></li>
         
     | 
| 
      
 858 
     | 
    
         
            +
                  </ul>
         
     | 
| 
      
 859 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 860 
     | 
    
         
            +
                <p>
         
     | 
| 
      
 861 
     | 
    
         
            +
                  <a href="#" class="card-pf-link-with-icon">
         
     | 
| 
      
 862 
     | 
    
         
            +
                    <span class="pficon pficon-add-circle-o"></span>Add New Cluster
         
     | 
| 
      
 863 
     | 
    
         
            +
                  </a>
         
     | 
| 
      
 864 
     | 
    
         
            +
                </p>
         
     | 
| 
      
 865 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 866 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 867 
     | 
    
         
            +
             
     | 
| 
       860 
868 
     | 
    
         
             
                    </div>
         
     | 
| 
       861 
869 
     | 
    
         
             
                  </div><!-- /row -->
         
     | 
| 
       862 
870 
     | 
    
         
             
                  <div class="row row-cards-pf">
         
     |