patternfly-sass 3.11.0 → 3.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/assets/stylesheets/patternfly/_bootstrap-treeview.scss +28 -6
- data/assets/stylesheets/patternfly/_dropdowns.scss +11 -0
- data/assets/stylesheets/patternfly/_forms.scss +14 -0
- data/assets/stylesheets/patternfly/_list-view.scss +63 -0
- data/assets/stylesheets/patternfly/_toolbar.scss +11 -3
- data/assets/stylesheets/patternfly/_wizard.scss +44 -8
- data/assets/stylesheets/patternfly/lib/bootstrap-datetimepicker.scss +4 -4
- data/bower.json +2 -2
- data/lib/patternfly-sass/version.rb +2 -2
- data/spec/html/bootstrap-treeview-2.html +1 -1
- data/spec/html/bootstrap-treeview.html +16 -3
- data/spec/html/card-view-multi-select.html +6 -24
- data/spec/html/card-view-single-select.html +6 -24
- data/spec/html/cards.html +3 -0
- data/spec/html/dist/css/patternfly-additions.css +194 -118
- data/spec/html/dist/css/patternfly-additions.css.map +1 -1
- data/spec/html/dist/css/patternfly-additions.min.css +2 -2
- data/spec/html/dist/css/patternfly-additions.min.css.map +1 -1
- data/spec/html/dist/css/patternfly.css +20 -38
- data/spec/html/dist/css/patternfly.css.map +1 -1
- data/spec/html/dist/css/patternfly.min.css +2 -2
- data/spec/html/dist/css/patternfly.min.css.map +1 -1
- data/spec/html/forms.html +365 -226
- data/spec/html/horizontal-navigation.html +3 -0
- data/spec/html/index.html +6 -0
- data/spec/html/list-view-compound-expansion.html +1716 -0
- data/spec/html/list-view-rows.html +4 -0
- data/spec/html/list-view-simple-expansion.html +999 -0
- data/spec/html/list-view.html +6 -24
- data/spec/html/notification-drawer-horizontal-nav.html +3 -0
- data/spec/html/notification-drawer-vertical-nav.html +3 -0
- data/spec/html/toolbar.html +8 -11
- data/spec/html/vertical-navigation-primary-only.html +3 -0
- data/spec/html/vertical-navigation-with-badges.html +3 -0
- data/spec/html/vertical-navigation-with-secondary.html +3 -0
- data/spec/html/vertical-navigation-with-tertiary-no-icons.html +3 -0
- data/spec/html/vertical-navigation-with-tertiary-pins.html +3 -0
- data/spec/html/wizard.html +574 -318
- metadata +6 -2
@@ -157,11 +157,9 @@
|
|
157
157
|
<div class="input-group-btn">
|
158
158
|
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Name <span class="caret"></span></button>
|
159
159
|
<ul class="dropdown-menu">
|
160
|
-
<li><a href="#">
|
161
|
-
<li><a href="#">
|
162
|
-
<li><a href="#">
|
163
|
-
<li role="separator" class="divider"></li>
|
164
|
-
<li><a href="#">Separated link</a></li>
|
160
|
+
<li class="selected"><a href="#">Name</a></li>
|
161
|
+
<li><a href="#">Type</a></li>
|
162
|
+
<li><a href="#">Color</a></li>
|
165
163
|
</ul>
|
166
164
|
</div><!-- /btn-group -->
|
167
165
|
<input type="text" class="form-control" id="filter" placeholder="Filter By Name...">
|
@@ -171,11 +169,9 @@
|
|
171
169
|
<div class="dropdown btn-group">
|
172
170
|
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Name <span class="caret"></span></button>
|
173
171
|
<ul class="dropdown-menu">
|
174
|
-
<li><a href="#">
|
175
|
-
<li><a href="#">
|
176
|
-
<li><a href="#">
|
177
|
-
<li role="separator" class="divider"></li>
|
178
|
-
<li><a href="#">Separated link</a></li>
|
172
|
+
<li class="selected"><a href="#">Name</a></li>
|
173
|
+
<li><a href="#">Type</a></li>
|
174
|
+
<li><a href="#">Last Modified</a></li>
|
179
175
|
</ul>
|
180
176
|
</div>
|
181
177
|
<button class="btn btn-link" type="button">
|
@@ -257,21 +253,7 @@
|
|
257
253
|
</div><!-- /col -->
|
258
254
|
</div><!-- /row -->
|
259
255
|
</div><!-- /container -->
|
260
|
-
<script>
|
261
|
-
(function($) {
|
262
|
-
$(document).ready(function() {
|
263
|
-
// Upon clicking the find button, show the find dropdown content
|
264
|
-
$(".btn-find").click(function () {
|
265
|
-
$(".find-pf-dropdown-container").toggle();
|
266
|
-
});
|
267
|
-
// Upon clicking the find close button, hide the find dropdown content
|
268
|
-
$(".btn-find-close").click(function () {
|
269
|
-
$(".find-pf-dropdown-container").hide();
|
270
|
-
});
|
271
256
|
|
272
|
-
});
|
273
|
-
})(jQuery);
|
274
|
-
</script>
|
275
257
|
<div class="container-fluid container-cards-pf">
|
276
258
|
<div class="row row-cards-pf">
|
277
259
|
<div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
|
@@ -157,11 +157,9 @@
|
|
157
157
|
<div class="input-group-btn">
|
158
158
|
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Name <span class="caret"></span></button>
|
159
159
|
<ul class="dropdown-menu">
|
160
|
-
<li><a href="#">
|
161
|
-
<li><a href="#">
|
162
|
-
<li><a href="#">
|
163
|
-
<li role="separator" class="divider"></li>
|
164
|
-
<li><a href="#">Separated link</a></li>
|
160
|
+
<li class="selected"><a href="#">Name</a></li>
|
161
|
+
<li><a href="#">Type</a></li>
|
162
|
+
<li><a href="#">Color</a></li>
|
165
163
|
</ul>
|
166
164
|
</div><!-- /btn-group -->
|
167
165
|
<input type="text" class="form-control" id="filter" placeholder="Filter By Name...">
|
@@ -171,11 +169,9 @@
|
|
171
169
|
<div class="dropdown btn-group">
|
172
170
|
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Name <span class="caret"></span></button>
|
173
171
|
<ul class="dropdown-menu">
|
174
|
-
<li><a href="#">
|
175
|
-
<li><a href="#">
|
176
|
-
<li><a href="#">
|
177
|
-
<li role="separator" class="divider"></li>
|
178
|
-
<li><a href="#">Separated link</a></li>
|
172
|
+
<li class="selected"><a href="#">Name</a></li>
|
173
|
+
<li><a href="#">Type</a></li>
|
174
|
+
<li><a href="#">Last Modified</a></li>
|
179
175
|
</ul>
|
180
176
|
</div>
|
181
177
|
<button class="btn btn-link" type="button">
|
@@ -257,21 +253,7 @@
|
|
257
253
|
</div><!-- /col -->
|
258
254
|
</div><!-- /row -->
|
259
255
|
</div><!-- /container -->
|
260
|
-
<script>
|
261
|
-
(function($) {
|
262
|
-
$(document).ready(function() {
|
263
|
-
// Upon clicking the find button, show the find dropdown content
|
264
|
-
$(".btn-find").click(function () {
|
265
|
-
$(".find-pf-dropdown-container").toggle();
|
266
|
-
});
|
267
|
-
// Upon clicking the find close button, hide the find dropdown content
|
268
|
-
$(".btn-find-close").click(function () {
|
269
|
-
$(".find-pf-dropdown-container").hide();
|
270
|
-
});
|
271
256
|
|
272
|
-
});
|
273
|
-
})(jQuery);
|
274
|
-
</script>
|
275
257
|
<div class="container-fluid container-cards-pf">
|
276
258
|
<div class="row row-cards-pf">
|
277
259
|
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-3">
|
data/spec/html/cards.html
CHANGED
@@ -753,6 +753,7 @@
|
|
753
753
|
Last 30 Days <span class="caret"></span>
|
754
754
|
</button>
|
755
755
|
<ul class="dropdown-menu dropdown-menu-right" role="menu">
|
756
|
+
<li class="selected"><a href="#">Last 30 Days</a></li>
|
756
757
|
<li><a href="#">Last 60 Days</a></li>
|
757
758
|
<li><a href="#">Last 90 Days</a></li>
|
758
759
|
</ul>
|
@@ -781,6 +782,7 @@
|
|
781
782
|
Last 30 Days <span class="caret"></span>
|
782
783
|
</button>
|
783
784
|
<ul class="dropdown-menu dropdown-menu-right" role="menu">
|
785
|
+
<li class="selected"><a href="#">Last 30 Days</a></li>
|
784
786
|
<li><a href="#">Last 60 Days</a></li>
|
785
787
|
<li><a href="#">Last 90 Days</a></li>
|
786
788
|
</ul>
|
@@ -811,6 +813,7 @@
|
|
811
813
|
Last 30 Days <span class="caret"></span>
|
812
814
|
</button>
|
813
815
|
<ul class="dropdown-menu dropdown-menu-right" role="menu">
|
816
|
+
<li class="selected"><a href="#">Last 30 Days</a></li>
|
814
817
|
<li><a href="#">Last 60 Days</a></li>
|
815
818
|
<li><a href="#">Last 90 Days</a></li>
|
816
819
|
</ul>
|
@@ -1143,7 +1143,6 @@ select.selectpicker {
|
|
1143
1143
|
display: inline-block;
|
1144
1144
|
top: 0;
|
1145
1145
|
border-radius: 1px;
|
1146
|
-
-webkit-transform: translate3d(0, 0, 0);
|
1147
1146
|
transform: translate3d(0, 0, 0);
|
1148
1147
|
}
|
1149
1148
|
.bootstrap-switch .bootstrap-switch-handle-on,
|
@@ -2263,6 +2262,7 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
|
|
2263
2262
|
background: transparent;
|
2264
2263
|
border-bottom: 1px solid transparent !important;
|
2265
2264
|
border-top: 1px solid transparent !important;
|
2265
|
+
cursor: default !important;
|
2266
2266
|
margin-bottom: 0;
|
2267
2267
|
overflow: hidden;
|
2268
2268
|
padding: 0 10px;
|
@@ -2270,13 +2270,12 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
|
|
2270
2270
|
white-space: nowrap;
|
2271
2271
|
}
|
2272
2272
|
.treeview .list-group-item:hover {
|
2273
|
-
background:
|
2274
|
-
border-color: #bee1f4 !important;
|
2273
|
+
background: none !important;
|
2275
2274
|
}
|
2276
2275
|
.treeview .list-group-item.node-selected {
|
2277
|
-
background:
|
2278
|
-
border-color:
|
2279
|
-
color:
|
2276
|
+
background: none !important;
|
2277
|
+
border-color: transparent !important;
|
2278
|
+
color: inherit !important;
|
2280
2279
|
}
|
2281
2280
|
.treeview .list-group-item.node-check-changed span.node-icon,
|
2282
2281
|
.treeview .list-group-item.node-check-changed span.text {
|
@@ -2294,6 +2293,9 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
|
|
2294
2293
|
.treeview span.icon.check-icon {
|
2295
2294
|
margin-right: 10px;
|
2296
2295
|
}
|
2296
|
+
.treeview span.icon.expand-icon {
|
2297
|
+
cursor: pointer !important;
|
2298
|
+
}
|
2297
2299
|
.treeview span.image {
|
2298
2300
|
background-repeat: no-repeat;
|
2299
2301
|
background-size: contain;
|
@@ -2311,9 +2313,27 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
|
|
2311
2313
|
color: #d1d1d1;
|
2312
2314
|
cursor: not-allowed;
|
2313
2315
|
}
|
2316
|
+
.treeview .node-disabled span.expand-icon {
|
2317
|
+
cursor: default !important;
|
2318
|
+
}
|
2314
2319
|
.treeview .node-hidden {
|
2315
2320
|
display: none;
|
2316
2321
|
}
|
2322
|
+
.treeview-pf-hover .list-group-item {
|
2323
|
+
cursor: pointer !important;
|
2324
|
+
}
|
2325
|
+
.treeview-pf-hover .list-group-item:hover {
|
2326
|
+
background-color: #def3ff !important;
|
2327
|
+
border-color: #bee1f4 !important;
|
2328
|
+
}
|
2329
|
+
.treeview-pf-select .list-group-item {
|
2330
|
+
cursor: pointer !important;
|
2331
|
+
}
|
2332
|
+
.treeview-pf-select .list-group-item.node-selected {
|
2333
|
+
background: #0088ce !important;
|
2334
|
+
border-color: #0088ce !important;
|
2335
|
+
color: #fff !important;
|
2336
|
+
}
|
2317
2337
|
.card-pf {
|
2318
2338
|
background: #fff;
|
2319
2339
|
border-top: 2px solid transparent;
|
@@ -3424,12 +3444,16 @@ a.disabled {
|
|
3424
3444
|
text-decoration: none;
|
3425
3445
|
}
|
3426
3446
|
.list-view-pf .list-group-item {
|
3427
|
-
-
|
3428
|
-
-
|
3429
|
-
|
3430
|
-
|
3447
|
+
-ms-flex-align: start;
|
3448
|
+
align-items: flex-start;
|
3449
|
+
background-clip: padding-box;
|
3450
|
+
border-color: transparent #fff;
|
3451
|
+
border-style: solid;
|
3452
|
+
border-width: 1px;
|
3431
3453
|
display: -ms-flexbox;
|
3432
3454
|
display: flex;
|
3455
|
+
-ms-flex-wrap: wrap;
|
3456
|
+
flex-wrap: wrap;
|
3433
3457
|
padding-bottom: 0;
|
3434
3458
|
padding-top: 0;
|
3435
3459
|
}
|
@@ -3441,20 +3465,34 @@ a.disabled {
|
|
3441
3465
|
.list-view-pf .list-group-item:after {
|
3442
3466
|
clear: both;
|
3443
3467
|
}
|
3468
|
+
.list-view-pf .list-group-item.list-view-pf-expand-active {
|
3469
|
+
background-color: #ededed;
|
3470
|
+
}
|
3444
3471
|
.list-view-pf .list-group-item.active {
|
3445
3472
|
color: #555;
|
3446
3473
|
background-color: #def3ff;
|
3474
|
+
background-clip: border-box;
|
3475
|
+
border-color: #39a5dc transparent transparent;
|
3447
3476
|
z-index: auto;
|
3448
3477
|
}
|
3449
3478
|
.list-view-pf .list-group-item:hover {
|
3450
3479
|
background-color: #ededed;
|
3480
|
+
border-left-color: transparent;
|
3481
|
+
border-right-color: transparent;
|
3482
|
+
}
|
3483
|
+
.list-view-pf .list-group-item.list-view-pf-expand-active {
|
3484
|
+
border: solid 1px #39a5dc;
|
3485
|
+
}
|
3486
|
+
.list-view-pf .list-group-item.list-view-pf-expand-active:first-child {
|
3487
|
+
border-top-color: #39a5dc;
|
3488
|
+
}
|
3489
|
+
.list-view-pf .list-group-item:first-child {
|
3490
|
+
border-top: 1px solid transparent;
|
3451
3491
|
}
|
3452
3492
|
@media (min-width: 992px) {
|
3453
3493
|
.list-view-pf .list-group-item {
|
3454
|
-
-
|
3455
|
-
-
|
3456
|
-
-ms-grid-row-align: center;
|
3457
|
-
align-items: center;
|
3494
|
+
-ms-flex-align: center;
|
3495
|
+
align-items: center;
|
3458
3496
|
}
|
3459
3497
|
}
|
3460
3498
|
.list-view-pf .list-group-item-heading {
|
@@ -3467,9 +3505,8 @@ a.disabled {
|
|
3467
3505
|
}
|
3468
3506
|
@media (min-width: 992px) {
|
3469
3507
|
.list-view-pf .list-group-item-heading {
|
3470
|
-
-
|
3471
|
-
|
3472
|
-
flex: 1 0 calc(25% - 20px);
|
3508
|
+
-ms-flex: 1 0 calc(25% - 20px);
|
3509
|
+
flex: 1 0 calc(25% - 20px);
|
3473
3510
|
float: left;
|
3474
3511
|
font-size: 12px;
|
3475
3512
|
margin: 0 20px 0 0;
|
@@ -3485,9 +3522,8 @@ a.disabled {
|
|
3485
3522
|
}
|
3486
3523
|
@media (min-width: 992px) {
|
3487
3524
|
.list-view-pf .list-group-item-text {
|
3488
|
-
-
|
3489
|
-
|
3490
|
-
flex: 1 0 auto;
|
3525
|
+
-ms-flex: 1 0 auto;
|
3526
|
+
flex: 1 0 auto;
|
3491
3527
|
float: left;
|
3492
3528
|
margin: 0 40px 0 0;
|
3493
3529
|
width: calc(75% - 40px);
|
@@ -3498,44 +3534,36 @@ a.disabled {
|
|
3498
3534
|
margin-bottom: 20px;
|
3499
3535
|
margin-left: 20px;
|
3500
3536
|
margin-top: 20px;
|
3501
|
-
-
|
3502
|
-
|
3503
|
-
order: 2;
|
3537
|
+
-ms-flex-order: 2;
|
3538
|
+
order: 2;
|
3504
3539
|
}
|
3505
3540
|
.list-view-pf-actions button,
|
3506
3541
|
.list-view-pf-actions > a {
|
3507
3542
|
margin-left: 10px;
|
3508
3543
|
}
|
3509
3544
|
.list-view-pf-top-align .list-view-pf-actions {
|
3510
|
-
-
|
3511
|
-
-
|
3512
|
-
align-self: flex-start;
|
3545
|
+
-ms-flex-item-align: start;
|
3546
|
+
align-self: flex-start;
|
3513
3547
|
}
|
3514
3548
|
.list-view-pf-additional-info {
|
3515
|
-
-
|
3516
|
-
-
|
3517
|
-
align-items: center;
|
3518
|
-
display: -webkit-flex;
|
3549
|
+
-ms-flex-align: center;
|
3550
|
+
align-items: center;
|
3519
3551
|
display: -ms-flexbox;
|
3520
3552
|
display: flex;
|
3521
|
-
-
|
3522
|
-
|
3523
|
-
flex-wrap: wrap;
|
3553
|
+
-ms-flex-wrap: wrap;
|
3554
|
+
flex-wrap: wrap;
|
3524
3555
|
}
|
3525
3556
|
@media (min-width: 992px) {
|
3526
3557
|
.list-view-pf-additional-info {
|
3527
|
-
-
|
3528
|
-
|
3529
|
-
flex: 1 0 auto;
|
3558
|
+
-ms-flex: 1 0 auto;
|
3559
|
+
flex: 1 0 auto;
|
3530
3560
|
float: left;
|
3531
3561
|
width: 50%;
|
3532
3562
|
}
|
3533
3563
|
}
|
3534
3564
|
.list-view-pf-additional-info-item {
|
3535
|
-
-
|
3536
|
-
-
|
3537
|
-
-ms-grid-row-align: center;
|
3538
|
-
align-items: center;
|
3565
|
+
-ms-flex-align: center;
|
3566
|
+
align-items: center;
|
3539
3567
|
display: inline-block;
|
3540
3568
|
margin-right: 20px;
|
3541
3569
|
max-width: 100%;
|
@@ -3543,16 +3571,14 @@ a.disabled {
|
|
3543
3571
|
}
|
3544
3572
|
@supports (display: flex) {
|
3545
3573
|
.list-view-pf-additional-info-item {
|
3546
|
-
display: -webkit-flex;
|
3547
3574
|
display: -ms-flexbox;
|
3548
3575
|
display: flex;
|
3549
3576
|
}
|
3550
3577
|
}
|
3551
3578
|
.list-view-pf-additional-info-item.list-view-pf-additional-info-item-stacked {
|
3552
3579
|
text-align: center;
|
3553
|
-
-
|
3554
|
-
|
3555
|
-
flex-direction: column;
|
3580
|
+
-ms-flex-direction: column;
|
3581
|
+
flex-direction: column;
|
3556
3582
|
}
|
3557
3583
|
.list-view-pf-additional-info-item.list-view-pf-additional-info-item-stacked strong {
|
3558
3584
|
font-size: 13px;
|
@@ -3575,29 +3601,23 @@ a.disabled {
|
|
3575
3601
|
width: 60px;
|
3576
3602
|
}
|
3577
3603
|
.list-view-pf-body {
|
3578
|
-
-
|
3579
|
-
-
|
3580
|
-
-ms-grid-row-align: center;
|
3581
|
-
align-items: center;
|
3604
|
+
-ms-flex-align: center;
|
3605
|
+
align-items: center;
|
3582
3606
|
display: table-cell;
|
3583
|
-
-
|
3584
|
-
|
3585
|
-
flex: 1;
|
3607
|
+
-ms-flex: 1;
|
3608
|
+
flex: 1;
|
3586
3609
|
min-width: 0;
|
3587
3610
|
vertical-align: top;
|
3588
3611
|
width: 100%;
|
3589
3612
|
}
|
3590
3613
|
@media (min-width: 992px) {
|
3591
3614
|
.list-view-pf-body {
|
3592
|
-
-
|
3593
|
-
-
|
3594
|
-
align-items: center;
|
3595
|
-
display: -webkit-flex;
|
3615
|
+
-ms-flex-align: center;
|
3616
|
+
align-items: center;
|
3596
3617
|
display: -ms-flexbox;
|
3597
3618
|
display: flex;
|
3598
|
-
-
|
3599
|
-
|
3600
|
-
flex-direction: row;
|
3619
|
+
-ms-flex-direction: row;
|
3620
|
+
flex-direction: row;
|
3601
3621
|
}
|
3602
3622
|
}
|
3603
3623
|
.list-view-pf-checkbox {
|
@@ -3609,24 +3629,20 @@ a.disabled {
|
|
3609
3629
|
padding: 3px 10px 3px 0;
|
3610
3630
|
}
|
3611
3631
|
.list-view-pf-top-align .list-view-pf-checkbox {
|
3612
|
-
-
|
3613
|
-
-
|
3614
|
-
align-self: flex-start;
|
3632
|
+
-ms-flex-item-align: start;
|
3633
|
+
align-self: flex-start;
|
3615
3634
|
}
|
3616
3635
|
.list-view-pf-description {
|
3617
|
-
-
|
3618
|
-
|
3619
|
-
flex: 1 0 50%;
|
3636
|
+
-ms-flex: 1 0 50%;
|
3637
|
+
flex: 1 0 50%;
|
3620
3638
|
}
|
3621
3639
|
.list-view-pf-stacked .list-view-pf-description {
|
3622
3640
|
display: block;
|
3623
3641
|
}
|
3624
3642
|
@media (min-width: 992px) {
|
3625
3643
|
.list-view-pf-description {
|
3626
|
-
-
|
3627
|
-
-
|
3628
|
-
align-items: center;
|
3629
|
-
display: -webkit-flex;
|
3644
|
+
-ms-flex-align: center;
|
3645
|
+
align-items: center;
|
3630
3646
|
display: -ms-flexbox;
|
3631
3647
|
display: flex;
|
3632
3648
|
float: left;
|
@@ -3701,31 +3717,24 @@ a.disabled {
|
|
3701
3717
|
color: #ec7a08;
|
3702
3718
|
}
|
3703
3719
|
.list-view-pf-main-info {
|
3704
|
-
-
|
3705
|
-
-
|
3706
|
-
align-items: flex-start;
|
3707
|
-
display: -webkit-flex;
|
3720
|
+
-ms-flex-align: start;
|
3721
|
+
align-items: flex-start;
|
3708
3722
|
display: -ms-flexbox;
|
3709
3723
|
display: flex;
|
3710
|
-
-
|
3711
|
-
|
3712
|
-
flex: 1;
|
3724
|
+
-ms-flex: 1;
|
3725
|
+
flex: 1;
|
3713
3726
|
min-width: 0;
|
3714
3727
|
padding-bottom: 20px;
|
3715
3728
|
padding-top: 20px;
|
3716
3729
|
}
|
3717
3730
|
@media (min-width: 992px) {
|
3718
3731
|
.list-view-pf-main-info {
|
3719
|
-
-
|
3720
|
-
-
|
3721
|
-
-ms-grid-row-align: center;
|
3722
|
-
align-items: center;
|
3732
|
+
-ms-flex-align: center;
|
3733
|
+
align-items: center;
|
3723
3734
|
}
|
3724
3735
|
.list-view-pf-top-align .list-view-pf-main-info {
|
3725
|
-
-
|
3726
|
-
-
|
3727
|
-
-ms-grid-row-align: flex-start;
|
3728
|
-
align-items: flex-start;
|
3736
|
+
-ms-flex-align: start;
|
3737
|
+
align-items: flex-start;
|
3729
3738
|
}
|
3730
3739
|
}
|
3731
3740
|
.list-view-pf-stacked .list-group-item-heading {
|
@@ -3741,8 +3750,51 @@ a.disabled {
|
|
3741
3750
|
width: auto;
|
3742
3751
|
}
|
3743
3752
|
.list-view-pf-view {
|
3753
|
+
background: #ededed;
|
3754
|
+
border: none;
|
3744
3755
|
margin-top: 30px;
|
3745
3756
|
}
|
3757
|
+
.list-group-item-header {
|
3758
|
+
box-sizing: content-box;
|
3759
|
+
cursor: pointer;
|
3760
|
+
margin: 0 -15px;
|
3761
|
+
padding: 0 15px;
|
3762
|
+
width: 100%;
|
3763
|
+
}
|
3764
|
+
.list-view-pf-expand {
|
3765
|
+
cursor: pointer;
|
3766
|
+
float: left;
|
3767
|
+
margin-bottom: 20px;
|
3768
|
+
margin-right: 2px;
|
3769
|
+
margin-top: 20px;
|
3770
|
+
padding: 3px 0;
|
3771
|
+
}
|
3772
|
+
.list-view-pf-expand.active,
|
3773
|
+
.list-view-pf-expand:hover {
|
3774
|
+
color: #0088ce;
|
3775
|
+
}
|
3776
|
+
.list-view-pf-additional-info-item .list-view-pf-expand {
|
3777
|
+
margin: 0;
|
3778
|
+
padding: 0;
|
3779
|
+
}
|
3780
|
+
.list-view-pf-expand .fa-angle-right {
|
3781
|
+
cursor: pointer;
|
3782
|
+
font-size: 17px;
|
3783
|
+
margin-right: 5px;
|
3784
|
+
margin-top: 2px;
|
3785
|
+
width: 10px;
|
3786
|
+
}
|
3787
|
+
.list-group-item-container {
|
3788
|
+
background: #fff;
|
3789
|
+
border-top: solid 1px #39a5dc;
|
3790
|
+
box-sizing: content-box;
|
3791
|
+
margin: -1px -15px 0;
|
3792
|
+
-ms-flex-order: 3;
|
3793
|
+
order: 3;
|
3794
|
+
padding: 10px 15px;
|
3795
|
+
position: relative;
|
3796
|
+
width: 100%;
|
3797
|
+
}
|
3746
3798
|
.login-pf {
|
3747
3799
|
height: 100%;
|
3748
3800
|
}
|
@@ -5118,29 +5170,16 @@ a.disabled {
|
|
5118
5170
|
margin-top: 5px;
|
5119
5171
|
}
|
5120
5172
|
}
|
5121
|
-
@-webkit-keyframes rotation {
|
5122
|
-
from {
|
5123
|
-
-webkit-transform: rotate(0deg);
|
5124
|
-
transform: rotate(0deg);
|
5125
|
-
}
|
5126
|
-
to {
|
5127
|
-
-webkit-transform: rotate(359deg);
|
5128
|
-
transform: rotate(359deg);
|
5129
|
-
}
|
5130
|
-
}
|
5131
5173
|
@keyframes rotation {
|
5132
5174
|
from {
|
5133
|
-
|
5134
|
-
transform: rotate(0deg);
|
5175
|
+
transform: rotate(0deg);
|
5135
5176
|
}
|
5136
5177
|
to {
|
5137
|
-
|
5138
|
-
transform: rotate(359deg);
|
5178
|
+
transform: rotate(359deg);
|
5139
5179
|
}
|
5140
5180
|
}
|
5141
5181
|
.spinner {
|
5142
|
-
|
5143
|
-
animation: rotation 600ms infinite linear;
|
5182
|
+
animation: rotation 600ms infinite linear;
|
5144
5183
|
border-bottom: 4px solid rgba(3, 3, 3, 0.25);
|
5145
5184
|
border-left: 4px solid rgba(3, 3, 3, 0.25);
|
5146
5185
|
border-right: 4px solid rgba(3, 3, 3, 0.25);
|
@@ -5465,7 +5504,7 @@ a.disabled {
|
|
5465
5504
|
background: #fff;
|
5466
5505
|
border: solid 1px #bbb;
|
5467
5506
|
display: none;
|
5468
|
-
|
5507
|
+
right: -20px;
|
5469
5508
|
padding: 5px;
|
5470
5509
|
position: absolute;
|
5471
5510
|
top: 35px;
|
@@ -5488,15 +5527,19 @@ a.disabled {
|
|
5488
5527
|
border-bottom: 11px solid #bbb;
|
5489
5528
|
border-left: 11px solid transparent;
|
5490
5529
|
border-right: 11px solid transparent;
|
5491
|
-
|
5530
|
+
right: 35px;
|
5492
5531
|
top: -12px;
|
5493
5532
|
}
|
5533
|
+
.toolbar-pf-find:last-child .find-pf-dropdown-container:before {
|
5534
|
+
right: 15px;
|
5535
|
+
}
|
5494
5536
|
@media (max-width: 768px) {
|
5495
5537
|
.find-pf-dropdown-container:before {
|
5496
5538
|
border-bottom: 11px solid transparent;
|
5497
5539
|
border-right: 11px solid #bbb;
|
5498
5540
|
border-top: 11px solid transparent;
|
5499
5541
|
left: -22px;
|
5542
|
+
right: initial;
|
5500
5543
|
top: 8px;
|
5501
5544
|
}
|
5502
5545
|
}
|
@@ -5504,15 +5547,19 @@ a.disabled {
|
|
5504
5547
|
border-bottom: 10px solid #fff;
|
5505
5548
|
border-left: 10px solid transparent;
|
5506
5549
|
border-right: 10px solid transparent;
|
5507
|
-
|
5550
|
+
right: 36px;
|
5508
5551
|
top: -10px;
|
5509
5552
|
}
|
5553
|
+
.toolbar-pf-find:last-child .find-pf-dropdown-container:after {
|
5554
|
+
right: 16px;
|
5555
|
+
}
|
5510
5556
|
@media (max-width: 768px) {
|
5511
5557
|
.find-pf-dropdown-container:after {
|
5512
5558
|
border-bottom: 10px solid transparent;
|
5513
5559
|
border-right: 10px solid #fff;
|
5514
5560
|
border-top: 10px solid transparent;
|
5515
5561
|
left: -20px;
|
5562
|
+
right: initial;
|
5516
5563
|
top: 9px;
|
5517
5564
|
}
|
5518
5565
|
}
|
@@ -6371,21 +6418,30 @@ a.disabled {
|
|
6371
6418
|
.nav-pf-vertical.transitions .nav-pf-tertiary-nav {
|
6372
6419
|
transition: visibility 100ms, opacity 100ms linear;
|
6373
6420
|
}
|
6421
|
+
.wizard-pf {
|
6422
|
+
height: 100%;
|
6423
|
+
margin: 0 auto;
|
6424
|
+
max-height: 900px;
|
6425
|
+
padding: 10px;
|
6426
|
+
width: auto;
|
6427
|
+
}
|
6428
|
+
.wizard-pf .modal-content {
|
6429
|
+
height: 100%;
|
6430
|
+
}
|
6374
6431
|
.wizard-pf-body {
|
6375
6432
|
padding: 0;
|
6433
|
+
position: static;
|
6376
6434
|
}
|
6377
6435
|
/* styles the sidebard containing the sub-steps */
|
6378
6436
|
.wizard-pf-sidebar {
|
6379
6437
|
background: #fafafa;
|
6380
6438
|
border-right: 1px solid #d1d1d1;
|
6381
6439
|
bottom: 0;
|
6382
|
-
display: table-cell;
|
6383
6440
|
left: 0;
|
6384
6441
|
overflow-x: hidden;
|
6385
6442
|
overflow-y: auto;
|
6386
|
-
position:
|
6443
|
+
position: absolute;
|
6387
6444
|
top: 0;
|
6388
|
-
vertical-align: top;
|
6389
6445
|
}
|
6390
6446
|
.wizard-pf-sidebar .list-group {
|
6391
6447
|
border-top: 0;
|
@@ -6408,7 +6464,7 @@ a.disabled {
|
|
6408
6464
|
padding-left: 20px;
|
6409
6465
|
position: relative;
|
6410
6466
|
white-space: nowrap;
|
6411
|
-
width:
|
6467
|
+
width: 14em;
|
6412
6468
|
}
|
6413
6469
|
.wizard-pf-sidebar .list-group-item > a:hover {
|
6414
6470
|
text-decoration: none;
|
@@ -6466,16 +6522,14 @@ a.disabled {
|
|
6466
6522
|
font-size: 16px;
|
6467
6523
|
display: inline-block;
|
6468
6524
|
height: 120px;
|
6469
|
-
-
|
6470
|
-
-
|
6471
|
-
justify-content: space-around;
|
6525
|
+
-ms-flex-pack: distribute;
|
6526
|
+
justify-content: space-around;
|
6472
6527
|
list-style: none;
|
6473
6528
|
padding: 38px 0 0;
|
6474
6529
|
/* draw the step number in the circle */
|
6475
6530
|
}
|
6476
6531
|
@supports (display: flex) {
|
6477
6532
|
.wizard-pf-steps-indicator {
|
6478
|
-
display: -webkit-flex;
|
6479
6533
|
display: -ms-flexbox;
|
6480
6534
|
display: flex;
|
6481
6535
|
}
|
@@ -6484,12 +6538,10 @@ a.disabled {
|
|
6484
6538
|
counter-increment: section;
|
6485
6539
|
float: left;
|
6486
6540
|
/* float for IE9 since it doesn't support flex. If items wrap, they overlap */
|
6487
|
-
-
|
6488
|
-
|
6489
|
-
|
6490
|
-
|
6491
|
-
-ms-flex-preferred-size: 0;
|
6492
|
-
flex-basis: 0;
|
6541
|
+
-ms-flex-positive: 1;
|
6542
|
+
flex-grow: 1;
|
6543
|
+
-ms-flex-preferred-size: 0;
|
6544
|
+
flex-basis: 0;
|
6493
6545
|
line-height: 15px;
|
6494
6546
|
margin: 0;
|
6495
6547
|
padding: 0;
|
@@ -6558,10 +6610,12 @@ a.disabled {
|
|
6558
6610
|
}
|
6559
6611
|
/* styles the main content portion of the wizard */
|
6560
6612
|
.wizard-pf-main {
|
6561
|
-
|
6613
|
+
height: 100%;
|
6614
|
+
margin-left: 253px;
|
6615
|
+
/* this value is updated by js */
|
6616
|
+
overflow: auto;
|
6562
6617
|
padding: 3em;
|
6563
6618
|
vertical-align: top;
|
6564
|
-
width: 10000px;
|
6565
6619
|
}
|
6566
6620
|
.wizard-pf-main .blank-slate-pf {
|
6567
6621
|
background-color: transparent;
|
@@ -6676,9 +6730,31 @@ a.disabled {
|
|
6676
6730
|
/* styles the footer */
|
6677
6731
|
.wizard-pf-footer {
|
6678
6732
|
border-top: 1px solid #d1d1d1;
|
6733
|
+
bottom: 0;
|
6734
|
+
left: 0;
|
6679
6735
|
margin-top: 0;
|
6680
6736
|
padding-bottom: 17px;
|
6737
|
+
position: absolute;
|
6738
|
+
right: 0;
|
6681
6739
|
}
|
6682
6740
|
.wizard-pf-footer .btn-cancel {
|
6683
6741
|
margin-right: 25px;
|
6742
|
+
}
|
6743
|
+
.wizard-pf-row {
|
6744
|
+
bottom: 58px;
|
6745
|
+
/* this value is updated by js */
|
6746
|
+
position: absolute;
|
6747
|
+
overflow: hidden;
|
6748
|
+
top: 172px;
|
6749
|
+
/* this value is updated by js */
|
6750
|
+
width: 100%;
|
6751
|
+
}
|
6752
|
+
@media (min-width: 992px) {
|
6753
|
+
.wizard-pf {
|
6754
|
+
padding: 30px 0;
|
6755
|
+
width: 900px;
|
6756
|
+
}
|
6757
|
+
.wizard-pf-sidebar .list-group-item > a {
|
6758
|
+
width: 18em;
|
6759
|
+
}
|
6684
6760
|
}
|