@patternfly/patternfly 6.1.0-prerelease.4 → 6.1.0-prerelease.6
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/components/DataList/data-list.css +6 -0
- package/components/DataList/data-list.scss +7 -0
- package/components/Table/table.css +6 -4
- package/components/Table/table.scss +7 -5
- package/components/_index.css +12 -4
- package/docs/components/DataList/examples/DataList.md +15 -13
- package/docs/components/Table/examples/Table.md +4 -246
- package/package.json +2 -2
- package/patternfly-no-globals.css +12 -4
- package/patternfly.css +12 -4
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -503,6 +503,8 @@
|
|
|
503
503
|
--pf-v6-c-data-list--m-compact__item-control--MarginInlineEnd: var(--pf-t--global--spacer--md);
|
|
504
504
|
--pf-v6-c-data-list--m-compact__item-action--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
505
505
|
--pf-v6-c-data-list--m-compact__item-action--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
506
|
+
--pf-v6-c-data-list--m-compact__item-action--PaddingBlockStart--offset: var(--pf-t--global--spacer--control--vertical--compact);
|
|
507
|
+
--pf-v6-c-data-list--m-compact__item-action--PaddingBlockEnd--offset: var(--pf-t--global--spacer--control--vertical--compact);
|
|
506
508
|
--pf-v6-c-data-list--m-compact__item-action--MarginInlineStart: var(--pf-t--global--spacer--md);
|
|
507
509
|
--pf-v6-c-data-list--m-compact__item-content--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
508
510
|
--pf-v6-c-data-list--m-compact__item-draggable-button--MarginBlockStart: calc(var(--pf-t--global--spacer--sm) * -1);
|
|
@@ -556,6 +558,10 @@
|
|
|
556
558
|
.pf-v6-c-data-list.pf-m-compact .pf-v6-c-data-list__check {
|
|
557
559
|
font-size: var(--pf-v6-c-data-list--m-compact__check--FontSize);
|
|
558
560
|
}
|
|
561
|
+
.pf-v6-c-data-list.pf-m-compact .pf-v6-c-data-list__item-action {
|
|
562
|
+
padding-block-start: calc(var(--pf-v6-c-data-list--m-compact__item-action--PaddingBlockStart) - var(--pf-v6-c-data-list--m-compact__item-action--PaddingBlockStart--offset));
|
|
563
|
+
padding-block-end: calc(var(--pf-v6-c-data-list--m-compact__item-action--PaddingBlockEnd) - var(--pf-v6-c-data-list--m-compact__item-action--PaddingBlockEnd--offset));
|
|
564
|
+
}
|
|
559
565
|
.pf-v6-c-data-list.pf-m-drag-over {
|
|
560
566
|
overflow-anchor: none;
|
|
561
567
|
}
|
|
@@ -132,6 +132,8 @@
|
|
|
132
132
|
--#{$data-list}--m-compact__item-control--MarginInlineEnd: var(--pf-t--global--spacer--md);
|
|
133
133
|
--#{$data-list}--m-compact__item-action--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
134
134
|
--#{$data-list}--m-compact__item-action--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
135
|
+
--#{$data-list}--m-compact__item-action--PaddingBlockStart--offset: var(--pf-t--global--spacer--control--vertical--compact);
|
|
136
|
+
--#{$data-list}--m-compact__item-action--PaddingBlockEnd--offset: var(--pf-t--global--spacer--control--vertical--compact);
|
|
135
137
|
--#{$data-list}--m-compact__item-action--MarginInlineStart: var(--pf-t--global--spacer--md);
|
|
136
138
|
--#{$data-list}--m-compact__item-content--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
137
139
|
--#{$data-list}--m-compact__item-draggable-button--MarginBlockStart: calc(var(--pf-t--global--spacer--sm) * -1);
|
|
@@ -175,6 +177,11 @@
|
|
|
175
177
|
.#{$data-list}__check {
|
|
176
178
|
font-size: var(--#{$data-list}--m-compact__check--FontSize);
|
|
177
179
|
}
|
|
180
|
+
|
|
181
|
+
.#{$data-list}__item-action {
|
|
182
|
+
padding-block-start: calc(var(--#{$data-list}--m-compact__item-action--PaddingBlockStart) - var(--#{$data-list}--m-compact__item-action--PaddingBlockStart--offset));
|
|
183
|
+
padding-block-end: calc(var(--#{$data-list}--m-compact__item-action--PaddingBlockEnd) - var(--#{$data-list}--m-compact__item-action--PaddingBlockEnd--offset));
|
|
184
|
+
}
|
|
178
185
|
}
|
|
179
186
|
|
|
180
187
|
&.pf-m-drag-over {
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
--pf-v6-c-table--cell--Color: var(--pf-t--global--text--color--regular);
|
|
28
28
|
--pf-v6-c-table--cell--first-last-child--PaddingInline: var(--pf-t--global--spacer--inset--page-chrome);
|
|
29
29
|
--pf-v6-c-table__tr--m-first-cell-offset-reset--cell--PaddingInlineStart: var(--pf-v6-c-table--cell--Padding--base);
|
|
30
|
-
--pf-v6-c-table--cell--MinWidth:
|
|
30
|
+
--pf-v6-c-table--cell--MinWidth: calc(var(--pf-v6-c-table--cell--PaddingInlineEnd) + var(--pf-v6-c-table--cell--PaddingInlineEnd));
|
|
31
31
|
--pf-v6-c-table--cell--MaxWidth: none;
|
|
32
32
|
--pf-v6-c-table--cell--Width: auto;
|
|
33
33
|
--pf-v6-c-table--cell--Overflow: visible;
|
|
@@ -41,6 +41,8 @@
|
|
|
41
41
|
--pf-v6-c-table--cell--m-help--MinWidth: 11ch;
|
|
42
42
|
--pf-v6-c-table--m-truncate--cell--MaxWidth: 1px;
|
|
43
43
|
--pf-v6-c-table--m-truncate--cell--MinWidth: calc(5ch + var(--pf-v6-c-table--cell--PaddingInlineEnd) + var(--pf-v6-c-table--cell--PaddingInlineStart));
|
|
44
|
+
--pf-v6-c-table__text--MinWidth: 100%;
|
|
45
|
+
--pf-v6-c-table__text--m-truncate--MinWidth: 5ch;
|
|
44
46
|
--pf-v6-c-table--m-truncate__text--MinWidth: 5ch;
|
|
45
47
|
--pf-v6-c-table--cell--hidden-visible--Display: table-cell;
|
|
46
48
|
--pf-v6-c-table__toggle--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
@@ -429,11 +431,10 @@
|
|
|
429
431
|
}
|
|
430
432
|
|
|
431
433
|
.pf-v6-c-table__text {
|
|
432
|
-
--pf-v6-c-table--cell--MaxWidth: 100%;
|
|
433
434
|
position: relative;
|
|
434
435
|
display: block;
|
|
435
436
|
width: var(--pf-v6-c-table--cell--Width);
|
|
436
|
-
min-width: var(--pf-v6-c-
|
|
437
|
+
min-width: var(--pf-v6-c-table__text--MinWidth);
|
|
437
438
|
max-width: var(--pf-v6-c-table--cell--MaxWidth);
|
|
438
439
|
overflow: var(--pf-v6-c-table--cell--Overflow);
|
|
439
440
|
line-height: var(--pf-v6-c-table--cell--LineHeight);
|
|
@@ -443,7 +444,7 @@
|
|
|
443
444
|
}
|
|
444
445
|
.pf-v6-c-table__text.pf-m-truncate {
|
|
445
446
|
--pf-v6-c-table--cell--MinWidth: 100%;
|
|
446
|
-
--pf-v6-c-
|
|
447
|
+
min-width: max(var(--pf-v6-c-table__text--m-truncate--MinWidth), var(--pf-v6-c-table__text--MinWidth));
|
|
447
448
|
}
|
|
448
449
|
.pf-v6-c-table__text.pf-m-truncate > :where(th, td) {
|
|
449
450
|
overflow: var(--pf-v6-c-table--cell--Overflow);
|
|
@@ -496,6 +497,7 @@
|
|
|
496
497
|
.pf-v6-c-table__button-content .pf-v6-c-table__text,
|
|
497
498
|
.pf-v6-c-table__column-help .pf-v6-c-table__text {
|
|
498
499
|
min-width: auto;
|
|
500
|
+
max-width: 100%;
|
|
499
501
|
}
|
|
500
502
|
.pf-v6-c-table thead:where(.pf-v6-c-table__thead).pf-m-nowrap .pf-v6-c-table__button-content, .pf-v6-c-table tr:where(.pf-v6-c-table__tr).pf-m-nowrap .pf-v6-c-table__button-content, .pf-v6-c-table th:where(.pf-v6-c-table__th).pf-m-nowrap .pf-v6-c-table__button-content,
|
|
501
503
|
.pf-v6-c-table thead:where(.pf-v6-c-table__thead).pf-m-nowrap .pf-v6-c-table__column-help,
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
--#{$table}__tr--m-first-cell-offset-reset--cell--PaddingInlineStart: var(--#{$table}--cell--Padding--base);
|
|
49
49
|
|
|
50
50
|
// * Table cell - default variables
|
|
51
|
-
--#{$table}--cell--MinWidth:
|
|
51
|
+
--#{$table}--cell--MinWidth: calc(var(--#{$table}--cell--PaddingInlineEnd) + var(--#{$table}--cell--PaddingInlineEnd));
|
|
52
52
|
--#{$table}--cell--MaxWidth: none;
|
|
53
53
|
--#{$table}--cell--Width: auto;
|
|
54
54
|
--#{$table}--cell--Overflow: visible;
|
|
@@ -70,6 +70,8 @@
|
|
|
70
70
|
--#{$table}--m-truncate--cell--MinWidth: calc(5ch + var(--#{$table}--cell--PaddingInlineEnd) + var(--#{$table}--cell--PaddingInlineStart));
|
|
71
71
|
|
|
72
72
|
// * Table truncate
|
|
73
|
+
--#{$table}__text--MinWidth: 100%;
|
|
74
|
+
--#{$table}__text--m-truncate--MinWidth: 5ch;
|
|
73
75
|
--#{$table}--m-truncate__text--MinWidth: 5ch;
|
|
74
76
|
|
|
75
77
|
// * Table cell hidden visible
|
|
@@ -602,12 +604,10 @@
|
|
|
602
604
|
|
|
603
605
|
// - Table text
|
|
604
606
|
.#{$table}__text {
|
|
605
|
-
--#{$table}--cell--MaxWidth: 100%;
|
|
606
|
-
|
|
607
607
|
position: relative;
|
|
608
608
|
display: block;
|
|
609
609
|
width: var(--#{$table}--cell--Width);
|
|
610
|
-
min-width: var(--#{$table}--
|
|
610
|
+
min-width: var(--#{$table}__text--MinWidth);
|
|
611
611
|
max-width: var(--#{$table}--cell--MaxWidth);
|
|
612
612
|
overflow: var(--#{$table}--cell--Overflow);
|
|
613
613
|
line-height: var(--#{$table}--cell--LineHeight);
|
|
@@ -618,7 +618,8 @@
|
|
|
618
618
|
// Only apply these settings if specifically modified
|
|
619
619
|
&.pf-m-truncate {
|
|
620
620
|
--#{$table}--cell--MinWidth: 100%;
|
|
621
|
-
|
|
621
|
+
|
|
622
|
+
min-width: max(var(--#{$table}__text--m-truncate--MinWidth), var(--#{$table}__text--MinWidth));
|
|
622
623
|
|
|
623
624
|
> :where(th, td) {
|
|
624
625
|
overflow: var(--#{$table}--cell--Overflow);
|
|
@@ -682,6 +683,7 @@
|
|
|
682
683
|
|
|
683
684
|
.#{$table}__text {
|
|
684
685
|
min-width: auto;
|
|
686
|
+
max-width: 100%;
|
|
685
687
|
}
|
|
686
688
|
|
|
687
689
|
.#{$table} thead:where(.#{$table}__thead).pf-m-nowrap &,
|
package/components/_index.css
CHANGED
|
@@ -3728,6 +3728,8 @@ ul) {
|
|
|
3728
3728
|
--pf-v6-c-data-list--m-compact__item-control--MarginInlineEnd: var(--pf-t--global--spacer--md);
|
|
3729
3729
|
--pf-v6-c-data-list--m-compact__item-action--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
3730
3730
|
--pf-v6-c-data-list--m-compact__item-action--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
3731
|
+
--pf-v6-c-data-list--m-compact__item-action--PaddingBlockStart--offset: var(--pf-t--global--spacer--control--vertical--compact);
|
|
3732
|
+
--pf-v6-c-data-list--m-compact__item-action--PaddingBlockEnd--offset: var(--pf-t--global--spacer--control--vertical--compact);
|
|
3731
3733
|
--pf-v6-c-data-list--m-compact__item-action--MarginInlineStart: var(--pf-t--global--spacer--md);
|
|
3732
3734
|
--pf-v6-c-data-list--m-compact__item-content--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
3733
3735
|
--pf-v6-c-data-list--m-compact__item-draggable-button--MarginBlockStart: calc(var(--pf-t--global--spacer--sm) * -1);
|
|
@@ -3781,6 +3783,10 @@ ul) {
|
|
|
3781
3783
|
.pf-v6-c-data-list.pf-m-compact .pf-v6-c-data-list__check {
|
|
3782
3784
|
font-size: var(--pf-v6-c-data-list--m-compact__check--FontSize);
|
|
3783
3785
|
}
|
|
3786
|
+
.pf-v6-c-data-list.pf-m-compact .pf-v6-c-data-list__item-action {
|
|
3787
|
+
padding-block-start: calc(var(--pf-v6-c-data-list--m-compact__item-action--PaddingBlockStart) - var(--pf-v6-c-data-list--m-compact__item-action--PaddingBlockStart--offset));
|
|
3788
|
+
padding-block-end: calc(var(--pf-v6-c-data-list--m-compact__item-action--PaddingBlockEnd) - var(--pf-v6-c-data-list--m-compact__item-action--PaddingBlockEnd--offset));
|
|
3789
|
+
}
|
|
3784
3790
|
.pf-v6-c-data-list.pf-m-drag-over {
|
|
3785
3791
|
overflow-anchor: none;
|
|
3786
3792
|
}
|
|
@@ -16202,7 +16208,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
16202
16208
|
--pf-v6-c-table--cell--Color: var(--pf-t--global--text--color--regular);
|
|
16203
16209
|
--pf-v6-c-table--cell--first-last-child--PaddingInline: var(--pf-t--global--spacer--inset--page-chrome);
|
|
16204
16210
|
--pf-v6-c-table__tr--m-first-cell-offset-reset--cell--PaddingInlineStart: var(--pf-v6-c-table--cell--Padding--base);
|
|
16205
|
-
--pf-v6-c-table--cell--MinWidth:
|
|
16211
|
+
--pf-v6-c-table--cell--MinWidth: calc(var(--pf-v6-c-table--cell--PaddingInlineEnd) + var(--pf-v6-c-table--cell--PaddingInlineEnd));
|
|
16206
16212
|
--pf-v6-c-table--cell--MaxWidth: none;
|
|
16207
16213
|
--pf-v6-c-table--cell--Width: auto;
|
|
16208
16214
|
--pf-v6-c-table--cell--Overflow: visible;
|
|
@@ -16216,6 +16222,8 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
16216
16222
|
--pf-v6-c-table--cell--m-help--MinWidth: 11ch;
|
|
16217
16223
|
--pf-v6-c-table--m-truncate--cell--MaxWidth: 1px;
|
|
16218
16224
|
--pf-v6-c-table--m-truncate--cell--MinWidth: calc(5ch + var(--pf-v6-c-table--cell--PaddingInlineEnd) + var(--pf-v6-c-table--cell--PaddingInlineStart));
|
|
16225
|
+
--pf-v6-c-table__text--MinWidth: 100%;
|
|
16226
|
+
--pf-v6-c-table__text--m-truncate--MinWidth: 5ch;
|
|
16219
16227
|
--pf-v6-c-table--m-truncate__text--MinWidth: 5ch;
|
|
16220
16228
|
--pf-v6-c-table--cell--hidden-visible--Display: table-cell;
|
|
16221
16229
|
--pf-v6-c-table__toggle--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
@@ -16604,11 +16612,10 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
16604
16612
|
}
|
|
16605
16613
|
|
|
16606
16614
|
.pf-v6-c-table__text {
|
|
16607
|
-
--pf-v6-c-table--cell--MaxWidth: 100%;
|
|
16608
16615
|
position: relative;
|
|
16609
16616
|
display: block;
|
|
16610
16617
|
width: var(--pf-v6-c-table--cell--Width);
|
|
16611
|
-
min-width: var(--pf-v6-c-
|
|
16618
|
+
min-width: var(--pf-v6-c-table__text--MinWidth);
|
|
16612
16619
|
max-width: var(--pf-v6-c-table--cell--MaxWidth);
|
|
16613
16620
|
overflow: var(--pf-v6-c-table--cell--Overflow);
|
|
16614
16621
|
line-height: var(--pf-v6-c-table--cell--LineHeight);
|
|
@@ -16618,7 +16625,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
16618
16625
|
}
|
|
16619
16626
|
.pf-v6-c-table__text.pf-m-truncate {
|
|
16620
16627
|
--pf-v6-c-table--cell--MinWidth: 100%;
|
|
16621
|
-
--pf-v6-c-
|
|
16628
|
+
min-width: max(var(--pf-v6-c-table__text--m-truncate--MinWidth), var(--pf-v6-c-table__text--MinWidth));
|
|
16622
16629
|
}
|
|
16623
16630
|
.pf-v6-c-table__text.pf-m-truncate > :where(th, td) {
|
|
16624
16631
|
overflow: var(--pf-v6-c-table--cell--Overflow);
|
|
@@ -16671,6 +16678,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
16671
16678
|
.pf-v6-c-table__button-content .pf-v6-c-table__text,
|
|
16672
16679
|
.pf-v6-c-table__column-help .pf-v6-c-table__text {
|
|
16673
16680
|
min-width: auto;
|
|
16681
|
+
max-width: 100%;
|
|
16674
16682
|
}
|
|
16675
16683
|
.pf-v6-c-table thead:where(.pf-v6-c-table__thead).pf-m-nowrap .pf-v6-c-table__button-content, .pf-v6-c-table tr:where(.pf-v6-c-table__tr).pf-m-nowrap .pf-v6-c-table__button-content, .pf-v6-c-table th:where(.pf-v6-c-table__th).pf-m-nowrap .pf-v6-c-table__button-content,
|
|
16676
16684
|
.pf-v6-c-table thead:where(.pf-v6-c-table__thead).pf-m-nowrap .pf-v6-c-table__column-help,
|
|
@@ -573,7 +573,7 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
573
573
|
</div>
|
|
574
574
|
<div class="pf-v6-c-data-list__item-action">
|
|
575
575
|
<button
|
|
576
|
-
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
576
|
+
class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
|
|
577
577
|
type="button"
|
|
578
578
|
aria-expanded="false"
|
|
579
579
|
aria-label="Menu toggle"
|
|
@@ -637,7 +637,7 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
637
637
|
</div>
|
|
638
638
|
<div class="pf-v6-c-data-list__item-action">
|
|
639
639
|
<button
|
|
640
|
-
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
640
|
+
class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
|
|
641
641
|
type="button"
|
|
642
642
|
aria-expanded="false"
|
|
643
643
|
aria-label="Menu toggle"
|
|
@@ -702,7 +702,7 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
702
702
|
</div>
|
|
703
703
|
<div class="pf-v6-c-data-list__item-action">
|
|
704
704
|
<button
|
|
705
|
-
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
705
|
+
class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
|
|
706
706
|
type="button"
|
|
707
707
|
aria-expanded="false"
|
|
708
708
|
aria-label="Menu toggle"
|
|
@@ -1115,7 +1115,7 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
1115
1115
|
</div>
|
|
1116
1116
|
<div class="pf-v6-c-data-list__item-action">
|
|
1117
1117
|
<button
|
|
1118
|
-
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1118
|
+
class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
|
|
1119
1119
|
type="button"
|
|
1120
1120
|
aria-expanded="false"
|
|
1121
1121
|
aria-label="Menu toggle"
|
|
@@ -1160,7 +1160,7 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
1160
1160
|
</div>
|
|
1161
1161
|
<div class="pf-v6-c-data-list__item-action pf-m-hidden-on-lg">
|
|
1162
1162
|
<button
|
|
1163
|
-
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1163
|
+
class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
|
|
1164
1164
|
type="button"
|
|
1165
1165
|
aria-expanded="false"
|
|
1166
1166
|
aria-label="Menu toggle"
|
|
@@ -1174,10 +1174,10 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
1174
1174
|
<div
|
|
1175
1175
|
class="pf-v6-c-data-list__item-action pf-m-hidden pf-m-visible-on-lg"
|
|
1176
1176
|
>
|
|
1177
|
-
<button class="pf-v6-c-button pf-m-primary" type="button">
|
|
1177
|
+
<button class="pf-v6-c-button pf-m-small pf-m-primary" type="button">
|
|
1178
1178
|
<span class="pf-v6-c-button__text">Primary</span>
|
|
1179
1179
|
</button>
|
|
1180
|
-
<button class="pf-v6-c-button pf-m-secondary" type="button">
|
|
1180
|
+
<button class="pf-v6-c-button pf-m-small pf-m-secondary" type="button">
|
|
1181
1181
|
<span class="pf-v6-c-button__text">Secondary</span>
|
|
1182
1182
|
</button>
|
|
1183
1183
|
</div>
|
|
@@ -1215,7 +1215,7 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
1215
1215
|
</div>
|
|
1216
1216
|
<div class="pf-v6-c-data-list__item-action pf-m-hidden-on-xl">
|
|
1217
1217
|
<button
|
|
1218
|
-
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1218
|
+
class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
|
|
1219
1219
|
type="button"
|
|
1220
1220
|
aria-expanded="false"
|
|
1221
1221
|
aria-label="Menu toggle"
|
|
@@ -1229,16 +1229,16 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
1229
1229
|
<div
|
|
1230
1230
|
class="pf-v6-c-data-list__item-action pf-m-hidden pf-m-visible-on-xl"
|
|
1231
1231
|
>
|
|
1232
|
-
<button class="pf-v6-c-button pf-m-primary" type="button">
|
|
1232
|
+
<button class="pf-v6-c-button pf-m-small pf-m-primary" type="button">
|
|
1233
1233
|
<span class="pf-v6-c-button__text">Primary</span>
|
|
1234
1234
|
</button>
|
|
1235
|
-
<button class="pf-v6-c-button pf-m-secondary" type="button">
|
|
1235
|
+
<button class="pf-v6-c-button pf-m-small pf-m-secondary" type="button">
|
|
1236
1236
|
<span class="pf-v6-c-button__text">Secondary</span>
|
|
1237
1237
|
</button>
|
|
1238
|
-
<button class="pf-v6-c-button pf-m-secondary" type="button">
|
|
1238
|
+
<button class="pf-v6-c-button pf-m-small pf-m-secondary" type="button">
|
|
1239
1239
|
<span class="pf-v6-c-button__text">Secondary</span>
|
|
1240
1240
|
</button>
|
|
1241
|
-
<button class="pf-v6-c-button pf-m-secondary" type="button">
|
|
1241
|
+
<button class="pf-v6-c-button pf-m-small pf-m-secondary" type="button">
|
|
1242
1242
|
<span class="pf-v6-c-button__text">Secondary</span>
|
|
1243
1243
|
</button>
|
|
1244
1244
|
</div>
|
|
@@ -1321,6 +1321,7 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
1321
1321
|
</div>
|
|
1322
1322
|
</li>
|
|
1323
1323
|
</ul>
|
|
1324
|
+
|
|
1324
1325
|
<h2 class="Preview__section-title">Flex modifiers - example 2</h2>
|
|
1325
1326
|
<ul
|
|
1326
1327
|
class="pf-v6-c-data-list"
|
|
@@ -1379,6 +1380,7 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
1379
1380
|
</div>
|
|
1380
1381
|
</li>
|
|
1381
1382
|
</ul>
|
|
1383
|
+
|
|
1382
1384
|
<h2 class="Preview__section-title">Flex modifiers - example 3</h2>
|
|
1383
1385
|
<ul
|
|
1384
1386
|
class="pf-v6-c-data-list"
|
|
@@ -1755,7 +1757,7 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
1755
1757
|
id="draggable-help"
|
|
1756
1758
|
>Activate the reorder button and use the arrow keys to reorder the list or use your mouse to drag/reorder. Press escape to cancel the reordering.</div>
|
|
1757
1759
|
<ul
|
|
1758
|
-
class="pf-v6-c-data-list
|
|
1760
|
+
class="pf-v6-c-data-list"
|
|
1759
1761
|
role="list"
|
|
1760
1762
|
aria-label="Draggable data list rows"
|
|
1761
1763
|
id="data-list-draggable"
|