@patternfly/patternfly 5.1.0-prerelease.11 → 5.1.0-prerelease.13
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/Alert/alert.css +3 -0
- package/components/Alert/alert.scss +2 -0
- package/components/Breadcrumb/breadcrumb.css +3 -0
- package/components/Breadcrumb/breadcrumb.scss +2 -0
- package/components/CalendarMonth/calendar-month.css +4 -0
- package/components/CalendarMonth/calendar-month.scss +2 -0
- package/components/ClipboardCopy/clipboard-copy.css +3 -0
- package/components/ClipboardCopy/clipboard-copy.scss +2 -0
- package/components/Menu/menu.css +11 -0
- package/components/Menu/menu.scss +12 -2
- package/components/Nav/nav.css +20 -0
- package/components/Nav/nav.scss +22 -2
- package/components/NotificationDrawer/notification-drawer.css +4 -0
- package/components/NotificationDrawer/notification-drawer.scss +2 -0
- package/components/Page/page.css +4 -0
- package/components/Page/page.scss +6 -1
- package/docs/components/Toolbar/examples/Toolbar.md +76 -60
- package/docs/demos/Card/examples/Card.md +2 -2
- package/package.json +2 -2
- package/patternfly-no-globals.css +52 -0
- package/patternfly-theme-dark-unversioned.css +52 -0
- package/patternfly.css +52 -0
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -159,6 +159,9 @@
|
|
|
159
159
|
transition: var(--pf-v5-c-alert__toggle-icon--Transition);
|
|
160
160
|
transform: rotate(var(--pf-v5-c-alert__toggle-icon--Rotate));
|
|
161
161
|
}
|
|
162
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-alert__toggle-icon {
|
|
163
|
+
scale: -1 1;
|
|
164
|
+
}
|
|
162
165
|
|
|
163
166
|
.pf-v5-c-alert__icon {
|
|
164
167
|
display: flex;
|
|
@@ -84,6 +84,10 @@
|
|
|
84
84
|
margin-inline-start: var(--pf-v5-c-calendar-month__header-nav-control--MarginLeft);
|
|
85
85
|
margin-inline-end: var(--pf-v5-c-calendar-month__header-nav-control--MarginRight);
|
|
86
86
|
}
|
|
87
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-calendar-month__header-nav-control {
|
|
88
|
+
scale: -1 1;
|
|
89
|
+
}
|
|
90
|
+
|
|
87
91
|
.pf-v5-c-calendar-month__header-nav-control.pf-m-prev-month {
|
|
88
92
|
--pf-v5-c-calendar-month__header-nav-control--MarginRight: var(--pf-v5-c-calendar-month__header-nav-control--m-prev-month--MarginRight);
|
|
89
93
|
--pf-v5-c-calendar-month__header-nav-control--MarginLeft: var(--pf-v5-c-calendar-month__header-nav-control--m-prev-month--MarginLeft);
|
|
@@ -81,6 +81,8 @@
|
|
|
81
81
|
}
|
|
82
82
|
|
|
83
83
|
.#{$calendar-month}__header-nav-control {
|
|
84
|
+
@include pf-v5-mirror-inline-on-rtl;
|
|
85
|
+
|
|
84
86
|
margin-inline-start: var(--#{$calendar-month}__header-nav-control--MarginLeft);
|
|
85
87
|
margin-inline-end: var(--#{$calendar-month}__header-nav-control--MarginRight);
|
|
86
88
|
|
|
@@ -50,6 +50,9 @@
|
|
|
50
50
|
.pf-v5-c-clipboard-copy__toggle-icon {
|
|
51
51
|
transition: var(--pf-v5-c-clipboard-copy__toggle-icon--Transition);
|
|
52
52
|
}
|
|
53
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-clipboard-copy__toggle-icon {
|
|
54
|
+
scale: -1 1;
|
|
55
|
+
}
|
|
53
56
|
|
|
54
57
|
.pf-v5-c-clipboard-copy__expandable-content {
|
|
55
58
|
padding-block-start: var(--pf-v5-c-clipboard-copy__expandable-content--PaddingTop);
|
package/components/Menu/menu.css
CHANGED
|
@@ -259,6 +259,10 @@
|
|
|
259
259
|
.pf-v5-c-menu.pf-m-drilldown.pf-m-drilled-in > .pf-v5-c-menu__list {
|
|
260
260
|
transform: translateX(-100%);
|
|
261
261
|
}
|
|
262
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-menu.pf-m-drilldown.pf-m-drilled-in > .pf-v5-c-menu__content > .pf-v5-c-menu__list, .pf-v5-c-menu.pf-m-drilldown.pf-m-drilled-in > .pf-v5-c-menu__list {
|
|
263
|
+
transform: translateX(calc(-100% * var(--pf-v5-global--inverse--multiplier)));
|
|
264
|
+
}
|
|
265
|
+
|
|
262
266
|
.pf-v5-c-menu.pf-m-drilldown > .pf-v5-c-menu__content .pf-v5-c-menu {
|
|
263
267
|
--pf-v5-c-menu--BoxShadow: none;
|
|
264
268
|
position: absolute;
|
|
@@ -270,6 +274,10 @@
|
|
|
270
274
|
.pf-v5-c-menu.pf-m-drilldown > .pf-v5-c-menu__content .pf-v5-c-menu.pf-m-drilled-in {
|
|
271
275
|
transform: translateX(-100%);
|
|
272
276
|
}
|
|
277
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-menu.pf-m-drilldown > .pf-v5-c-menu__content .pf-v5-c-menu.pf-m-drilled-in {
|
|
278
|
+
transform: translateX(calc(-100% * var(--pf-v5-global--inverse--multiplier)));
|
|
279
|
+
}
|
|
280
|
+
|
|
273
281
|
.pf-v5-c-menu.pf-m-drilldown .pf-v5-c-menu__list {
|
|
274
282
|
position: relative;
|
|
275
283
|
overflow: hidden;
|
|
@@ -569,6 +577,9 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab
|
|
|
569
577
|
padding-inline-end: var(--pf-v5-c-menu__item-toggle-icon--PaddingRight);
|
|
570
578
|
color: var(--pf-v5-c-menu__item-toggle-icon, inherit);
|
|
571
579
|
}
|
|
580
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-menu__item-toggle-icon {
|
|
581
|
+
scale: -1 1;
|
|
582
|
+
}
|
|
572
583
|
|
|
573
584
|
.pf-v5-c-menu__item-text + .pf-v5-c-menu__item-toggle-icon {
|
|
574
585
|
margin-inline-start: var(--pf-v5-c-menu__item-text--item-toggle-icon--MarginLeft);
|
|
@@ -282,7 +282,11 @@
|
|
|
282
282
|
// target first list in menu
|
|
283
283
|
> .#{$menu}__content > .#{$menu}__list,
|
|
284
284
|
> .#{$menu}__list {
|
|
285
|
-
|
|
285
|
+
@include pf-v5-bidirectional-style(
|
|
286
|
+
$prop: transform,
|
|
287
|
+
$ltr-val: translateX(-100%),
|
|
288
|
+
$rtl-val: translateX(#{pf-v5-calc-inverse(-100%)})
|
|
289
|
+
);
|
|
286
290
|
}
|
|
287
291
|
// stylelint-enable
|
|
288
292
|
}
|
|
@@ -299,7 +303,11 @@
|
|
|
299
303
|
|
|
300
304
|
// stylelint-disable selector-max-class
|
|
301
305
|
&.pf-m-drilled-in {
|
|
302
|
-
|
|
306
|
+
@include pf-v5-bidirectional-style(
|
|
307
|
+
$prop: transform,
|
|
308
|
+
$ltr-val: translateX(-100%),
|
|
309
|
+
$rtl-val: translateX(#{pf-v5-calc-inverse(-100%)})
|
|
310
|
+
);
|
|
303
311
|
}
|
|
304
312
|
// stylelint-enable
|
|
305
313
|
}
|
|
@@ -686,6 +694,8 @@
|
|
|
686
694
|
|
|
687
695
|
// Toggle icon
|
|
688
696
|
.#{$menu}__item-toggle-icon {
|
|
697
|
+
@include pf-v5-mirror-inline-on-rtl;
|
|
698
|
+
|
|
689
699
|
padding-inline-start: var(--#{$menu}__item-toggle-icon--PaddingLeft);
|
|
690
700
|
padding-inline-end: var(--#{$menu}__item-toggle-icon--PaddingRight);
|
|
691
701
|
color: var(--#{$menu}__item-toggle-icon, inherit);
|
package/components/Nav/nav.css
CHANGED
|
@@ -414,6 +414,10 @@
|
|
|
414
414
|
.pf-v5-c-nav .pf-v5-c-menu__item-toggle-icon {
|
|
415
415
|
margin-inline-start: calc(var(--pf-v5-c-menu__item-toggle-icon--PaddingLeft) * -1);
|
|
416
416
|
}
|
|
417
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-nav .pf-v5-c-menu__item-toggle-icon {
|
|
418
|
+
scale: -1 1;
|
|
419
|
+
}
|
|
420
|
+
|
|
417
421
|
.pf-v5-c-nav.pf-m-horizontal .pf-v5-c-nav__link::after, .pf-v5-c-nav.pf-m-tertiary .pf-v5-c-nav__link::after {
|
|
418
422
|
content: none;
|
|
419
423
|
}
|
|
@@ -857,6 +861,10 @@
|
|
|
857
861
|
display: inline-block;
|
|
858
862
|
transition: var(--pf-v5-c-nav__toggle-icon--Transition);
|
|
859
863
|
}
|
|
864
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-nav__toggle-icon {
|
|
865
|
+
scale: -1 1;
|
|
866
|
+
}
|
|
867
|
+
|
|
860
868
|
.pf-v5-c-nav__item.pf-m-expanded .pf-v5-c-nav__toggle-icon {
|
|
861
869
|
transform: rotate(var(--pf-v5-c-nav__item--m-expanded__toggle-icon--Rotate));
|
|
862
870
|
}
|
|
@@ -912,6 +920,10 @@
|
|
|
912
920
|
opacity: 0;
|
|
913
921
|
transition: var(--pf-v5-c-nav__scroll-button--Transition);
|
|
914
922
|
}
|
|
923
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-nav__scroll-button > * {
|
|
924
|
+
scale: -1 1;
|
|
925
|
+
}
|
|
926
|
+
|
|
915
927
|
.pf-v5-c-nav__scroll-button::before {
|
|
916
928
|
position: absolute;
|
|
917
929
|
inset-block-start: 0;
|
|
@@ -939,6 +951,10 @@
|
|
|
939
951
|
margin-inline-end: calc(var(--pf-v5-c-nav__scroll-button--Width) * -1);
|
|
940
952
|
transform: translateX(-100%);
|
|
941
953
|
}
|
|
954
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-nav__scroll-button:nth-of-type(1) {
|
|
955
|
+
transform: translateX(calc(-100% * var(--pf-v5-global--inverse--multiplier)));
|
|
956
|
+
}
|
|
957
|
+
|
|
942
958
|
.pf-v5-c-nav__scroll-button:nth-of-type(1)::before {
|
|
943
959
|
inset-inline-end: 0;
|
|
944
960
|
}
|
|
@@ -947,6 +963,10 @@
|
|
|
947
963
|
margin-inline-start: calc(var(--pf-v5-c-nav__scroll-button--Width) * -1);
|
|
948
964
|
transform: translateX(100%);
|
|
949
965
|
}
|
|
966
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-nav__scroll-button:nth-of-type(2) {
|
|
967
|
+
transform: translateX(calc(100% * var(--pf-v5-global--inverse--multiplier)));
|
|
968
|
+
}
|
|
969
|
+
|
|
950
970
|
.pf-v5-c-nav__scroll-button:nth-of-type(2)::before {
|
|
951
971
|
inset-inline-start: 0;
|
|
952
972
|
}
|
package/components/Nav/nav.scss
CHANGED
|
@@ -508,6 +508,8 @@
|
|
|
508
508
|
}
|
|
509
509
|
|
|
510
510
|
.#{$menu}__item-toggle-icon {
|
|
511
|
+
@include pf-v5-mirror-inline-on-rtl;
|
|
512
|
+
|
|
511
513
|
margin-inline-start: calc(var(--#{$menu}__item-toggle-icon--PaddingLeft) * -1);
|
|
512
514
|
}
|
|
513
515
|
|
|
@@ -1064,6 +1066,8 @@
|
|
|
1064
1066
|
display: inline-block;
|
|
1065
1067
|
transition: var(--#{$nav}__toggle-icon--Transition);
|
|
1066
1068
|
|
|
1069
|
+
@include pf-v5-mirror-inline-on-rtl;
|
|
1070
|
+
|
|
1067
1071
|
.#{$nav}__item.pf-m-expanded & {
|
|
1068
1072
|
transform: rotate(var(--#{$nav}__item--m-expanded__toggle-icon--Rotate));
|
|
1069
1073
|
}
|
|
@@ -1132,6 +1136,12 @@
|
|
|
1132
1136
|
opacity: 0;
|
|
1133
1137
|
transition: var(--#{$nav}__scroll-button--Transition);
|
|
1134
1138
|
|
|
1139
|
+
// Mirror only the contents to avoid flipping the borders
|
|
1140
|
+
// TODO at breaking change, add an icon wrapper to be mirrored
|
|
1141
|
+
> * {
|
|
1142
|
+
@include pf-v5-mirror-inline-on-rtl;
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1135
1145
|
&::before {
|
|
1136
1146
|
position: absolute;
|
|
1137
1147
|
inset-block-start: 0;
|
|
@@ -1163,8 +1173,13 @@
|
|
|
1163
1173
|
--#{$nav}__scroll-button--before--BorderRightWidth: var(--#{$nav}__scroll-button--before--BorderWidth);
|
|
1164
1174
|
|
|
1165
1175
|
margin-inline-end: calc(var(--#{$nav}__scroll-button--Width) * -1);
|
|
1166
|
-
transform: translateX(-100%);
|
|
1167
1176
|
|
|
1177
|
+
@include pf-v5-bidirectional-style(
|
|
1178
|
+
$prop: transform,
|
|
1179
|
+
$ltr-val: translateX(-100%),
|
|
1180
|
+
$rtl-val: translateX(#{pf-v5-calc-inverse(-100%)})
|
|
1181
|
+
);
|
|
1182
|
+
|
|
1168
1183
|
&::before {
|
|
1169
1184
|
inset-inline-end: 0;
|
|
1170
1185
|
}
|
|
@@ -1174,7 +1189,12 @@
|
|
|
1174
1189
|
--#{$nav}__scroll-button--before--BorderLeftWidth: var(--#{$nav}__scroll-button--before--BorderWidth);
|
|
1175
1190
|
|
|
1176
1191
|
margin-inline-start: calc(var(--#{$nav}__scroll-button--Width) * -1);
|
|
1177
|
-
|
|
1192
|
+
|
|
1193
|
+
@include pf-v5-bidirectional-style(
|
|
1194
|
+
$prop: transform,
|
|
1195
|
+
$ltr-val: translateX(100%),
|
|
1196
|
+
$rtl-val: translateX(#{pf-v5-calc-inverse(100%)})
|
|
1197
|
+
);
|
|
1178
1198
|
|
|
1179
1199
|
&::before {
|
|
1180
1200
|
inset-inline-start: 0;
|
|
@@ -267,6 +267,10 @@
|
|
|
267
267
|
color: var(--pf-v5-c-notification-drawer__group-toggle-icon--Color);
|
|
268
268
|
transition: var(--pf-v5-c-notification-drawer__group-toggle-icon--Transition);
|
|
269
269
|
}
|
|
270
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-notification-drawer__group-toggle-icon {
|
|
271
|
+
scale: -1 1;
|
|
272
|
+
}
|
|
273
|
+
|
|
270
274
|
.pf-v5-c-notification-drawer__group.pf-m-expanded .pf-v5-c-notification-drawer__group-toggle-icon {
|
|
271
275
|
transform: rotate(var(--pf-v5-c-notification-drawer__group--m-expanded__group-toggle-icon--Rotate));
|
|
272
276
|
}
|
|
@@ -307,6 +307,8 @@
|
|
|
307
307
|
}
|
|
308
308
|
|
|
309
309
|
.#{$notification-drawer}__group-toggle-icon {
|
|
310
|
+
@include pf-v5-mirror-inline-on-rtl;
|
|
311
|
+
|
|
310
312
|
margin-inline-end: var(--#{$notification-drawer}__group-toggle-icon--MarginRight);
|
|
311
313
|
color: var(--#{$notification-drawer}__group-toggle-icon--Color);
|
|
312
314
|
transition: var(--#{$notification-drawer}__group-toggle-icon--Transition);
|
package/components/Page/page.css
CHANGED
|
@@ -399,6 +399,10 @@
|
|
|
399
399
|
transition: var(--pf-v5-c-page__sidebar--Transition);
|
|
400
400
|
transform: translateX(var(--pf-v5-c-page__sidebar--TranslateX)) translateZ(var(--pf-v5-c-page__sidebar--TranslateZ));
|
|
401
401
|
}
|
|
402
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-page__sidebar {
|
|
403
|
+
transform: translateX(calc(var(--pf-v5-c-page__sidebar--TranslateX) * var(--pf-v5-global--inverse--multiplier))) translateZ(var(--pf-v5-c-page__sidebar--TranslateZ));
|
|
404
|
+
}
|
|
405
|
+
|
|
402
406
|
.pf-v5-c-page__sidebar.pf-m-expanded {
|
|
403
407
|
--pf-v5-c-page__sidebar--TranslateX: var(--pf-v5-c-page__sidebar--m-expanded--TranslateX);
|
|
404
408
|
box-shadow: var(--pf-v5-c-page__sidebar--BoxShadow);
|
|
@@ -404,7 +404,12 @@ $pf-page-v5--height-breakpoint-map: build-breakpoint-map("base", "sm", "md", "lg
|
|
|
404
404
|
-webkit-overflow-scrolling: touch;
|
|
405
405
|
background-color: var(--#{$page}__sidebar--BackgroundColor);
|
|
406
406
|
transition: var(--#{$page}__sidebar--Transition);
|
|
407
|
-
|
|
407
|
+
|
|
408
|
+
@include pf-v5-bidirectional-style(
|
|
409
|
+
$prop: transform,
|
|
410
|
+
$ltr-val: translateX(var(--#{$page}__sidebar--TranslateX)) translateZ(var(--#{$page}__sidebar--TranslateZ)),
|
|
411
|
+
$rtl-val: translateX(#{pf-v5-calc-inverse(var(--#{$page}__sidebar--TranslateX))}) translateZ(var(--#{$page}__sidebar--TranslateZ))
|
|
412
|
+
);
|
|
408
413
|
|
|
409
414
|
// Mobile
|
|
410
415
|
// Expanded nav
|
|
@@ -3416,22 +3416,26 @@ The `.pf-m-toggle-group` controls when, and at which breakpoint, filters will be
|
|
|
3416
3416
|
</div>
|
|
3417
3417
|
|
|
3418
3418
|
<nav class="pf-v5-c-pagination__nav" aria-label="Pagination">
|
|
3419
|
-
<
|
|
3420
|
-
|
|
3421
|
-
|
|
3422
|
-
|
|
3423
|
-
|
|
3424
|
-
|
|
3425
|
-
|
|
3426
|
-
|
|
3427
|
-
|
|
3428
|
-
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
|
|
3432
|
-
|
|
3433
|
-
|
|
3434
|
-
|
|
3419
|
+
<div class="pf-v5-c-pagination__nav-control pf-m-first">
|
|
3420
|
+
<button
|
|
3421
|
+
class="pf-v5-c-button pf-m-plain pf-m-disabled"
|
|
3422
|
+
type="button"
|
|
3423
|
+
aria-label="Go to first page"
|
|
3424
|
+
aria-disabled="true"
|
|
3425
|
+
>
|
|
3426
|
+
<i class="fas fa-angle-double-left" aria-hidden="true"></i>
|
|
3427
|
+
</button>
|
|
3428
|
+
</div>
|
|
3429
|
+
<div class="pf-v5-c-pagination__nav-control pf-m-prev">
|
|
3430
|
+
<button
|
|
3431
|
+
class="pf-v5-c-button pf-m-plain pf-m-disabled"
|
|
3432
|
+
type="button"
|
|
3433
|
+
aria-label="Go to previous page"
|
|
3434
|
+
aria-disabled="true"
|
|
3435
|
+
>
|
|
3436
|
+
<i class="fas fa-angle-left" aria-hidden="true"></i>
|
|
3437
|
+
</button>
|
|
3438
|
+
</div>
|
|
3435
3439
|
|
|
3436
3440
|
<div
|
|
3437
3441
|
class="pf-v5-c-pagination__nav-page-select"
|
|
@@ -3448,20 +3452,24 @@ The `.pf-m-toggle-group` controls when, and at which breakpoint, filters will be
|
|
|
3448
3452
|
</span>
|
|
3449
3453
|
<span aria-hidden="true">of 4</span>
|
|
3450
3454
|
</div>
|
|
3451
|
-
<
|
|
3452
|
-
|
|
3453
|
-
|
|
3454
|
-
|
|
3455
|
-
|
|
3456
|
-
|
|
3457
|
-
|
|
3458
|
-
|
|
3459
|
-
|
|
3460
|
-
|
|
3461
|
-
|
|
3462
|
-
|
|
3463
|
-
|
|
3464
|
-
|
|
3455
|
+
<div class="pf-v5-c-pagination__nav-control pf-m-next">
|
|
3456
|
+
<button
|
|
3457
|
+
class="pf-v5-c-button pf-m-plain"
|
|
3458
|
+
type="button"
|
|
3459
|
+
aria-label="Go to next page"
|
|
3460
|
+
>
|
|
3461
|
+
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
3462
|
+
</button>
|
|
3463
|
+
</div>
|
|
3464
|
+
<div class="pf-v5-c-pagination__nav-control pf-m-last">
|
|
3465
|
+
<button
|
|
3466
|
+
class="pf-v5-c-button pf-m-plain"
|
|
3467
|
+
type="button"
|
|
3468
|
+
aria-label="Go to last page"
|
|
3469
|
+
>
|
|
3470
|
+
<i class="fas fa-angle-double-right" aria-hidden="true"></i>
|
|
3471
|
+
</button>
|
|
3472
|
+
</div>
|
|
3465
3473
|
</nav>
|
|
3466
3474
|
</div>
|
|
3467
3475
|
</div>
|
|
@@ -3959,22 +3967,26 @@ The `.pf-m-toggle-group` controls when, and at which breakpoint, filters will be
|
|
|
3959
3967
|
</div>
|
|
3960
3968
|
|
|
3961
3969
|
<nav class="pf-v5-c-pagination__nav" aria-label="Pagination">
|
|
3962
|
-
<
|
|
3963
|
-
|
|
3964
|
-
|
|
3965
|
-
|
|
3966
|
-
|
|
3967
|
-
|
|
3968
|
-
|
|
3969
|
-
|
|
3970
|
-
|
|
3971
|
-
|
|
3972
|
-
|
|
3973
|
-
|
|
3974
|
-
|
|
3975
|
-
|
|
3976
|
-
|
|
3977
|
-
|
|
3970
|
+
<div class="pf-v5-c-pagination__nav-control pf-m-first">
|
|
3971
|
+
<button
|
|
3972
|
+
class="pf-v5-c-button pf-m-plain pf-m-disabled"
|
|
3973
|
+
type="button"
|
|
3974
|
+
aria-label="Go to first page"
|
|
3975
|
+
aria-disabled="true"
|
|
3976
|
+
>
|
|
3977
|
+
<i class="fas fa-angle-double-left" aria-hidden="true"></i>
|
|
3978
|
+
</button>
|
|
3979
|
+
</div>
|
|
3980
|
+
<div class="pf-v5-c-pagination__nav-control pf-m-prev">
|
|
3981
|
+
<button
|
|
3982
|
+
class="pf-v5-c-button pf-m-plain pf-m-disabled"
|
|
3983
|
+
type="button"
|
|
3984
|
+
aria-label="Go to previous page"
|
|
3985
|
+
aria-disabled="true"
|
|
3986
|
+
>
|
|
3987
|
+
<i class="fas fa-angle-left" aria-hidden="true"></i>
|
|
3988
|
+
</button>
|
|
3989
|
+
</div>
|
|
3978
3990
|
|
|
3979
3991
|
<div
|
|
3980
3992
|
class="pf-v5-c-pagination__nav-page-select"
|
|
@@ -3991,20 +4003,24 @@ The `.pf-m-toggle-group` controls when, and at which breakpoint, filters will be
|
|
|
3991
4003
|
</span>
|
|
3992
4004
|
<span aria-hidden="true">of 4</span>
|
|
3993
4005
|
</div>
|
|
3994
|
-
<
|
|
3995
|
-
|
|
3996
|
-
|
|
3997
|
-
|
|
3998
|
-
|
|
3999
|
-
|
|
4000
|
-
|
|
4001
|
-
|
|
4002
|
-
|
|
4003
|
-
|
|
4004
|
-
|
|
4005
|
-
|
|
4006
|
-
|
|
4007
|
-
|
|
4006
|
+
<div class="pf-v5-c-pagination__nav-control pf-m-next">
|
|
4007
|
+
<button
|
|
4008
|
+
class="pf-v5-c-button pf-m-plain"
|
|
4009
|
+
type="button"
|
|
4010
|
+
aria-label="Go to next page"
|
|
4011
|
+
>
|
|
4012
|
+
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
4013
|
+
</button>
|
|
4014
|
+
</div>
|
|
4015
|
+
<div class="pf-v5-c-pagination__nav-control pf-m-last">
|
|
4016
|
+
<button
|
|
4017
|
+
class="pf-v5-c-button pf-m-plain"
|
|
4018
|
+
type="button"
|
|
4019
|
+
aria-label="Go to last page"
|
|
4020
|
+
>
|
|
4021
|
+
<i class="fas fa-angle-double-right" aria-hidden="true"></i>
|
|
4022
|
+
</button>
|
|
4023
|
+
</div>
|
|
4008
4024
|
</nav>
|
|
4009
4025
|
</div>
|
|
4010
4026
|
</div>
|
|
@@ -387,8 +387,8 @@ wrapperTag: div
|
|
|
387
387
|
<div class="pf-v5-c-card pf-m-flat" id="card-demo-horizontal-split-example">
|
|
388
388
|
<div class="pf-v5-l-grid pf-m-all-6-col-on-md">
|
|
389
389
|
<div
|
|
390
|
-
class="pf-v5-l-grid__item
|
|
391
|
-
style="min-height: 200px; background:
|
|
390
|
+
class="pf-v5-l-grid__item"
|
|
391
|
+
style="min-height: 200px; background: no-repeat bottom right / auto 75% url(/assets/images/pfbg-icon.svg) black;"
|
|
392
392
|
></div>
|
|
393
393
|
<div class="pf-v5-l-grid__item">
|
|
394
394
|
<div class="pf-v5-c-card__title">
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@patternfly/patternfly",
|
|
3
3
|
"description": "Assets, source, tooling, and content for PatternFly 4",
|
|
4
|
-
"version": "5.1.0-prerelease.
|
|
4
|
+
"version": "5.1.0-prerelease.13",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"scripts": {
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@commitlint/config-conventional": "^17.6.7",
|
|
46
46
|
"@fortawesome/fontawesome": "^1.1.8",
|
|
47
47
|
"@octokit/rest": "^20.0.1",
|
|
48
|
-
"@patternfly/documentation-framework": "5.1.
|
|
48
|
+
"@patternfly/documentation-framework": "5.1.10",
|
|
49
49
|
"@patternfly/patternfly-a11y": "4.3.1",
|
|
50
50
|
"@patternfly/react-code-editor": "5.0.0",
|
|
51
51
|
"@patternfly/react-core": "5.0.0",
|
|
@@ -5967,6 +5967,9 @@
|
|
|
5967
5967
|
transition: var(--pf-v5-c-alert__toggle-icon--Transition);
|
|
5968
5968
|
transform: rotate(var(--pf-v5-c-alert__toggle-icon--Rotate));
|
|
5969
5969
|
}
|
|
5970
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-alert__toggle-icon {
|
|
5971
|
+
scale: -1 1;
|
|
5972
|
+
}
|
|
5970
5973
|
|
|
5971
5974
|
.pf-v5-c-alert__icon {
|
|
5972
5975
|
display: flex;
|
|
@@ -6929,6 +6932,9 @@
|
|
|
6929
6932
|
line-height: 1;
|
|
6930
6933
|
color: var(--pf-v5-c-breadcrumb__item-divider--Color);
|
|
6931
6934
|
}
|
|
6935
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-breadcrumb__item-divider {
|
|
6936
|
+
scale: -1 1;
|
|
6937
|
+
}
|
|
6932
6938
|
|
|
6933
6939
|
.pf-v5-c-breadcrumb__link {
|
|
6934
6940
|
font-size: inherit;
|
|
@@ -7615,6 +7621,10 @@ button.pf-v5-c-breadcrumb__link {
|
|
|
7615
7621
|
margin-inline-start: var(--pf-v5-c-calendar-month__header-nav-control--MarginLeft);
|
|
7616
7622
|
margin-inline-end: var(--pf-v5-c-calendar-month__header-nav-control--MarginRight);
|
|
7617
7623
|
}
|
|
7624
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-calendar-month__header-nav-control {
|
|
7625
|
+
scale: -1 1;
|
|
7626
|
+
}
|
|
7627
|
+
|
|
7618
7628
|
.pf-v5-c-calendar-month__header-nav-control.pf-m-prev-month {
|
|
7619
7629
|
--pf-v5-c-calendar-month__header-nav-control--MarginRight: var(--pf-v5-c-calendar-month__header-nav-control--m-prev-month--MarginRight);
|
|
7620
7630
|
--pf-v5-c-calendar-month__header-nav-control--MarginLeft: var(--pf-v5-c-calendar-month__header-nav-control--m-prev-month--MarginLeft);
|
|
@@ -8506,6 +8516,9 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
8506
8516
|
.pf-v5-c-clipboard-copy__toggle-icon {
|
|
8507
8517
|
transition: var(--pf-v5-c-clipboard-copy__toggle-icon--Transition);
|
|
8508
8518
|
}
|
|
8519
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-clipboard-copy__toggle-icon {
|
|
8520
|
+
scale: -1 1;
|
|
8521
|
+
}
|
|
8509
8522
|
|
|
8510
8523
|
.pf-v5-c-clipboard-copy__expandable-content {
|
|
8511
8524
|
padding-block-start: var(--pf-v5-c-clipboard-copy__expandable-content--PaddingTop);
|
|
@@ -17853,6 +17866,10 @@ ul.pf-v5-c-list {
|
|
|
17853
17866
|
.pf-v5-c-menu.pf-m-drilldown.pf-m-drilled-in > .pf-v5-c-menu__list {
|
|
17854
17867
|
transform: translateX(-100%);
|
|
17855
17868
|
}
|
|
17869
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-menu.pf-m-drilldown.pf-m-drilled-in > .pf-v5-c-menu__content > .pf-v5-c-menu__list, .pf-v5-c-menu.pf-m-drilldown.pf-m-drilled-in > .pf-v5-c-menu__list {
|
|
17870
|
+
transform: translateX(calc(-100% * var(--pf-v5-global--inverse--multiplier)));
|
|
17871
|
+
}
|
|
17872
|
+
|
|
17856
17873
|
.pf-v5-c-menu.pf-m-drilldown > .pf-v5-c-menu__content .pf-v5-c-menu {
|
|
17857
17874
|
--pf-v5-c-menu--BoxShadow: none;
|
|
17858
17875
|
position: absolute;
|
|
@@ -17864,6 +17881,10 @@ ul.pf-v5-c-list {
|
|
|
17864
17881
|
.pf-v5-c-menu.pf-m-drilldown > .pf-v5-c-menu__content .pf-v5-c-menu.pf-m-drilled-in {
|
|
17865
17882
|
transform: translateX(-100%);
|
|
17866
17883
|
}
|
|
17884
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-menu.pf-m-drilldown > .pf-v5-c-menu__content .pf-v5-c-menu.pf-m-drilled-in {
|
|
17885
|
+
transform: translateX(calc(-100% * var(--pf-v5-global--inverse--multiplier)));
|
|
17886
|
+
}
|
|
17887
|
+
|
|
17867
17888
|
.pf-v5-c-menu.pf-m-drilldown .pf-v5-c-menu__list {
|
|
17868
17889
|
position: relative;
|
|
17869
17890
|
overflow: hidden;
|
|
@@ -18163,6 +18184,9 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab
|
|
|
18163
18184
|
padding-inline-end: var(--pf-v5-c-menu__item-toggle-icon--PaddingRight);
|
|
18164
18185
|
color: var(--pf-v5-c-menu__item-toggle-icon, inherit);
|
|
18165
18186
|
}
|
|
18187
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-menu__item-toggle-icon {
|
|
18188
|
+
scale: -1 1;
|
|
18189
|
+
}
|
|
18166
18190
|
|
|
18167
18191
|
.pf-v5-c-menu__item-text + .pf-v5-c-menu__item-toggle-icon {
|
|
18168
18192
|
margin-inline-start: var(--pf-v5-c-menu__item-text--item-toggle-icon--MarginLeft);
|
|
@@ -19486,6 +19510,10 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab
|
|
|
19486
19510
|
.pf-v5-c-nav .pf-v5-c-menu__item-toggle-icon {
|
|
19487
19511
|
margin-inline-start: calc(var(--pf-v5-c-menu__item-toggle-icon--PaddingLeft) * -1);
|
|
19488
19512
|
}
|
|
19513
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-nav .pf-v5-c-menu__item-toggle-icon {
|
|
19514
|
+
scale: -1 1;
|
|
19515
|
+
}
|
|
19516
|
+
|
|
19489
19517
|
.pf-v5-c-nav.pf-m-horizontal .pf-v5-c-nav__link::after, .pf-v5-c-nav.pf-m-tertiary .pf-v5-c-nav__link::after {
|
|
19490
19518
|
content: none;
|
|
19491
19519
|
}
|
|
@@ -19929,6 +19957,10 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab
|
|
|
19929
19957
|
display: inline-block;
|
|
19930
19958
|
transition: var(--pf-v5-c-nav__toggle-icon--Transition);
|
|
19931
19959
|
}
|
|
19960
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-nav__toggle-icon {
|
|
19961
|
+
scale: -1 1;
|
|
19962
|
+
}
|
|
19963
|
+
|
|
19932
19964
|
.pf-v5-c-nav__item.pf-m-expanded .pf-v5-c-nav__toggle-icon {
|
|
19933
19965
|
transform: rotate(var(--pf-v5-c-nav__item--m-expanded__toggle-icon--Rotate));
|
|
19934
19966
|
}
|
|
@@ -19984,6 +20016,10 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab
|
|
|
19984
20016
|
opacity: 0;
|
|
19985
20017
|
transition: var(--pf-v5-c-nav__scroll-button--Transition);
|
|
19986
20018
|
}
|
|
20019
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-nav__scroll-button > * {
|
|
20020
|
+
scale: -1 1;
|
|
20021
|
+
}
|
|
20022
|
+
|
|
19987
20023
|
.pf-v5-c-nav__scroll-button::before {
|
|
19988
20024
|
position: absolute;
|
|
19989
20025
|
inset-block-start: 0;
|
|
@@ -20011,6 +20047,10 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab
|
|
|
20011
20047
|
margin-inline-end: calc(var(--pf-v5-c-nav__scroll-button--Width) * -1);
|
|
20012
20048
|
transform: translateX(-100%);
|
|
20013
20049
|
}
|
|
20050
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-nav__scroll-button:nth-of-type(1) {
|
|
20051
|
+
transform: translateX(calc(-100% * var(--pf-v5-global--inverse--multiplier)));
|
|
20052
|
+
}
|
|
20053
|
+
|
|
20014
20054
|
.pf-v5-c-nav__scroll-button:nth-of-type(1)::before {
|
|
20015
20055
|
inset-inline-end: 0;
|
|
20016
20056
|
}
|
|
@@ -20019,6 +20059,10 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab
|
|
|
20019
20059
|
margin-inline-start: calc(var(--pf-v5-c-nav__scroll-button--Width) * -1);
|
|
20020
20060
|
transform: translateX(100%);
|
|
20021
20061
|
}
|
|
20062
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-nav__scroll-button:nth-of-type(2) {
|
|
20063
|
+
transform: translateX(calc(100% * var(--pf-v5-global--inverse--multiplier)));
|
|
20064
|
+
}
|
|
20065
|
+
|
|
20022
20066
|
.pf-v5-c-nav__scroll-button:nth-of-type(2)::before {
|
|
20023
20067
|
inset-inline-start: 0;
|
|
20024
20068
|
}
|
|
@@ -20453,6 +20497,10 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab
|
|
|
20453
20497
|
color: var(--pf-v5-c-notification-drawer__group-toggle-icon--Color);
|
|
20454
20498
|
transition: var(--pf-v5-c-notification-drawer__group-toggle-icon--Transition);
|
|
20455
20499
|
}
|
|
20500
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-notification-drawer__group-toggle-icon {
|
|
20501
|
+
scale: -1 1;
|
|
20502
|
+
}
|
|
20503
|
+
|
|
20456
20504
|
.pf-v5-c-notification-drawer__group.pf-m-expanded .pf-v5-c-notification-drawer__group-toggle-icon {
|
|
20457
20505
|
transform: rotate(var(--pf-v5-c-notification-drawer__group--m-expanded__group-toggle-icon--Rotate));
|
|
20458
20506
|
}
|
|
@@ -21154,6 +21202,10 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab
|
|
|
21154
21202
|
transition: var(--pf-v5-c-page__sidebar--Transition);
|
|
21155
21203
|
transform: translateX(var(--pf-v5-c-page__sidebar--TranslateX)) translateZ(var(--pf-v5-c-page__sidebar--TranslateZ));
|
|
21156
21204
|
}
|
|
21205
|
+
:where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-page__sidebar {
|
|
21206
|
+
transform: translateX(calc(var(--pf-v5-c-page__sidebar--TranslateX) * var(--pf-v5-global--inverse--multiplier))) translateZ(var(--pf-v5-c-page__sidebar--TranslateZ));
|
|
21207
|
+
}
|
|
21208
|
+
|
|
21157
21209
|
.pf-v5-c-page__sidebar.pf-m-expanded {
|
|
21158
21210
|
--pf-v5-c-page__sidebar--TranslateX: var(--pf-v5-c-page__sidebar--m-expanded--TranslateX);
|
|
21159
21211
|
box-shadow: var(--pf-v5-c-page__sidebar--BoxShadow);
|