@patternfly/react-styles 4.74.7 → 4.74.10
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.
- package/CHANGELOG.md +24 -0
- package/css/components/AlertGroup/alert-group.css +1 -1
- package/css/components/Button/button.css +1 -1
- package/css/components/Divider/divider.css +12 -12
- package/css/components/Drawer/drawer.css +2 -35
- package/css/components/JumpLinks/jump-links.css +1 -1
- package/css/components/MenuToggle/menu-toggle.css +1 -1
- package/css/components/ProgressStepper/progress-stepper.css +1 -1
- package/css/components/Sidebar/sidebar.css +0 -30
- package/css/components/Spinner/spinner.css +2 -2
- package/css/components/Table/table.css +5 -5
- package/css/components/Tabs/tabs.css +1 -1
- package/css/components/TreeView/tree-view.css +29 -1
- package/css/components/TreeView/tree-view.d.ts +1 -0
- package/css/components/TreeView/tree-view.js +1 -0
- package/css/components/TreeView/tree-view.mjs +1 -0
- package/css/utilities/Alignment/alignment.css +0 -15
- package/css/utilities/BackgroundColor/BackgroundColor.css +0 -75
- package/css/utilities/Display/display.css +0 -40
- package/css/utilities/Flex/flex.css +0 -140
- package/css/utilities/Float/float.css +0 -5
- package/css/utilities/Sizing/sizing.css +48 -198
- package/css/utilities/Text/text.css +0 -210
- package/package.json +4 -4
@@ -18,15 +18,12 @@
|
|
18
18
|
.pf-u-flex-direction-column-on-sm {
|
19
19
|
flex-direction: column !important;
|
20
20
|
}
|
21
|
-
|
22
21
|
.pf-u-flex-direction-column-reverse-on-sm {
|
23
22
|
flex-direction: column-reverse !important;
|
24
23
|
}
|
25
|
-
|
26
24
|
.pf-u-flex-direction-row-on-sm {
|
27
25
|
flex-direction: row !important;
|
28
26
|
}
|
29
|
-
|
30
27
|
.pf-u-flex-direction-row-reverse-on-sm {
|
31
28
|
flex-direction: row-reverse !important;
|
32
29
|
}
|
@@ -35,15 +32,12 @@
|
|
35
32
|
.pf-u-flex-direction-column-on-md {
|
36
33
|
flex-direction: column !important;
|
37
34
|
}
|
38
|
-
|
39
35
|
.pf-u-flex-direction-column-reverse-on-md {
|
40
36
|
flex-direction: column-reverse !important;
|
41
37
|
}
|
42
|
-
|
43
38
|
.pf-u-flex-direction-row-on-md {
|
44
39
|
flex-direction: row !important;
|
45
40
|
}
|
46
|
-
|
47
41
|
.pf-u-flex-direction-row-reverse-on-md {
|
48
42
|
flex-direction: row-reverse !important;
|
49
43
|
}
|
@@ -52,15 +46,12 @@
|
|
52
46
|
.pf-u-flex-direction-column-on-lg {
|
53
47
|
flex-direction: column !important;
|
54
48
|
}
|
55
|
-
|
56
49
|
.pf-u-flex-direction-column-reverse-on-lg {
|
57
50
|
flex-direction: column-reverse !important;
|
58
51
|
}
|
59
|
-
|
60
52
|
.pf-u-flex-direction-row-on-lg {
|
61
53
|
flex-direction: row !important;
|
62
54
|
}
|
63
|
-
|
64
55
|
.pf-u-flex-direction-row-reverse-on-lg {
|
65
56
|
flex-direction: row-reverse !important;
|
66
57
|
}
|
@@ -69,15 +60,12 @@
|
|
69
60
|
.pf-u-flex-direction-column-on-xl {
|
70
61
|
flex-direction: column !important;
|
71
62
|
}
|
72
|
-
|
73
63
|
.pf-u-flex-direction-column-reverse-on-xl {
|
74
64
|
flex-direction: column-reverse !important;
|
75
65
|
}
|
76
|
-
|
77
66
|
.pf-u-flex-direction-row-on-xl {
|
78
67
|
flex-direction: row !important;
|
79
68
|
}
|
80
|
-
|
81
69
|
.pf-u-flex-direction-row-reverse-on-xl {
|
82
70
|
flex-direction: row-reverse !important;
|
83
71
|
}
|
@@ -86,15 +74,12 @@
|
|
86
74
|
.pf-u-flex-direction-column-on-2xl {
|
87
75
|
flex-direction: column !important;
|
88
76
|
}
|
89
|
-
|
90
77
|
.pf-u-flex-direction-column-reverse-on-2xl {
|
91
78
|
flex-direction: column-reverse !important;
|
92
79
|
}
|
93
|
-
|
94
80
|
.pf-u-flex-direction-row-on-2xl {
|
95
81
|
flex-direction: row !important;
|
96
82
|
}
|
97
|
-
|
98
83
|
.pf-u-flex-direction-row-reverse-on-2xl {
|
99
84
|
flex-direction: row-reverse !important;
|
100
85
|
}
|
@@ -115,11 +100,9 @@
|
|
115
100
|
.pf-u-flex-wrap-on-sm {
|
116
101
|
flex-wrap: wrap !important;
|
117
102
|
}
|
118
|
-
|
119
103
|
.pf-u-flex-nowrap-on-sm {
|
120
104
|
flex-wrap: nowrap !important;
|
121
105
|
}
|
122
|
-
|
123
106
|
.pf-u-flex-wrap-reverse-on-sm {
|
124
107
|
flex-wrap: wrap-reverse !important;
|
125
108
|
}
|
@@ -128,11 +111,9 @@
|
|
128
111
|
.pf-u-flex-wrap-on-md {
|
129
112
|
flex-wrap: wrap !important;
|
130
113
|
}
|
131
|
-
|
132
114
|
.pf-u-flex-nowrap-on-md {
|
133
115
|
flex-wrap: nowrap !important;
|
134
116
|
}
|
135
|
-
|
136
117
|
.pf-u-flex-wrap-reverse-on-md {
|
137
118
|
flex-wrap: wrap-reverse !important;
|
138
119
|
}
|
@@ -141,11 +122,9 @@
|
|
141
122
|
.pf-u-flex-wrap-on-lg {
|
142
123
|
flex-wrap: wrap !important;
|
143
124
|
}
|
144
|
-
|
145
125
|
.pf-u-flex-nowrap-on-lg {
|
146
126
|
flex-wrap: nowrap !important;
|
147
127
|
}
|
148
|
-
|
149
128
|
.pf-u-flex-wrap-reverse-on-lg {
|
150
129
|
flex-wrap: wrap-reverse !important;
|
151
130
|
}
|
@@ -154,11 +133,9 @@
|
|
154
133
|
.pf-u-flex-wrap-on-xl {
|
155
134
|
flex-wrap: wrap !important;
|
156
135
|
}
|
157
|
-
|
158
136
|
.pf-u-flex-nowrap-on-xl {
|
159
137
|
flex-wrap: nowrap !important;
|
160
138
|
}
|
161
|
-
|
162
139
|
.pf-u-flex-wrap-reverse-on-xl {
|
163
140
|
flex-wrap: wrap-reverse !important;
|
164
141
|
}
|
@@ -167,11 +144,9 @@
|
|
167
144
|
.pf-u-flex-wrap-on-2xl {
|
168
145
|
flex-wrap: wrap !important;
|
169
146
|
}
|
170
|
-
|
171
147
|
.pf-u-flex-nowrap-on-2xl {
|
172
148
|
flex-wrap: nowrap !important;
|
173
149
|
}
|
174
|
-
|
175
150
|
.pf-u-flex-wrap-reverse-on-2xl {
|
176
151
|
flex-wrap: wrap-reverse !important;
|
177
152
|
}
|
@@ -200,19 +175,15 @@
|
|
200
175
|
.pf-u-align-items-flex-start-on-sm {
|
201
176
|
align-items: flex-start !important;
|
202
177
|
}
|
203
|
-
|
204
178
|
.pf-u-align-items-flex-end-on-sm {
|
205
179
|
align-items: flex-end !important;
|
206
180
|
}
|
207
|
-
|
208
181
|
.pf-u-align-items-center-on-sm {
|
209
182
|
align-items: center !important;
|
210
183
|
}
|
211
|
-
|
212
184
|
.pf-u-align-items-baseline-on-sm {
|
213
185
|
align-items: baseline !important;
|
214
186
|
}
|
215
|
-
|
216
187
|
.pf-u-align-items-stretch-on-sm {
|
217
188
|
align-items: stretch !important;
|
218
189
|
}
|
@@ -221,19 +192,15 @@
|
|
221
192
|
.pf-u-align-items-flex-start-on-md {
|
222
193
|
align-items: flex-start !important;
|
223
194
|
}
|
224
|
-
|
225
195
|
.pf-u-align-items-flex-end-on-md {
|
226
196
|
align-items: flex-end !important;
|
227
197
|
}
|
228
|
-
|
229
198
|
.pf-u-align-items-center-on-md {
|
230
199
|
align-items: center !important;
|
231
200
|
}
|
232
|
-
|
233
201
|
.pf-u-align-items-baseline-on-md {
|
234
202
|
align-items: baseline !important;
|
235
203
|
}
|
236
|
-
|
237
204
|
.pf-u-align-items-stretch-on-md {
|
238
205
|
align-items: stretch !important;
|
239
206
|
}
|
@@ -242,19 +209,15 @@
|
|
242
209
|
.pf-u-align-items-flex-start-on-lg {
|
243
210
|
align-items: flex-start !important;
|
244
211
|
}
|
245
|
-
|
246
212
|
.pf-u-align-items-flex-end-on-lg {
|
247
213
|
align-items: flex-end !important;
|
248
214
|
}
|
249
|
-
|
250
215
|
.pf-u-align-items-center-on-lg {
|
251
216
|
align-items: center !important;
|
252
217
|
}
|
253
|
-
|
254
218
|
.pf-u-align-items-baseline-on-lg {
|
255
219
|
align-items: baseline !important;
|
256
220
|
}
|
257
|
-
|
258
221
|
.pf-u-align-items-stretch-on-lg {
|
259
222
|
align-items: stretch !important;
|
260
223
|
}
|
@@ -263,19 +226,15 @@
|
|
263
226
|
.pf-u-align-items-flex-start-on-xl {
|
264
227
|
align-items: flex-start !important;
|
265
228
|
}
|
266
|
-
|
267
229
|
.pf-u-align-items-flex-end-on-xl {
|
268
230
|
align-items: flex-end !important;
|
269
231
|
}
|
270
|
-
|
271
232
|
.pf-u-align-items-center-on-xl {
|
272
233
|
align-items: center !important;
|
273
234
|
}
|
274
|
-
|
275
235
|
.pf-u-align-items-baseline-on-xl {
|
276
236
|
align-items: baseline !important;
|
277
237
|
}
|
278
|
-
|
279
238
|
.pf-u-align-items-stretch-on-xl {
|
280
239
|
align-items: stretch !important;
|
281
240
|
}
|
@@ -284,19 +243,15 @@
|
|
284
243
|
.pf-u-align-items-flex-start-on-2xl {
|
285
244
|
align-items: flex-start !important;
|
286
245
|
}
|
287
|
-
|
288
246
|
.pf-u-align-items-flex-end-on-2xl {
|
289
247
|
align-items: flex-end !important;
|
290
248
|
}
|
291
|
-
|
292
249
|
.pf-u-align-items-center-on-2xl {
|
293
250
|
align-items: center !important;
|
294
251
|
}
|
295
|
-
|
296
252
|
.pf-u-align-items-baseline-on-2xl {
|
297
253
|
align-items: baseline !important;
|
298
254
|
}
|
299
|
-
|
300
255
|
.pf-u-align-items-stretch-on-2xl {
|
301
256
|
align-items: stretch !important;
|
302
257
|
}
|
@@ -325,19 +280,15 @@
|
|
325
280
|
.pf-u-align-self-flex-start-on-sm {
|
326
281
|
align-self: flex-start !important;
|
327
282
|
}
|
328
|
-
|
329
283
|
.pf-u-align-self-flex-end-on-sm {
|
330
284
|
align-self: flex-end !important;
|
331
285
|
}
|
332
|
-
|
333
286
|
.pf-u-align-self-center-on-sm {
|
334
287
|
align-self: center !important;
|
335
288
|
}
|
336
|
-
|
337
289
|
.pf-u-align-self-baseline-on-sm {
|
338
290
|
align-self: baseline !important;
|
339
291
|
}
|
340
|
-
|
341
292
|
.pf-u-align-self-stretch-on-sm {
|
342
293
|
align-self: stretch !important;
|
343
294
|
}
|
@@ -346,19 +297,15 @@
|
|
346
297
|
.pf-u-align-self-flex-start-on-md {
|
347
298
|
align-self: flex-start !important;
|
348
299
|
}
|
349
|
-
|
350
300
|
.pf-u-align-self-flex-end-on-md {
|
351
301
|
align-self: flex-end !important;
|
352
302
|
}
|
353
|
-
|
354
303
|
.pf-u-align-self-center-on-md {
|
355
304
|
align-self: center !important;
|
356
305
|
}
|
357
|
-
|
358
306
|
.pf-u-align-self-baseline-on-md {
|
359
307
|
align-self: baseline !important;
|
360
308
|
}
|
361
|
-
|
362
309
|
.pf-u-align-self-stretch-on-md {
|
363
310
|
align-self: stretch !important;
|
364
311
|
}
|
@@ -367,19 +314,15 @@
|
|
367
314
|
.pf-u-align-self-flex-start-on-lg {
|
368
315
|
align-self: flex-start !important;
|
369
316
|
}
|
370
|
-
|
371
317
|
.pf-u-align-self-flex-end-on-lg {
|
372
318
|
align-self: flex-end !important;
|
373
319
|
}
|
374
|
-
|
375
320
|
.pf-u-align-self-center-on-lg {
|
376
321
|
align-self: center !important;
|
377
322
|
}
|
378
|
-
|
379
323
|
.pf-u-align-self-baseline-on-lg {
|
380
324
|
align-self: baseline !important;
|
381
325
|
}
|
382
|
-
|
383
326
|
.pf-u-align-self-stretch-on-lg {
|
384
327
|
align-self: stretch !important;
|
385
328
|
}
|
@@ -388,19 +331,15 @@
|
|
388
331
|
.pf-u-align-self-flex-start-on-xl {
|
389
332
|
align-self: flex-start !important;
|
390
333
|
}
|
391
|
-
|
392
334
|
.pf-u-align-self-flex-end-on-xl {
|
393
335
|
align-self: flex-end !important;
|
394
336
|
}
|
395
|
-
|
396
337
|
.pf-u-align-self-center-on-xl {
|
397
338
|
align-self: center !important;
|
398
339
|
}
|
399
|
-
|
400
340
|
.pf-u-align-self-baseline-on-xl {
|
401
341
|
align-self: baseline !important;
|
402
342
|
}
|
403
|
-
|
404
343
|
.pf-u-align-self-stretch-on-xl {
|
405
344
|
align-self: stretch !important;
|
406
345
|
}
|
@@ -409,19 +348,15 @@
|
|
409
348
|
.pf-u-align-self-flex-start-on-2xl {
|
410
349
|
align-self: flex-start !important;
|
411
350
|
}
|
412
|
-
|
413
351
|
.pf-u-align-self-flex-end-on-2xl {
|
414
352
|
align-self: flex-end !important;
|
415
353
|
}
|
416
|
-
|
417
354
|
.pf-u-align-self-center-on-2xl {
|
418
355
|
align-self: center !important;
|
419
356
|
}
|
420
|
-
|
421
357
|
.pf-u-align-self-baseline-on-2xl {
|
422
358
|
align-self: baseline !important;
|
423
359
|
}
|
424
|
-
|
425
360
|
.pf-u-align-self-stretch-on-2xl {
|
426
361
|
align-self: stretch !important;
|
427
362
|
}
|
@@ -454,23 +389,18 @@
|
|
454
389
|
.pf-u-align-content-flex-start-on-sm {
|
455
390
|
align-content: flex-start !important;
|
456
391
|
}
|
457
|
-
|
458
392
|
.pf-u-align-content-flex-end-on-sm {
|
459
393
|
align-content: flex-end !important;
|
460
394
|
}
|
461
|
-
|
462
395
|
.pf-u-align-content-center-on-sm {
|
463
396
|
align-content: center !important;
|
464
397
|
}
|
465
|
-
|
466
398
|
.pf-u-align-content-space-between-on-sm {
|
467
399
|
align-content: space-between !important;
|
468
400
|
}
|
469
|
-
|
470
401
|
.pf-u-align-content-space-around-on-sm {
|
471
402
|
align-content: space-around !important;
|
472
403
|
}
|
473
|
-
|
474
404
|
.pf-u-align-content-stretch-on-sm {
|
475
405
|
align-content: stretch !important;
|
476
406
|
}
|
@@ -479,23 +409,18 @@
|
|
479
409
|
.pf-u-align-content-flex-start-on-md {
|
480
410
|
align-content: flex-start !important;
|
481
411
|
}
|
482
|
-
|
483
412
|
.pf-u-align-content-flex-end-on-md {
|
484
413
|
align-content: flex-end !important;
|
485
414
|
}
|
486
|
-
|
487
415
|
.pf-u-align-content-center-on-md {
|
488
416
|
align-content: center !important;
|
489
417
|
}
|
490
|
-
|
491
418
|
.pf-u-align-content-space-between-on-md {
|
492
419
|
align-content: space-between !important;
|
493
420
|
}
|
494
|
-
|
495
421
|
.pf-u-align-content-space-around-on-md {
|
496
422
|
align-content: space-around !important;
|
497
423
|
}
|
498
|
-
|
499
424
|
.pf-u-align-content-stretch-on-md {
|
500
425
|
align-content: stretch !important;
|
501
426
|
}
|
@@ -504,23 +429,18 @@
|
|
504
429
|
.pf-u-align-content-flex-start-on-lg {
|
505
430
|
align-content: flex-start !important;
|
506
431
|
}
|
507
|
-
|
508
432
|
.pf-u-align-content-flex-end-on-lg {
|
509
433
|
align-content: flex-end !important;
|
510
434
|
}
|
511
|
-
|
512
435
|
.pf-u-align-content-center-on-lg {
|
513
436
|
align-content: center !important;
|
514
437
|
}
|
515
|
-
|
516
438
|
.pf-u-align-content-space-between-on-lg {
|
517
439
|
align-content: space-between !important;
|
518
440
|
}
|
519
|
-
|
520
441
|
.pf-u-align-content-space-around-on-lg {
|
521
442
|
align-content: space-around !important;
|
522
443
|
}
|
523
|
-
|
524
444
|
.pf-u-align-content-stretch-on-lg {
|
525
445
|
align-content: stretch !important;
|
526
446
|
}
|
@@ -529,23 +449,18 @@
|
|
529
449
|
.pf-u-align-content-flex-start-on-xl {
|
530
450
|
align-content: flex-start !important;
|
531
451
|
}
|
532
|
-
|
533
452
|
.pf-u-align-content-flex-end-on-xl {
|
534
453
|
align-content: flex-end !important;
|
535
454
|
}
|
536
|
-
|
537
455
|
.pf-u-align-content-center-on-xl {
|
538
456
|
align-content: center !important;
|
539
457
|
}
|
540
|
-
|
541
458
|
.pf-u-align-content-space-between-on-xl {
|
542
459
|
align-content: space-between !important;
|
543
460
|
}
|
544
|
-
|
545
461
|
.pf-u-align-content-space-around-on-xl {
|
546
462
|
align-content: space-around !important;
|
547
463
|
}
|
548
|
-
|
549
464
|
.pf-u-align-content-stretch-on-xl {
|
550
465
|
align-content: stretch !important;
|
551
466
|
}
|
@@ -554,23 +469,18 @@
|
|
554
469
|
.pf-u-align-content-flex-start-on-2xl {
|
555
470
|
align-content: flex-start !important;
|
556
471
|
}
|
557
|
-
|
558
472
|
.pf-u-align-content-flex-end-on-2xl {
|
559
473
|
align-content: flex-end !important;
|
560
474
|
}
|
561
|
-
|
562
475
|
.pf-u-align-content-center-on-2xl {
|
563
476
|
align-content: center !important;
|
564
477
|
}
|
565
|
-
|
566
478
|
.pf-u-align-content-space-between-on-2xl {
|
567
479
|
align-content: space-between !important;
|
568
480
|
}
|
569
|
-
|
570
481
|
.pf-u-align-content-space-around-on-2xl {
|
571
482
|
align-content: space-around !important;
|
572
483
|
}
|
573
|
-
|
574
484
|
.pf-u-align-content-stretch-on-2xl {
|
575
485
|
align-content: stretch !important;
|
576
486
|
}
|
@@ -603,23 +513,18 @@
|
|
603
513
|
.pf-u-justify-content-flex-start-on-sm {
|
604
514
|
justify-content: flex-start !important;
|
605
515
|
}
|
606
|
-
|
607
516
|
.pf-u-justify-content-flex-end-on-sm {
|
608
517
|
justify-content: flex-end !important;
|
609
518
|
}
|
610
|
-
|
611
519
|
.pf-u-justify-content-center-on-sm {
|
612
520
|
justify-content: center !important;
|
613
521
|
}
|
614
|
-
|
615
522
|
.pf-u-justify-content-space-between-on-sm {
|
616
523
|
justify-content: space-between !important;
|
617
524
|
}
|
618
|
-
|
619
525
|
.pf-u-justify-content-space-around-on-sm {
|
620
526
|
justify-content: space-around !important;
|
621
527
|
}
|
622
|
-
|
623
528
|
.pf-u-justify-content-stretch-on-sm {
|
624
529
|
justify-content: stretch !important;
|
625
530
|
}
|
@@ -628,23 +533,18 @@
|
|
628
533
|
.pf-u-justify-content-flex-start-on-md {
|
629
534
|
justify-content: flex-start !important;
|
630
535
|
}
|
631
|
-
|
632
536
|
.pf-u-justify-content-flex-end-on-md {
|
633
537
|
justify-content: flex-end !important;
|
634
538
|
}
|
635
|
-
|
636
539
|
.pf-u-justify-content-center-on-md {
|
637
540
|
justify-content: center !important;
|
638
541
|
}
|
639
|
-
|
640
542
|
.pf-u-justify-content-space-between-on-md {
|
641
543
|
justify-content: space-between !important;
|
642
544
|
}
|
643
|
-
|
644
545
|
.pf-u-justify-content-space-around-on-md {
|
645
546
|
justify-content: space-around !important;
|
646
547
|
}
|
647
|
-
|
648
548
|
.pf-u-justify-content-stretch-on-md {
|
649
549
|
justify-content: stretch !important;
|
650
550
|
}
|
@@ -653,23 +553,18 @@
|
|
653
553
|
.pf-u-justify-content-flex-start-on-lg {
|
654
554
|
justify-content: flex-start !important;
|
655
555
|
}
|
656
|
-
|
657
556
|
.pf-u-justify-content-flex-end-on-lg {
|
658
557
|
justify-content: flex-end !important;
|
659
558
|
}
|
660
|
-
|
661
559
|
.pf-u-justify-content-center-on-lg {
|
662
560
|
justify-content: center !important;
|
663
561
|
}
|
664
|
-
|
665
562
|
.pf-u-justify-content-space-between-on-lg {
|
666
563
|
justify-content: space-between !important;
|
667
564
|
}
|
668
|
-
|
669
565
|
.pf-u-justify-content-space-around-on-lg {
|
670
566
|
justify-content: space-around !important;
|
671
567
|
}
|
672
|
-
|
673
568
|
.pf-u-justify-content-stretch-on-lg {
|
674
569
|
justify-content: stretch !important;
|
675
570
|
}
|
@@ -678,23 +573,18 @@
|
|
678
573
|
.pf-u-justify-content-flex-start-on-xl {
|
679
574
|
justify-content: flex-start !important;
|
680
575
|
}
|
681
|
-
|
682
576
|
.pf-u-justify-content-flex-end-on-xl {
|
683
577
|
justify-content: flex-end !important;
|
684
578
|
}
|
685
|
-
|
686
579
|
.pf-u-justify-content-center-on-xl {
|
687
580
|
justify-content: center !important;
|
688
581
|
}
|
689
|
-
|
690
582
|
.pf-u-justify-content-space-between-on-xl {
|
691
583
|
justify-content: space-between !important;
|
692
584
|
}
|
693
|
-
|
694
585
|
.pf-u-justify-content-space-around-on-xl {
|
695
586
|
justify-content: space-around !important;
|
696
587
|
}
|
697
|
-
|
698
588
|
.pf-u-justify-content-stretch-on-xl {
|
699
589
|
justify-content: stretch !important;
|
700
590
|
}
|
@@ -703,23 +593,18 @@
|
|
703
593
|
.pf-u-justify-content-flex-start-on-2xl {
|
704
594
|
justify-content: flex-start !important;
|
705
595
|
}
|
706
|
-
|
707
596
|
.pf-u-justify-content-flex-end-on-2xl {
|
708
597
|
justify-content: flex-end !important;
|
709
598
|
}
|
710
|
-
|
711
599
|
.pf-u-justify-content-center-on-2xl {
|
712
600
|
justify-content: center !important;
|
713
601
|
}
|
714
|
-
|
715
602
|
.pf-u-justify-content-space-between-on-2xl {
|
716
603
|
justify-content: space-between !important;
|
717
604
|
}
|
718
|
-
|
719
605
|
.pf-u-justify-content-space-around-on-2xl {
|
720
606
|
justify-content: space-around !important;
|
721
607
|
}
|
722
|
-
|
723
608
|
.pf-u-justify-content-stretch-on-2xl {
|
724
609
|
justify-content: stretch !important;
|
725
610
|
}
|
@@ -744,15 +629,12 @@
|
|
744
629
|
.pf-u-flex-shrink-1-on-sm {
|
745
630
|
flex-shrink: 1 !important;
|
746
631
|
}
|
747
|
-
|
748
632
|
.pf-u-flex-grow-1-on-sm {
|
749
633
|
flex-grow: 1 !important;
|
750
634
|
}
|
751
|
-
|
752
635
|
.pf-u-flex-shrink-0-on-sm {
|
753
636
|
flex-shrink: 0 !important;
|
754
637
|
}
|
755
|
-
|
756
638
|
.pf-u-flex-grow-0-on-sm {
|
757
639
|
flex-grow: 0 !important;
|
758
640
|
}
|
@@ -761,15 +643,12 @@
|
|
761
643
|
.pf-u-flex-shrink-1-on-md {
|
762
644
|
flex-shrink: 1 !important;
|
763
645
|
}
|
764
|
-
|
765
646
|
.pf-u-flex-grow-1-on-md {
|
766
647
|
flex-grow: 1 !important;
|
767
648
|
}
|
768
|
-
|
769
649
|
.pf-u-flex-shrink-0-on-md {
|
770
650
|
flex-shrink: 0 !important;
|
771
651
|
}
|
772
|
-
|
773
652
|
.pf-u-flex-grow-0-on-md {
|
774
653
|
flex-grow: 0 !important;
|
775
654
|
}
|
@@ -778,15 +657,12 @@
|
|
778
657
|
.pf-u-flex-shrink-1-on-lg {
|
779
658
|
flex-shrink: 1 !important;
|
780
659
|
}
|
781
|
-
|
782
660
|
.pf-u-flex-grow-1-on-lg {
|
783
661
|
flex-grow: 1 !important;
|
784
662
|
}
|
785
|
-
|
786
663
|
.pf-u-flex-shrink-0-on-lg {
|
787
664
|
flex-shrink: 0 !important;
|
788
665
|
}
|
789
|
-
|
790
666
|
.pf-u-flex-grow-0-on-lg {
|
791
667
|
flex-grow: 0 !important;
|
792
668
|
}
|
@@ -795,15 +671,12 @@
|
|
795
671
|
.pf-u-flex-shrink-1-on-xl {
|
796
672
|
flex-shrink: 1 !important;
|
797
673
|
}
|
798
|
-
|
799
674
|
.pf-u-flex-grow-1-on-xl {
|
800
675
|
flex-grow: 1 !important;
|
801
676
|
}
|
802
|
-
|
803
677
|
.pf-u-flex-shrink-0-on-xl {
|
804
678
|
flex-shrink: 0 !important;
|
805
679
|
}
|
806
|
-
|
807
680
|
.pf-u-flex-grow-0-on-xl {
|
808
681
|
flex-grow: 0 !important;
|
809
682
|
}
|
@@ -812,15 +685,12 @@
|
|
812
685
|
.pf-u-flex-shrink-1-on-2xl {
|
813
686
|
flex-shrink: 1 !important;
|
814
687
|
}
|
815
|
-
|
816
688
|
.pf-u-flex-grow-1-on-2xl {
|
817
689
|
flex-grow: 1 !important;
|
818
690
|
}
|
819
|
-
|
820
691
|
.pf-u-flex-shrink-0-on-2xl {
|
821
692
|
flex-shrink: 0 !important;
|
822
693
|
}
|
823
|
-
|
824
694
|
.pf-u-flex-grow-0-on-2xl {
|
825
695
|
flex-grow: 0 !important;
|
826
696
|
}
|
@@ -837,7 +707,6 @@
|
|
837
707
|
.pf-u-flex-basis-0-on-sm {
|
838
708
|
flex-basis: 0 !important;
|
839
709
|
}
|
840
|
-
|
841
710
|
.pf-u-flex-basis-auto-on-sm {
|
842
711
|
flex-basis: auto !important;
|
843
712
|
}
|
@@ -846,7 +715,6 @@
|
|
846
715
|
.pf-u-flex-basis-0-on-md {
|
847
716
|
flex-basis: 0 !important;
|
848
717
|
}
|
849
|
-
|
850
718
|
.pf-u-flex-basis-auto-on-md {
|
851
719
|
flex-basis: auto !important;
|
852
720
|
}
|
@@ -855,7 +723,6 @@
|
|
855
723
|
.pf-u-flex-basis-0-on-lg {
|
856
724
|
flex-basis: 0 !important;
|
857
725
|
}
|
858
|
-
|
859
726
|
.pf-u-flex-basis-auto-on-lg {
|
860
727
|
flex-basis: auto !important;
|
861
728
|
}
|
@@ -864,7 +731,6 @@
|
|
864
731
|
.pf-u-flex-basis-0-on-xl {
|
865
732
|
flex-basis: 0 !important;
|
866
733
|
}
|
867
|
-
|
868
734
|
.pf-u-flex-basis-auto-on-xl {
|
869
735
|
flex-basis: auto !important;
|
870
736
|
}
|
@@ -873,7 +739,6 @@
|
|
873
739
|
.pf-u-flex-basis-0-on-2xl {
|
874
740
|
flex-basis: 0 !important;
|
875
741
|
}
|
876
|
-
|
877
742
|
.pf-u-flex-basis-auto-on-2xl {
|
878
743
|
flex-basis: auto !important;
|
879
744
|
}
|
@@ -890,7 +755,6 @@
|
|
890
755
|
.pf-u-flex-none-on-sm {
|
891
756
|
flex: none !important;
|
892
757
|
}
|
893
|
-
|
894
758
|
.pf-u-flex-1-on-sm {
|
895
759
|
flex: 1 !important;
|
896
760
|
}
|
@@ -899,7 +763,6 @@
|
|
899
763
|
.pf-u-flex-none-on-md {
|
900
764
|
flex: none !important;
|
901
765
|
}
|
902
|
-
|
903
766
|
.pf-u-flex-1-on-md {
|
904
767
|
flex: 1 !important;
|
905
768
|
}
|
@@ -908,7 +771,6 @@
|
|
908
771
|
.pf-u-flex-none-on-lg {
|
909
772
|
flex: none !important;
|
910
773
|
}
|
911
|
-
|
912
774
|
.pf-u-flex-1-on-lg {
|
913
775
|
flex: 1 !important;
|
914
776
|
}
|
@@ -917,7 +779,6 @@
|
|
917
779
|
.pf-u-flex-none-on-xl {
|
918
780
|
flex: none !important;
|
919
781
|
}
|
920
|
-
|
921
782
|
.pf-u-flex-1-on-xl {
|
922
783
|
flex: 1 !important;
|
923
784
|
}
|
@@ -926,7 +787,6 @@
|
|
926
787
|
.pf-u-flex-none-on-2xl {
|
927
788
|
flex: none !important;
|
928
789
|
}
|
929
|
-
|
930
790
|
.pf-u-flex-1-on-2xl {
|
931
791
|
flex: 1 !important;
|
932
792
|
}
|