@patternfly/patternfly 6.3.0-prerelease.4 → 6.3.0-prerelease.40
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/README.md +1 -1
- package/assets/images/icon-help.hbs +3 -0
- package/assets/images/icon-outlined-star.hbs +3 -0
- package/assets/images/icon-star.hbs +3 -0
- package/base/patternfly-common.css +46 -11
- package/base/patternfly-common.scss +58 -13
- package/components/Accordion/accordion.css +72 -3
- package/components/Accordion/accordion.scss +78 -6
- package/components/Alert/alert-group.css +52 -31
- package/components/Alert/alert-group.scss +77 -46
- package/components/Button/button.css +154 -6
- package/components/Button/button.scss +160 -8
- package/components/CodeEditor/code-editor.css +3 -0
- package/components/CodeEditor/code-editor.scss +3 -1
- package/components/DataList/data-list.css +2 -2
- package/components/DataList/data-list.scss +2 -2
- package/components/DualListSelector/dual-list-selector.css +36 -0
- package/components/DualListSelector/dual-list-selector.scss +43 -0
- package/components/ExpandableSection/expandable-section.css +63 -1
- package/components/ExpandableSection/expandable-section.scss +76 -2
- package/components/FileUpload/file-upload.css +3 -3
- package/components/FileUpload/file-upload.scss +3 -3
- package/components/Form/form.css +40 -1
- package/components/Form/form.scss +47 -1
- package/components/FormControl/form-control.css +16 -0
- package/components/FormControl/form-control.scss +9 -0
- package/components/InputGroup/input-group.css +80 -0
- package/components/InputGroup/input-group.scss +95 -0
- package/components/Menu/menu.css +24 -4
- package/components/Menu/menu.scss +20 -5
- package/components/MenuToggle/menu-toggle.css +38 -4
- package/components/MenuToggle/menu-toggle.scss +48 -3
- package/components/Nav/nav.css +22 -8
- package/components/Nav/nav.scss +22 -9
- package/components/Page/page.css +66 -6
- package/components/Page/page.scss +48 -5
- package/components/Progress/progress.css +16 -0
- package/components/Progress/progress.scss +11 -1
- package/components/ProgressStepper/progress-stepper.scss +1 -0
- package/components/Skeleton/skeleton.css +22 -2
- package/components/Skeleton/skeleton.scss +25 -3
- package/components/Spinner/spinner.css +5 -0
- package/components/Spinner/spinner.scss +6 -0
- package/components/Table/table-grid.css +51 -5
- package/components/Table/table-grid.scss +22 -1
- package/components/Table/table.css +83 -1
- package/components/Table/table.scss +123 -1
- package/components/Tabs/tabs.css +25 -15
- package/components/Tabs/tabs.scss +26 -13
- package/components/TextInputGroup/text-input-group.css +16 -0
- package/components/TextInputGroup/text-input-group.scss +8 -0
- package/components/Timestamp/timestamp.css +4 -0
- package/components/Timestamp/timestamp.scss +7 -0
- package/components/TreeView/tree-view.css +39 -0
- package/components/TreeView/tree-view.scss +42 -2
- package/components/Truncate/truncate.css +1 -0
- package/components/Truncate/truncate.scss +3 -0
- package/components/_index.css +933 -92
- package/docs/components/Breadcrumb/examples/Breadcrumb.md +1 -1
- package/docs/components/Button/examples/Button.md +161 -6
- package/docs/components/Card/examples/Card.md +8 -8
- package/docs/components/CodeBlock/examples/CodeBlock.md +5 -5
- package/docs/components/CodeEditor/examples/CodeEditor.md +26 -2
- package/docs/components/DataList/examples/DataList.md +23 -23
- package/docs/components/Divider/examples/Divider.md +1 -1
- package/docs/components/Drawer/examples/Drawer.md +4 -0
- package/docs/components/DualListSelector/examples/DualListSelector.md +534 -16
- package/docs/components/ExpandableSection/examples/ExpandableSection.md +17 -12
- package/docs/components/Form/examples/Form.md +1179 -114
- package/docs/components/Hint/examples/Hint.md +3 -3
- package/docs/components/InlineEdit/examples/InlineEdit.md +2 -2
- package/docs/components/InputGroup/examples/InputGroup.md +5 -1
- package/docs/components/JumpLinks/examples/JumpLinks.md +1 -1
- package/docs/components/Masthead/examples/masthead.md +90 -12
- package/docs/components/Menu/examples/Menu.md +122 -6
- package/docs/components/MenuToggle/examples/MenuToggle.md +93 -55
- package/docs/components/ModalBox/examples/ModalBox.md +13 -1
- package/docs/components/MultipleFileUpload/examples/MultipleFileUpload.md +2 -10
- package/docs/components/OverflowMenu/examples/overflow-menu.md +5 -5
- package/docs/components/Page/examples/Page.md +148 -14
- package/docs/components/Pagination/examples/Pagination.md +12 -12
- package/docs/components/ProgressStepper/examples/ProgressStepper.md +32 -6
- package/docs/components/Slider/examples/Slider.md +2 -2
- package/docs/components/Spinner/examples/Spinner.md +10 -0
- package/docs/components/Table/examples/Table.md +9457 -6178
- package/docs/components/Tabs/examples/Tabs.md +1214 -6729
- package/docs/components/TextInputGroup/examples/TextInputGroup.md +45 -5
- package/docs/components/Toolbar/examples/Toolbar.md +7 -7
- package/docs/demos/AboutModal/examples/AboutModal.md +22 -3
- package/docs/demos/Alert/examples/Alert.md +66 -9
- package/docs/demos/BackToTop/examples/BackToTop.md +22 -3
- package/docs/demos/Banner/examples/Banner.md +47 -6
- package/docs/demos/Card/examples/Card.md +5 -62
- package/docs/demos/CardView/examples/CardView.md +24 -5
- package/docs/demos/Dashboard/examples/Dashboard.md +24 -5
- package/docs/demos/DataList/examples/DataList.md +100 -24
- package/docs/demos/DescriptionList/examples/DescriptionList.md +66 -47
- package/docs/demos/Drawer/examples/Drawer.md +110 -53
- package/docs/demos/Form/examples/BasicForms.md +142 -22
- package/docs/demos/JumpLinks/examples/JumpLinks.md +132 -18
- package/docs/demos/Masthead/examples/Masthead.md +171 -19
- package/docs/demos/Modal/examples/Modal.md +171 -21
- package/docs/demos/Nav/examples/Nav.md +113 -18
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +110 -15
- package/docs/demos/Page/examples/Page.md +661 -40
- package/docs/demos/PasswordGenerator/examples/PasswordGenerator.md +13 -1
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +160 -103
- package/docs/demos/Skeleton/examples/Skeleton.md +22 -3
- package/docs/demos/Table/examples/Table.md +516 -178
- package/docs/demos/Tabs/examples/Tabs.md +137 -593
- package/docs/demos/Toolbar/examples/Toolbar.md +72 -34
- package/docs/demos/Wizard/examples/Wizard.md +198 -27
- package/package.json +6 -6
- package/patternfly-base-no-globals.css +45 -11
- package/patternfly-base.css +45 -11
- package/patternfly-no-globals.css +978 -103
- package/patternfly.css +978 -103
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/sass-utilities/mixins.scss +54 -0
package/components/_index.css
CHANGED
|
@@ -205,6 +205,7 @@
|
|
|
205
205
|
--pf-v6-c-accordion__toggle--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
|
|
206
206
|
--pf-v6-c-accordion__toggle--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
|
|
207
207
|
--pf-v6-c-accordion__toggle--BorderRadius: var(--pf-t--global--border--radius--small);
|
|
208
|
+
--pf-v6-c-accordion__toggle--ZIndex: var(--pf-t--global--z-index--xs);
|
|
208
209
|
--pf-v6-c-accordion--m-toggle-start__toggle--ColumnGap: var(--pf-t--global--spacer--gap--text-to-element--default);
|
|
209
210
|
--pf-v6-c-accordion__toggle-text--Color: var(--pf-t--global--text--color--regular);
|
|
210
211
|
--pf-v6-c-accordion__toggle-text--FontWeight: var(--pf-t--global--font--weight--body--default);
|
|
@@ -222,6 +223,24 @@
|
|
|
222
223
|
--pf-v6-c-accordion__expandable-content--Color: var(--pf-t--global--text--color--regular);
|
|
223
224
|
--pf-v6-c-accordion__expandable-content--FontSize: var(--pf-t--global--font--size--body--default);
|
|
224
225
|
--pf-v6-c-accordion__expandable-content--m-fixed--MaxHeight: 9.375rem;
|
|
226
|
+
--pf-v6-c-accordion__item--before--TransitionDuration--expand--fade: var(--pf-t--global--motion--duration--fade--default);
|
|
227
|
+
--pf-v6-c-accordion__item--before--TransitionDuration--collapse--fade: var(--pf-t--global--motion--duration--fade--short);
|
|
228
|
+
--pf-v6-c-accordion__item--before--TransitionDuration--fade: var(--pf-v6-c-accordion__item--before--TransitionDuration--collapse--fade);
|
|
229
|
+
--pf-v6-c-accordion__item--before--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
230
|
+
--pf-v6-c-accordion__item--before--Opacity: 0;
|
|
231
|
+
--pf-v6-c-accordion__item--m-expanded--before--Opacity: 1;
|
|
232
|
+
--pf-v6-c-accordion__item--m-expanded--before--TranslateY: 0;
|
|
233
|
+
--pf-v6-c-accordion__expandable-content--TransitionDuration--collapse--slide: 0s;
|
|
234
|
+
--pf-v6-c-accordion__expandable-content--TransitionDuration--collapse--fade: var(--pf-t--global--motion--duration--fade--short);
|
|
235
|
+
--pf-v6-c-accordion__expandable-content--TransitionDuration--expand--slide: 0s;
|
|
236
|
+
--pf-v6-c-accordion__expandable-content--TransitionDuration--expand--fade: var(--pf-t--global--motion--duration--fade--default);
|
|
237
|
+
--pf-v6-c-accordion__expandable-content--TransitionDuration--slide: var(--pf-v6-c-accordion__expandable-content--TransitionDuration--collapse--slide);
|
|
238
|
+
--pf-v6-c-accordion__expandable-content--TransitionDuration--fade: var(--pf-v6-c-accordion__expandable-content--TransitionDuration--collapse--fade);
|
|
239
|
+
--pf-v6-c-accordion__expandable-content--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
240
|
+
--pf-v6-c-accordion__expandable-content--Opacity: 0;
|
|
241
|
+
--pf-v6-c-accordion__item--m-expanded__expandable-content--Opacity: 1;
|
|
242
|
+
--pf-v6-c-accordion__expandable-content--TranslateY: 0;
|
|
243
|
+
--pf-v6-c-accordion__item--m-expanded__expandable-content--TranslateY: 0;
|
|
225
244
|
--pf-v6-c-accordion__expandable-content-body--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
226
245
|
--pf-v6-c-accordion__expandable-content-body--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
|
|
227
246
|
--pf-v6-c-accordion__expandable-content-body--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
@@ -241,6 +260,16 @@
|
|
|
241
260
|
--pf-v6-c-accordion__item--m-bordered--BorderBlockEndWidth: var(--pf-t--global--border--width--divider--default);
|
|
242
261
|
--pf-v6-c-accordion__item--m-bordered--BorderBlockEndColor: var(--pf-t--global--border--color--default);
|
|
243
262
|
}
|
|
263
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
|
264
|
+
.pf-v6-c-accordion {
|
|
265
|
+
--pf-v6-c-accordion__item--before--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
|
|
266
|
+
--pf-v6-c-accordion__item--before--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
|
|
267
|
+
--pf-v6-c-accordion__item--before--TranslateY: -.5rem;
|
|
268
|
+
--pf-v6-c-accordion__expandable-content--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
|
|
269
|
+
--pf-v6-c-accordion__expandable-content--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
|
|
270
|
+
--pf-v6-c-accordion__expandable-content--TranslateY: -.5rem;
|
|
271
|
+
}
|
|
272
|
+
}
|
|
244
273
|
|
|
245
274
|
.pf-v6-c-accordion {
|
|
246
275
|
display: flex;
|
|
@@ -274,18 +303,39 @@
|
|
|
274
303
|
}
|
|
275
304
|
|
|
276
305
|
.pf-v6-c-accordion__item {
|
|
306
|
+
position: relative;
|
|
307
|
+
}
|
|
308
|
+
.pf-v6-c-accordion__item::before {
|
|
309
|
+
position: absolute;
|
|
310
|
+
inset: 0;
|
|
311
|
+
pointer-events: none;
|
|
312
|
+
content: "";
|
|
313
|
+
background-color: var(--pf-v6-c-accordion__item--m-expanded--BackgroundColor);
|
|
277
314
|
border-radius: var(--pf-v6-c-accordion__item--BorderRadius);
|
|
315
|
+
opacity: var(--pf-v6-c-accordion__item--before--Opacity);
|
|
316
|
+
transition-timing-function: var(--pf-v6-c-accordion__item--before--TransitionTimingFunction);
|
|
317
|
+
transition-duration: var(--pf-v6-c-accordion__item--before--TransitionDuration--fade);
|
|
318
|
+
transition-property: opacity;
|
|
278
319
|
}
|
|
279
320
|
.pf-v6-c-accordion__item.pf-m-expanded {
|
|
280
321
|
--pf-v6-c-accordion__toggle--PaddingBlockEnd: var(--pf-v6-c-accordion__toggle--m-expanded--PaddingBlockEnd);
|
|
281
322
|
--pf-v6-c-accordion__toggle-text--FontWeight: var(--pf-v6-c-accordion__toggle--m-expanded__toggle-text--FontWeight);
|
|
282
|
-
|
|
323
|
+
--pf-v6-c-accordion__item--before--TransitionDuration--slide: var(--pf-v6-c-accordion__item--before--TransitionDuration--expand--slide);
|
|
324
|
+
--pf-v6-c-accordion__item--before--TransitionDuration--fade: var(--pf-v6-c-accordion__item--before--TransitionDuration--expand--fade);
|
|
325
|
+
--pf-v6-c-accordion__item--before--Opacity: var(--pf-v6-c-accordion__item--m-expanded--before--Opacity);
|
|
326
|
+
--pf-v6-c-accordion__item--before--TranslateY: var(--pf-v6-c-accordion__item--m-expanded--before--TranslateY);
|
|
327
|
+
--pf-v6-c-accordion__expandable-content--TransitionDuration--slide: var(--pf-v6-c-accordion__expandable-content--TransitionDuration--expand--slide);
|
|
328
|
+
--pf-v6-c-accordion__expandable-content--TransitionDuration--fade: var(--pf-v6-c-accordion__expandable-content--TransitionDuration--expand--fade);
|
|
329
|
+
--pf-v6-c-accordion__expandable-content--Opacity: var(--pf-v6-c-accordion__item--m-expanded__expandable-content--Opacity);
|
|
330
|
+
--pf-v6-c-accordion__expandable-content--TranslateY: var(--pf-v6-c-accordion__item--m-expanded__expandable-content--TranslateY);
|
|
283
331
|
}
|
|
284
332
|
.pf-v6-c-accordion__item.pf-m-expanded .pf-v6-c-accordion__toggle-icon {
|
|
285
333
|
transform: rotate(var(--pf-v6-c-accordion__toggle--m-expanded__toggle-icon--Rotate));
|
|
286
334
|
}
|
|
287
335
|
|
|
288
336
|
.pf-v6-c-accordion__toggle {
|
|
337
|
+
position: relative;
|
|
338
|
+
z-index: var(--pf-v6-c-accordion__toggle--ZIndex);
|
|
289
339
|
display: flex;
|
|
290
340
|
column-gap: var(--pf-v6-c-accordion__toggle--ColumnGap);
|
|
291
341
|
align-items: center;
|
|
@@ -321,19 +371,38 @@
|
|
|
321
371
|
scale: -1 1;
|
|
322
372
|
}
|
|
323
373
|
|
|
374
|
+
.pf-v6-c-accordion__expandable-content:where([hidden]) {
|
|
375
|
+
display: revert;
|
|
376
|
+
}
|
|
377
|
+
|
|
324
378
|
.pf-v6-c-accordion__expandable-content {
|
|
325
|
-
|
|
379
|
+
max-height: 0;
|
|
326
380
|
margin-inline-start: var(--pf-v6-c-accordion__expandable-content--MarginInlineStart);
|
|
327
381
|
margin-inline-end: var(--pf-v6-c-accordion__expandable-content--MarginInlineEnd);
|
|
328
382
|
font-size: var(--pf-v6-c-accordion__expandable-content--FontSize);
|
|
329
383
|
color: var(--pf-v6-c-accordion__expandable-content--Color);
|
|
384
|
+
visibility: hidden;
|
|
330
385
|
background-color: var(--pf-v6-c-accordion__expandable-content--BackgroundColor);
|
|
331
386
|
border-radius: var(--pf-v6-c-accordion__expandable-content--BorderRadius);
|
|
387
|
+
opacity: var(--pf-v6-c-accordion__expandable-content--Opacity);
|
|
388
|
+
transition-delay: 0s, 0s, var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade);
|
|
389
|
+
transition-timing-function: var(--pf-v6-c-accordion__expandable-content--TransitionTimingFunction);
|
|
390
|
+
transition-duration: var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--slide), 0s, 0s, 0s;
|
|
391
|
+
transition-property: opacity, translate, visibility, max-height, margin-block-end;
|
|
392
|
+
translate: 0 var(--pf-v6-c-accordion__expandable-content--TranslateY);
|
|
332
393
|
}
|
|
333
394
|
.pf-v6-c-accordion__expandable-content.pf-m-fixed {
|
|
334
|
-
max-height: var(--pf-v6-c-accordion__expandable-content--m-fixed--MaxHeight);
|
|
335
395
|
overflow-y: auto;
|
|
336
396
|
}
|
|
397
|
+
.pf-v6-c-accordion__item.pf-m-expanded .pf-v6-c-accordion__expandable-content {
|
|
398
|
+
max-height: 99999px;
|
|
399
|
+
margin-block-end: var(--pf-v6-c-accordion__expandable-content--MarginBlockEnd);
|
|
400
|
+
visibility: revert;
|
|
401
|
+
transition-delay: 0s;
|
|
402
|
+
}
|
|
403
|
+
.pf-v6-c-accordion__item.pf-m-expanded .pf-v6-c-accordion__expandable-content.pf-m-fixed {
|
|
404
|
+
max-height: var(--pf-v6-c-accordion__expandable-content--m-fixed--MaxHeight);
|
|
405
|
+
}
|
|
337
406
|
|
|
338
407
|
.pf-v6-c-accordion__expandable-content-body {
|
|
339
408
|
padding-block-start: var(--pf-v6-c-accordion__expandable-content-body--PaddingBlockStart);
|
|
@@ -597,27 +666,45 @@
|
|
|
597
666
|
var(--pf-v6-c-alert-group--m-toast__item--c-alert--TransitionDuration)
|
|
598
667
|
var(--pf-v6-c-alert-group--m-toast__item--c-alert--TransitionTimingFunction)
|
|
599
668
|
0s;
|
|
600
|
-
--pf-v6-c-alert-group--m-toast__item--m-
|
|
601
|
-
--pf-v6-c-alert-group--m-toast__item--m-
|
|
602
|
-
--pf-v6-c-alert-group--m-toast__item--m-
|
|
603
|
-
--pf-v6-c-alert-group--m-toast__item--m-
|
|
604
|
-
--pf-v6-c-alert-group--m-toast__item--m-
|
|
605
|
-
--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDuration--
|
|
606
|
-
--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionTimingFunction--
|
|
607
|
-
--pf-v6-c-alert-group--m-toast__item--m-offstage-right--
|
|
608
|
-
--pf-v6-c-alert-group--m-toast__item--m-offstage-right--
|
|
609
|
-
--pf-v6-c-alert-group--m-toast__item--m-offstage-right--
|
|
610
|
-
--pf-v6-c-alert-group--m-toast__item--m-
|
|
611
|
-
--pf-v6-c-alert-group--m-toast__item--m-
|
|
612
|
-
--pf-v6-c-alert-group--m-toast__item--m-
|
|
613
|
-
--pf-v6-c-alert-group--m-toast__item--m-
|
|
614
|
-
--pf-v6-c-alert-group--m-toast__item--m-
|
|
615
|
-
--pf-v6-c-alert-group--m-toast__item--m-
|
|
616
|
-
--pf-v6-c-alert-group--m-toast__item--m-
|
|
617
|
-
--pf-v6-c-alert-group--m-toast__item--m-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
669
|
+
--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionDuration--opacity--default: var(--pf-t--global--motion--duration--fade--default);
|
|
670
|
+
--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionTimingFunction--opacity--default: var(--pf-t--global--motion--timing-function--accelerate);
|
|
671
|
+
--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionDelay--grid-template-rows--default: var(--pf-t--global--motion--duration--fade--default);
|
|
672
|
+
--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionDelay--margin-block--default: var(--pf-t--global--motion--duration--fade--default);
|
|
673
|
+
--pf-v6-c-alert-group--m-toast__item--m-outgoing--c-alert--TransitionDelay--default: var(--pf-t--global--motion--duration--fade--default);
|
|
674
|
+
--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDuration--opacity--default: initial;
|
|
675
|
+
--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionTimingFunction--opacity--default: initial;
|
|
676
|
+
--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDelay--grid-template-rows--default: initial;
|
|
677
|
+
--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDelay--margin-block--default: initial;
|
|
678
|
+
--pf-v6-c-alert-group--m-toast__item--m-offstage-right--c-alert--TransitionDelay--default: initial;
|
|
679
|
+
--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionDuration--transform: var(--pf-t--global--motion--duration--slide-out--short);
|
|
680
|
+
--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionTimingFunction--transform: var(--pf-t--global--motion--timing-function--accelerate);
|
|
681
|
+
--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionDuration--opacity: var(--pf-t--global--motion--duration--slide-out--short);
|
|
682
|
+
--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionTimingFunction--opacity: var(--pf-t--global--motion--timing-function--accelerate);
|
|
683
|
+
--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionDuration--margin-block: var(--pf-t--global--motion--duration--fade--short);
|
|
684
|
+
--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionTimingFunction--margin-block: var(--pf-t--global--motion--timing-function--accelerate);
|
|
685
|
+
--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionDelay--margin-block: var(--pf-t--global--motion--duration--slide-out--short);
|
|
686
|
+
--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionDuration--grid-template-rows: var(--pf-t--global--motion--duration--slide-in--short);
|
|
687
|
+
--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionTimingFunction--grid-template-rows: var(--pf-t--global--motion--timing-function--accelerate);
|
|
688
|
+
--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionDelay--grid-template-rows: var(--pf-t--global--motion--duration--slide-out--short);
|
|
689
|
+
--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDuration--transform: initial;
|
|
690
|
+
--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionTimingFunction--transform: initial;
|
|
691
|
+
--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDuration--opacity: initial;
|
|
692
|
+
--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionTimingFunction--opacity: initial;
|
|
693
|
+
--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDuration--margin-block: initial;
|
|
694
|
+
--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionTimingFunction--margin-block: initial;
|
|
695
|
+
--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDelay--margin-block: initial;
|
|
696
|
+
--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDuration--grid-template-rows: initial;
|
|
697
|
+
--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionTimingFunction--grid-template-rows: initial;
|
|
698
|
+
--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDelay--grid-template-rows: initial;
|
|
699
|
+
--pf-v6-c-alert-group--m-toast__item--m-outgoing--c-alert--TransitionDuration: var(--pf-t--global--motion--duration--slide-out--short);
|
|
700
|
+
--pf-v6-c-alert-group--m-toast__item--m-outgoing--c-alert--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--accelerate);
|
|
701
|
+
--pf-v6-c-alert-group--m-toast__item--m-outgoing--c-alert--Transition: all
|
|
702
|
+
var(--pf-v6-c-alert-group--m-toast__item--m-outgoing--c-alert--TransitionDuration)
|
|
703
|
+
var(--pf-v6-c-alert-group--m-toast__item--m-outgoing--c-alert--TransitionTimingFunction)
|
|
704
|
+
var(--pf-v6-c-alert-group--m-toast__item--m-outgoing--c-alert--TransitionDuration);
|
|
705
|
+
--pf-v6-c-alert-group--m-toast__item--m-offstage-right--c-alert--TransitionDuration: initial;
|
|
706
|
+
--pf-v6-c-alert-group--m-toast__item--m-offstage-right--c-alert--TransitionTimingFunction: initial;
|
|
707
|
+
--pf-v6-c-alert-group--m-toast__item--m-offstage-right--c-alert--Transition: initial;
|
|
621
708
|
--pf-v6-c-alert-group__overflow-button--BorderWidth: 0;
|
|
622
709
|
--pf-v6-c-alert-group__overflow-button--BorderRadius: var(--pf-t--global--border--radius--medium);
|
|
623
710
|
--pf-v6-c-alert-group__overflow-button--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
@@ -677,40 +764,43 @@
|
|
|
677
764
|
transition: var(--pf-v6-c-alert-group--m-toast__item--c-alert--Transition);
|
|
678
765
|
}
|
|
679
766
|
}
|
|
680
|
-
.pf-v6-c-alert-group__item.pf-m-offstage-top:first-child {
|
|
767
|
+
.pf-v6-c-alert-group__item.pf-m-offstage-top:first-child, .pf-v6-c-alert-group__item.pf-m-incoming:first-child {
|
|
681
768
|
grid-template-rows: 0fr;
|
|
682
769
|
margin-block: 0;
|
|
683
770
|
overflow: hidden;
|
|
684
771
|
opacity: 0;
|
|
685
772
|
transform: translateY(-100%);
|
|
686
773
|
}
|
|
687
|
-
.pf-v6-c-alert-group__item.pf-m-offstage-top:first-child .pf-v6-c-alert {
|
|
774
|
+
.pf-v6-c-alert-group__item.pf-m-offstage-top:first-child .pf-v6-c-alert, .pf-v6-c-alert-group__item.pf-m-incoming:first-child .pf-v6-c-alert {
|
|
688
775
|
min-height: 0;
|
|
689
776
|
padding-block-start: 0;
|
|
690
777
|
padding-block-end: 0;
|
|
691
778
|
border-width: 0;
|
|
692
779
|
}
|
|
693
|
-
.pf-v6-c-alert-group__item.pf-m-offstage-right {
|
|
780
|
+
.pf-v6-c-alert-group__item.pf-m-offstage-right, .pf-v6-c-alert-group__item.pf-m-outgoing {
|
|
694
781
|
grid-template-rows: 0fr;
|
|
695
782
|
margin-block: 0;
|
|
696
783
|
overflow: hidden;
|
|
697
784
|
opacity: 0;
|
|
698
|
-
transition: grid-template-rows 0s var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDelay--grid-template-rows--default), margin-block 0s var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDelay--margin-block--default), opacity var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDuration--opacity--default) var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionTimingFunction--opacity--default);
|
|
785
|
+
transition: grid-template-rows 0s var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDelay--grid-template-rows--default, var(--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionDelay--grid-template-rows--default)), margin-block 0s var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDelay--margin-block--default, var(--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionDelay--margin-block--default)), opacity var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDuration--opacity--default, var(--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionDuration--opacity--default)) var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionTimingFunction--opacity--default, var(--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionTimingFunction--opacity--default));
|
|
699
786
|
}
|
|
700
|
-
.pf-v6-c-alert-group__item.pf-m-offstage-right .pf-v6-c-alert {
|
|
787
|
+
.pf-v6-c-alert-group__item.pf-m-offstage-right .pf-v6-c-alert, .pf-v6-c-alert-group__item.pf-m-outgoing .pf-v6-c-alert {
|
|
701
788
|
min-height: 0;
|
|
702
789
|
padding-block-start: 0;
|
|
703
790
|
padding-block-end: 0;
|
|
704
791
|
border-width: 0;
|
|
705
|
-
transition: all 0s var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--c-alert--TransitionDelay--default);
|
|
792
|
+
transition: all 0s var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--c-alert--TransitionDelay--default, var(--pf-v6-c-alert-group--m-toast__item--m-outgoing--c-alert--TransitionDelay--default));
|
|
706
793
|
}
|
|
707
794
|
@media screen and (prefers-reduced-motion: no-preference) {
|
|
708
|
-
.pf-v6-c-alert-group__item.pf-m-offstage-right {
|
|
709
|
-
transition: transform var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDuration--transform) var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionTimingFunction--transform), opacity var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDuration--opacity) var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionTimingFunction--opacity), margin-block var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDuration--margin-block) var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionTimingFunction--margin-block) var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDelay--margin-block), grid-template-rows var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDuration--grid-template-rows) var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionTimingFunction--grid-template-rows) var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDelay--grid-template-rows);
|
|
795
|
+
.pf-v6-c-alert-group__item.pf-m-offstage-right, .pf-v6-c-alert-group__item.pf-m-outgoing {
|
|
796
|
+
transition: transform var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDuration--transform, var(--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionDuration--transform)) var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionTimingFunction--transform, var(--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionTimingFunction--transform)), opacity var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDuration--opacity, var(--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionDuration--opacity)) var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionTimingFunction--opacity, var(--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionTimingFunction--opacity)), margin-block var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDuration--margin-block, var(--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionDuration--margin-block)) var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionTimingFunction--margin-block, var(--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionTimingFunction--margin-block)) var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDelay--margin-block, var(--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionDelay--margin-block)), grid-template-rows var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDuration--grid-template-rows, var(--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionDuration--grid-template-rows)) var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionTimingFunction--grid-template-rows, var(--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionTimingFunction--grid-template-rows)) var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--TransitionDelay--grid-template-rows, var(--pf-v6-c-alert-group--m-toast__item--m-outgoing--TransitionDelay--grid-template-rows));
|
|
710
797
|
transform: translateX(100%);
|
|
711
798
|
}
|
|
712
|
-
.pf-v6-c-alert-group__item.pf-m-offstage-right .pf-v6-c-alert {
|
|
713
|
-
|
|
799
|
+
:where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-alert-group__item.pf-m-offstage-right, .pf-v6-c-alert-group__item.pf-m-outgoing {
|
|
800
|
+
transform: translateX(calc(100% * var(--pf-v6-global--inverse--multiplier)));
|
|
801
|
+
}
|
|
802
|
+
.pf-v6-c-alert-group__item.pf-m-offstage-right .pf-v6-c-alert, .pf-v6-c-alert-group__item.pf-m-outgoing .pf-v6-c-alert {
|
|
803
|
+
transition: var(--pf-v6-c-alert-group--m-toast__item--m-offstage-right--c-alert--Transition, var(--pf-v6-c-alert-group--m-toast__item--m-outgoing--c-alert--Transition));
|
|
714
804
|
}
|
|
715
805
|
}
|
|
716
806
|
.pf-v6-c-alert-group__item:hover {
|
|
@@ -1457,15 +1547,20 @@ button.pf-v6-c-breadcrumb__link {
|
|
|
1457
1547
|
--pf-v6-c-button--TextDecorationLine: none;
|
|
1458
1548
|
--pf-v6-c-button--TextDecorationStyle: none;
|
|
1459
1549
|
--pf-v6-c-button--TextDecorationColor: currentcolor;
|
|
1550
|
+
--pf-v6-c-button--TransitionDelay: 0s;
|
|
1460
1551
|
--pf-v6-c-button--TransitionDuration: var(--pf-t--global--motion--duration--fade--default);
|
|
1461
|
-
--pf-v6-c-button--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--
|
|
1462
|
-
--pf-v6-c-button--TransitionProperty: color, background
|
|
1552
|
+
--pf-v6-c-button--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--accelerate);
|
|
1553
|
+
--pf-v6-c-button--TransitionProperty: color, background, border-width, border-color;
|
|
1554
|
+
--pf-v6-c-button--ScaleX: 1;
|
|
1555
|
+
--pf-v6-c-button--ScaleY: 1;
|
|
1463
1556
|
--pf-v6-c-button--hover--BackgroundColor: transparent;
|
|
1464
1557
|
--pf-v6-c-button--hover--BorderColor: transparent;
|
|
1465
1558
|
--pf-v6-c-button--hover--BorderWidth: var(--pf-t--global--border--width--action--hover);
|
|
1466
1559
|
--pf-v6-c-button--hover--TextDecorationLine: none;
|
|
1467
1560
|
--pf-v6-c-button--hover--TextDecorationStyle: none;
|
|
1468
1561
|
--pf-v6-c-button--hover--TextDecorationColor: currentcolor;
|
|
1562
|
+
--pf-v6-c-button--hover--ScaleX: 1;
|
|
1563
|
+
--pf-v6-c-button--hover--ScaleY: 1;
|
|
1469
1564
|
--pf-v6-c-button--m-clicked--BackgroundColor: transparent;
|
|
1470
1565
|
--pf-v6-c-button--m-clicked--BorderColor: transparent;
|
|
1471
1566
|
--pf-v6-c-button--m-clicked--BorderWidth: var(--pf-t--global--border--width--action--clicked);
|
|
@@ -1675,12 +1770,30 @@ button.pf-v6-c-breadcrumb__link {
|
|
|
1675
1770
|
--pf-v6-c-button__icon--m-end--MarginInlineStart: 0;
|
|
1676
1771
|
--pf-v6-c-button--m-notify__icon--AnimationDuration--notify: var(--pf-t--global--motion--duration--3xl);
|
|
1677
1772
|
--pf-v6-c-button--m-notify__icon--AnimationTimingFunction--notify: var(--pf-t--global--motion--timing-function--default);
|
|
1773
|
+
--pf-v6-c-button__icon--TransitionDelay: 0s;
|
|
1774
|
+
--pf-v6-c-button__icon--TransitionTimingFunction: auto;
|
|
1775
|
+
--pf-v6-c-button__icon--TransitionDuration: 0s;
|
|
1776
|
+
--pf-v6-c-button__icon--TransitionProperty: none;
|
|
1777
|
+
--pf-v6-c-button__icon--Rotate: 0deg;
|
|
1778
|
+
--pf-v6-c-button--hover__icon--TransitionTimingFunction: auto;
|
|
1779
|
+
--pf-v6-c-button--hover__icon--TransitionDuration: 0s;
|
|
1780
|
+
--pf-v6-c-button--hover__icon--TransitionProperty: none;
|
|
1781
|
+
--pf-v6-c-button--hover__icon--Rotate: 0deg;
|
|
1782
|
+
--pf-v6-c-button__icon--ScaleX: 1;
|
|
1783
|
+
--pf-v6-c-button__icon--ScaleY: 1;
|
|
1784
|
+
--pf-v6-c-button--hover__icon--ScaleX: 1;
|
|
1785
|
+
--pf-v6-c-button--hover__icon--ScaleY: 1;
|
|
1678
1786
|
--pf-v6-c-button--m-favorite__icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
|
|
1679
1787
|
--pf-v6-c-button--m-favorite__icon--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
1680
1788
|
--pf-v6-c-button--m-favorited__icon--Color: var(--pf-t--global--color--favorite--default);
|
|
1681
1789
|
--pf-v6-c-button--m-favorited--hover__icon--Color: var(--pf-t--global--color--favorite--hover);
|
|
1682
1790
|
--pf-v6-c-button--m-favorited__icon--AnimationDuration: var(--pf-t--global--motion--duration--icon--long);
|
|
1683
1791
|
--pf-v6-c-button--m-favorited__icon--AnimationTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
1792
|
+
--pf-v6-c-button__icon--favorite--Opacity: 1;
|
|
1793
|
+
--pf-v6-c-button__icon--favorited--Opacity: 0;
|
|
1794
|
+
--pf-v6-c-button--m-favorited__icon--favorite--Opacity: 0;
|
|
1795
|
+
--pf-v6-c-button--m-favorited__icon--favorited--Opacity: 1;
|
|
1796
|
+
--pf-v6-c-button__icon--favorite--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
|
|
1684
1797
|
--pf-v6-c-button__progress--width: calc(var(--pf-t--global--icon--size--lg) + var(--pf-t--global--spacer--sm));
|
|
1685
1798
|
--pf-v6-c-button__progress--Opacity: 0;
|
|
1686
1799
|
--pf-v6-c-button__progress--TranslateY: -50%;
|
|
@@ -1695,9 +1808,28 @@ button.pf-v6-c-breadcrumb__link {
|
|
|
1695
1808
|
--pf-v6-c-button--m-in-progress--m-plain--Color: var(--pf-t--global--icon--color--brand--default);
|
|
1696
1809
|
--pf-v6-c-button--m-in-progress--m-plain__progress--InsetInlineStart: 50%;
|
|
1697
1810
|
--pf-v6-c-button--m-in-progress--m-plain__progress--TranslateX: -50%;
|
|
1811
|
+
--pf-v6-c-button--m-settings__icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--long);
|
|
1812
|
+
--pf-v6-c-button--m-settings__icon--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--accelerate);
|
|
1813
|
+
--pf-v6-c-button--m-settings--hover__icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--long);
|
|
1814
|
+
--pf-v6-c-button--m-settings--hover__icon--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
|
|
1815
|
+
--pf-v6-c-button--m-settings--hover__icon--Rotate: 60deg;
|
|
1698
1816
|
--pf-v6-c-button--m-primary__c-badge--BorderColor: var(--pf-t--global--border--color--default);
|
|
1699
1817
|
--pf-v6-c-button--m-block--Display: flex;
|
|
1700
1818
|
--pf-v6-c-button--m-block--Width: 100%;
|
|
1819
|
+
--pf-v6-c-button--hamburger-icon--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
|
|
1820
|
+
--pf-v6-c-button--hamburger-icon--TransitionDuration: var(--pf-t--global--motion--duration--md);
|
|
1821
|
+
--pf-v6-c-button--hamburger-icon--top--path--base: path("M1,1 L9,1");
|
|
1822
|
+
--pf-v6-c-button--hamburger-icon--middle--path--base: path("M1,5 L9,5");
|
|
1823
|
+
--pf-v6-c-button--hamburger-icon--arrow--path--base: path("M1,5 L1,5 L1,5");
|
|
1824
|
+
--pf-v6-c-button--hamburger-icon--bottom--path--base: path("M9,9 L1,9");
|
|
1825
|
+
--pf-v6-c-button--hamburger-icon--top--path: var(--pf-v6-c-button--hamburger-icon--top--path--base);
|
|
1826
|
+
--pf-v6-c-button--hamburger-icon--middle--path: var(--pf-v6-c-button--hamburger-icon--middle--path--base);
|
|
1827
|
+
--pf-v6-c-button--hamburger-icon--arrow--path: var(--pf-v6-c-button--hamburger-icon--arrow--path--base);
|
|
1828
|
+
--pf-v6-c-button--hamburger-icon--bottom--path: var(--pf-v6-c-button--hamburger-icon--bottom--path--base);
|
|
1829
|
+
--pf-v6-c-button--hamburger-icon--top--collapse--path: path("M5,1 L9,1");
|
|
1830
|
+
--pf-v6-c-button--hamburger-icon--arrow--collapse--path: path("M3,7 L1,5 L3,3");
|
|
1831
|
+
--pf-v6-c-button--hamburger-icon--bottom--collapse--path: path("M9,9 L5,9");
|
|
1832
|
+
--pf-v6-c-button--m-hamburger__icon--m-expand--ScaleX: -1;
|
|
1701
1833
|
}
|
|
1702
1834
|
|
|
1703
1835
|
.pf-v6-c-button {
|
|
@@ -1721,16 +1853,19 @@ button.pf-v6-c-breadcrumb__link {
|
|
|
1721
1853
|
text-decoration-color: var(--pf-v6-c-button--TextDecorationColor);
|
|
1722
1854
|
white-space: nowrap;
|
|
1723
1855
|
cursor: pointer;
|
|
1856
|
+
-webkit-user-select: none;
|
|
1724
1857
|
user-select: none;
|
|
1725
|
-
background
|
|
1858
|
+
background: var(--pf-v6-c-button--BackgroundColor) radial-gradient(circle, transparent 1%, color-mix(in srgb, currentcolor 15%, transparent) 1%) center/15000% 15000%;
|
|
1726
1859
|
border: 0;
|
|
1727
1860
|
border-start-start-radius: var(--pf-v6-c-button--BorderStartStartRadius, var(--pf-v6-c-button--BorderRadius));
|
|
1728
1861
|
border-start-end-radius: var(--pf-v6-c-button--BorderStartEndRadius, var(--pf-v6-c-button--BorderRadius));
|
|
1729
1862
|
border-end-start-radius: var(--pf-v6-c-button--BorderEndStartRadius, var(--pf-v6-c-button--BorderRadius));
|
|
1730
1863
|
border-end-end-radius: var(--pf-v6-c-button--BorderEndEndRadius, var(--pf-v6-c-button--BorderRadius));
|
|
1864
|
+
transition-delay: var(--pf-v6-c-button--TransitionDelay);
|
|
1731
1865
|
transition-timing-function: var(--pf-v6-c-button--TransitionTimingFunction);
|
|
1732
1866
|
transition-duration: var(--pf-v6-c-button--TransitionDuration);
|
|
1733
1867
|
transition-property: var(--pf-v6-c-button--TransitionProperty);
|
|
1868
|
+
scale: var(--pf-v6-c-button--ScaleX) var(--pf-v6-c-button--ScaleY);
|
|
1734
1869
|
}
|
|
1735
1870
|
.pf-v6-c-button::after {
|
|
1736
1871
|
position: absolute;
|
|
@@ -1839,6 +1974,7 @@ button.pf-v6-c-breadcrumb__link {
|
|
|
1839
1974
|
--pf-v6-c-button--m-link--hover__icon--Color: var(--pf-v6-c-button--m-link--m-inline--hover__icon--Color);
|
|
1840
1975
|
text-align: start;
|
|
1841
1976
|
white-space: normal;
|
|
1977
|
+
background: transparent;
|
|
1842
1978
|
outline-offset: 0.125rem;
|
|
1843
1979
|
}
|
|
1844
1980
|
span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
@@ -1972,6 +2108,7 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
1972
2108
|
--pf-v6-c-button--m-small--PaddingInlineEnd: var(--pf-v6-c-button--m-plain--m-no-padding--m-small--PaddingInlineEnd);
|
|
1973
2109
|
--pf-v6-c-button--m-small--PaddingInlineStart: var(--pf-v6-c-button--m-plain--m-no-padding--m-small--PaddingInlineStart);
|
|
1974
2110
|
min-width: var(--pf-v6-c-button--m-plain--m-no-padding--MinWidth);
|
|
2111
|
+
background: var(--pf-v6-c-button--BackgroundColor);
|
|
1975
2112
|
}
|
|
1976
2113
|
.pf-v6-c-button.pf-m-block {
|
|
1977
2114
|
--pf-v6-c-button--Display: var(--pf-v6-c-button--m-block--Display);
|
|
@@ -1991,44 +2128,96 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
1991
2128
|
--pf-v6-c-button--FontSize: var(--pf-v6-c-button--m-display-lg--FontSize);
|
|
1992
2129
|
}
|
|
1993
2130
|
.pf-v6-c-button.pf-m-favorite .pf-v6-c-button__icon {
|
|
2131
|
+
display: grid;
|
|
1994
2132
|
transition-timing-function: var(--pf-v6-c-button--m-favorite__icon--TransitionTimingFunction);
|
|
1995
2133
|
transition-duration: var(--pf-v6-c-button--m-favorite__icon--TransitionDuration);
|
|
1996
2134
|
transition-property: color;
|
|
1997
2135
|
}
|
|
1998
2136
|
.pf-v6-c-button.pf-m-favorited {
|
|
1999
2137
|
--pf-v6-c-button__icon--Color: var(--pf-v6-c-button--m-favorited__icon--Color);
|
|
2138
|
+
--pf-v6-c-button--m-plain--m-no-padding__icon--Color: var(--pf-v6-c-button--m-favorited__icon--Color);
|
|
2000
2139
|
--pf-v6-c-button--hover__icon--Color: var(--pf-v6-c-button--m-favorited--hover__icon--Color);
|
|
2140
|
+
--pf-v6-c-button--m-plain--m-no-padding--hover__icon--Color: var(--pf-v6-c-button--m-favorited--hover__icon--Color);
|
|
2141
|
+
--pf-v6-c-button__icon--favorite--Opacity: var(--pf-v6-c-button--m-favorited__icon--favorite--Opacity);
|
|
2142
|
+
--pf-v6-c-button__icon--favorited--Opacity: var(--pf-v6-c-button--m-favorited__icon--favorited--Opacity);
|
|
2001
2143
|
}
|
|
2002
2144
|
.pf-v6-c-button.pf-m-favorited .pf-v6-c-button__icon {
|
|
2003
2145
|
animation-name: pf-v6-c-button-icon-favorited;
|
|
2004
2146
|
animation-duration: var(--pf-v6-c-button--m-favorited__icon--AnimationDuration);
|
|
2005
2147
|
animation-timing-function: var(--pf-v6-c-button--m-favorited__icon--AnimationTimingFunction);
|
|
2006
2148
|
}
|
|
2149
|
+
.pf-v6-c-button.pf-m-settings {
|
|
2150
|
+
--pf-v6-c-button__icon--TransitionProperty: rotate;
|
|
2151
|
+
--pf-v6-c-button__icon--TransitionDuration: var(--pf-v6-c-button--m-settings__icon--TransitionDuration);
|
|
2152
|
+
--pf-v6-c-button__icon--TransitionTimingFunction: var(--pf-v6-c-button--m-settings__icon--TransitionTimingFunction);
|
|
2153
|
+
--pf-v6-c-button--hover__icon--TransitionProperty: rotate;
|
|
2154
|
+
--pf-v6-c-button--hover__icon--TransitionDuration: var(--pf-v6-c-button--m-settings--hover__icon--TransitionDuration);
|
|
2155
|
+
--pf-v6-c-button--hover__icon--TransitionTimingFunction: var(--pf-v6-c-button--m-settings--hover__icon--TransitionTimingFunction);
|
|
2156
|
+
--pf-v6-c-button--hover__icon--Rotate: var(--pf-v6-c-button--m-settings--hover__icon--Rotate);
|
|
2157
|
+
}
|
|
2158
|
+
.pf-v6-c-button.pf-m-hamburger {
|
|
2159
|
+
--pf-v6-c-button__icon--TransitionDelay: var(--pf-v6-c-button--hamburger-icon--TransitionDuration);
|
|
2160
|
+
--pf-v6-c-button__icon--TransitionDuration: 0s;
|
|
2161
|
+
--pf-v6-c-button__icon--TransitionProperty: scale;
|
|
2162
|
+
--pf-v6-c-button--hover__icon--TransitionDelay: var(--pf-v6-c-button--hamburger-icon--TransitionDuration);
|
|
2163
|
+
--pf-v6-c-button--hover__icon--TransitionDuration: 0s;
|
|
2164
|
+
--pf-v6-c-button--hover__icon--TransitionProperty: scale;
|
|
2165
|
+
}
|
|
2166
|
+
.pf-v6-c-button.pf-m-hamburger.pf-m-expand {
|
|
2167
|
+
--pf-v6-c-button--hamburger-icon--top--path: var(--pf-v6-c-button--hamburger-icon--top--collapse--path);
|
|
2168
|
+
--pf-v6-c-button--hamburger-icon--arrow--path: var(--pf-v6-c-button--hamburger-icon--arrow--collapse--path);
|
|
2169
|
+
--pf-v6-c-button--hamburger-icon--bottom--path: var(--pf-v6-c-button--hamburger-icon--bottom--collapse--path);
|
|
2170
|
+
--pf-v6-c-button__icon--TransitionDelay: 0s;
|
|
2171
|
+
--pf-v6-c-button__icon--ScaleX: var(--pf-v6-c-button--m-hamburger__icon--m-expand--ScaleX);
|
|
2172
|
+
--pf-v6-c-button--hover__icon--TransitionDelay: 0s;
|
|
2173
|
+
--pf-v6-c-button--hover__icon--ScaleX: var(--pf-v6-c-button--m-hamburger__icon--m-expand--ScaleX);
|
|
2174
|
+
}
|
|
2175
|
+
.pf-v6-c-button.pf-m-hamburger.pf-m-collapse {
|
|
2176
|
+
--pf-v6-c-button--hamburger-icon--top--path: var(--pf-v6-c-button--hamburger-icon--top--collapse--path);
|
|
2177
|
+
--pf-v6-c-button--hamburger-icon--arrow--path: var(--pf-v6-c-button--hamburger-icon--arrow--collapse--path);
|
|
2178
|
+
--pf-v6-c-button--hamburger-icon--bottom--path: var(--pf-v6-c-button--hamburger-icon--bottom--collapse--path);
|
|
2179
|
+
--pf-v6-c-button__icon--TransitionDelay: 0s;
|
|
2180
|
+
--pf-v6-c-button__icon--ScaleX: 1;
|
|
2181
|
+
--pf-v6-c-button--hover__icon--TransitionDelay: 0s;
|
|
2182
|
+
--pf-v6-c-button--hover__icon--ScaleX: 1;
|
|
2183
|
+
}
|
|
2007
2184
|
.pf-v6-c-button:hover, .pf-v6-c-button:focus {
|
|
2008
2185
|
--pf-v6-c-button--Color: var(--pf-v6-c-button--hover--Color);
|
|
2009
2186
|
--pf-v6-c-button--BackgroundColor: var(--pf-v6-c-button--hover--BackgroundColor);
|
|
2010
2187
|
--pf-v6-c-button--BorderColor: var(--pf-v6-c-button--hover--BorderColor);
|
|
2011
2188
|
--pf-v6-c-button--BorderWidth: var(--pf-v6-c-button--hover--BorderWidth);
|
|
2189
|
+
--pf-v6-c-button--ScaleX: var(--pf-v6-c-button--hover--ScaleX);
|
|
2190
|
+
--pf-v6-c-button--ScaleY: var(--pf-v6-c-button--hover--ScaleY);
|
|
2012
2191
|
--pf-v6-c-button--m-plain--m-no-padding__icon--Color: var(--pf-v6-c-button--m-plain--m-no-padding--hover__icon--Color);
|
|
2013
2192
|
--pf-v6-c-button__icon--Color: var(--pf-v6-c-button--hover__icon--Color);
|
|
2193
|
+
--pf-v6-c-button__icon--TransitionTimingFunction: var(--pf-v6-c-button--hover__icon--TransitionTimingFunction);
|
|
2194
|
+
--pf-v6-c-button__icon--TransitionDuration: var(--pf-v6-c-button--hover__icon--TransitionDuration);
|
|
2195
|
+
--pf-v6-c-button__icon--TransitionProperty: var(--pf-v6-c-button--hover__icon--TransitionProperty);
|
|
2196
|
+
--pf-v6-c-button__icon--Rotate: var(--pf-v6-c-button--hover__icon--Rotate);
|
|
2197
|
+
--pf-v6-c-button__icon--ScaleX: var(--pf-v6-c-button--hover__icon--ScaleX);
|
|
2198
|
+
--pf-v6-c-button__icon--ScaleY: var(--pf-v6-c-button--hover__icon--ScaleY);
|
|
2014
2199
|
text-decoration-line: var(--pf-v6-c-button--hover--TextDecorationLine);
|
|
2015
2200
|
text-decoration-style: var(--pf-v6-c-button--hover--TextDecorationStyle);
|
|
2016
2201
|
text-decoration-color: var(--pf-v6-c-button--hover--TextDecorationColor);
|
|
2017
2202
|
}
|
|
2018
|
-
.pf-v6-c-button.pf-m-clicked {
|
|
2203
|
+
.pf-v6-c-button:active, .pf-v6-c-button.pf-m-clicked {
|
|
2019
2204
|
--pf-v6-c-button--Color: var(--pf-v6-c-button--m-clicked--Color);
|
|
2020
2205
|
--pf-v6-c-button--BackgroundColor: var(--pf-v6-c-button--m-clicked--BackgroundColor);
|
|
2021
2206
|
--pf-v6-c-button--BorderWidth: var(--pf-v6-c-button--m-clicked--BorderWidth);
|
|
2022
2207
|
--pf-v6-c-button--BorderColor: var(--pf-v6-c-button--m-clicked--BorderColor);
|
|
2023
2208
|
--pf-v6-c-button__icon--Color: var(--pf-v6-c-button--m-clicked__icon--Color);
|
|
2024
2209
|
}
|
|
2210
|
+
.pf-v6-c-button:active {
|
|
2211
|
+
background-size: 100% 100%;
|
|
2212
|
+
transition-duration: 0s;
|
|
2213
|
+
}
|
|
2025
2214
|
.pf-v6-c-button:disabled, .pf-v6-c-button.pf-m-disabled {
|
|
2026
2215
|
pointer-events: none;
|
|
2027
2216
|
}
|
|
2028
2217
|
.pf-v6-c-button:disabled, .pf-v6-c-button.pf-m-disabled, .pf-v6-c-button.pf-m-aria-disabled {
|
|
2029
2218
|
color: var(--pf-v6-c-button--disabled--Color);
|
|
2030
2219
|
text-decoration-color: var(--pf-v6-c-button--disabled--TextDecorationColor);
|
|
2031
|
-
background
|
|
2220
|
+
background: var(--pf-v6-c-button--disabled--BackgroundColor);
|
|
2032
2221
|
}
|
|
2033
2222
|
.pf-v6-c-button:disabled::after, .pf-v6-c-button.pf-m-disabled::after, .pf-v6-c-button.pf-m-aria-disabled::after {
|
|
2034
2223
|
border-color: transparent;
|
|
@@ -2069,6 +2258,12 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
2069
2258
|
margin-inline-start: var(--pf-v6-c-button__icon--MarginInlineStart);
|
|
2070
2259
|
margin-inline-end: var(--pf-v6-c-button__icon--MarginInlineEnd);
|
|
2071
2260
|
color: var(--pf-v6-c-button__icon--Color);
|
|
2261
|
+
transition-delay: var(--pf-v6-c-button__icon--TransitionDelay);
|
|
2262
|
+
transition-timing-function: var(--pf-v6-c-button__icon--TransitionTimingFunction);
|
|
2263
|
+
transition-duration: var(--pf-v6-c-button__icon--TransitionDuration);
|
|
2264
|
+
transition-property: var(--pf-v6-c-button__icon--TransitionProperty);
|
|
2265
|
+
rotate: var(--pf-v6-c-button__icon--Rotate);
|
|
2266
|
+
scale: var(--pf-v6-c-button__icon--ScaleX) var(--pf-v6-c-button__icon--ScaleY);
|
|
2072
2267
|
}
|
|
2073
2268
|
.pf-v6-c-button__icon.pf-m-start {
|
|
2074
2269
|
--pf-v6-c-button__icon--MarginInlineEnd: var(--pf-v6-c-button__icon--m-start--MarginInlineEnd);
|
|
@@ -2077,6 +2272,21 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
2077
2272
|
--pf-v6-c-button__icon--MarginInlineStart: var(--pf-v6-c-button__icon--m-end--MarginInlineStart);
|
|
2078
2273
|
}
|
|
2079
2274
|
|
|
2275
|
+
.pf-v6-c-button__icon-favorite,
|
|
2276
|
+
.pf-v6-c-button__icon-favorited {
|
|
2277
|
+
grid-area: 1/1/1/1;
|
|
2278
|
+
transition-duration: var(--pf-v6-c-button__icon--favorite--TransitionDuration);
|
|
2279
|
+
transition-property: opacity;
|
|
2280
|
+
}
|
|
2281
|
+
|
|
2282
|
+
.pf-v6-c-button__icon-favorite {
|
|
2283
|
+
opacity: var(--pf-v6-c-button__icon--favorite--Opacity);
|
|
2284
|
+
}
|
|
2285
|
+
|
|
2286
|
+
.pf-v6-c-button__icon-favorited {
|
|
2287
|
+
opacity: var(--pf-v6-c-button__icon--favorited--Opacity);
|
|
2288
|
+
}
|
|
2289
|
+
|
|
2080
2290
|
.pf-v6-c-button__progress {
|
|
2081
2291
|
position: absolute;
|
|
2082
2292
|
inset-block-start: var(--pf-v6-c-button__progress--InsetBlockStart);
|
|
@@ -2089,11 +2299,39 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
2089
2299
|
--pf-v6-c-spinner--Color: currentcolor;
|
|
2090
2300
|
}
|
|
2091
2301
|
|
|
2302
|
+
.pf-v6-c-button__text {
|
|
2303
|
+
text-decoration: inherit;
|
|
2304
|
+
}
|
|
2305
|
+
|
|
2092
2306
|
.pf-v6-c-button__count {
|
|
2093
2307
|
display: inline-flex;
|
|
2094
2308
|
align-items: center;
|
|
2095
2309
|
}
|
|
2096
2310
|
|
|
2311
|
+
.pf-v6-c-button--hamburger-icon path {
|
|
2312
|
+
fill: none;
|
|
2313
|
+
stroke: currentcolor;
|
|
2314
|
+
stroke-linecap: round;
|
|
2315
|
+
stroke-linejoin: round;
|
|
2316
|
+
transition: d var(--pf-v6-c-button--hamburger-icon--TransitionDuration) var(--pf-v6-c-button--hamburger-icon--TransitionTimingFunction);
|
|
2317
|
+
}
|
|
2318
|
+
|
|
2319
|
+
.pf-v6-c-button--hamburger-icon--top {
|
|
2320
|
+
d: var(--pf-v6-c-button--hamburger-icon--top--path);
|
|
2321
|
+
}
|
|
2322
|
+
|
|
2323
|
+
.pf-v6-c-button--hamburger-icon--middle {
|
|
2324
|
+
d: var(--pf-v6-c-button--hamburger-icon--middle--path);
|
|
2325
|
+
}
|
|
2326
|
+
|
|
2327
|
+
.pf-v6-c-button--hamburger-icon--arrow {
|
|
2328
|
+
d: var(--pf-v6-c-button--hamburger-icon--arrow--path);
|
|
2329
|
+
}
|
|
2330
|
+
|
|
2331
|
+
.pf-v6-c-button--hamburger-icon--bottom {
|
|
2332
|
+
d: var(--pf-v6-c-button--hamburger-icon--bottom--path);
|
|
2333
|
+
}
|
|
2334
|
+
|
|
2097
2335
|
@keyframes pf-v6-c-button-icon-notify {
|
|
2098
2336
|
33% {
|
|
2099
2337
|
transform: rotate(30deg);
|
|
@@ -2104,7 +2342,7 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
2104
2342
|
}
|
|
2105
2343
|
@keyframes pf-v6-c-button-icon-favorited {
|
|
2106
2344
|
50% {
|
|
2107
|
-
|
|
2345
|
+
scale: 1.5;
|
|
2108
2346
|
}
|
|
2109
2347
|
}
|
|
2110
2348
|
.pf-v6-c-calendar-month {
|
|
@@ -3051,6 +3289,9 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
3051
3289
|
.pf-v6-c-code-editor__main .monaco-editor {
|
|
3052
3290
|
background-color: var(--pf-v6-c-code-editor__main--BackgroundColor);
|
|
3053
3291
|
}
|
|
3292
|
+
.pf-v6-c-code-editor__main a.label-name {
|
|
3293
|
+
text-decoration-line: none;
|
|
3294
|
+
}
|
|
3054
3295
|
|
|
3055
3296
|
.pf-v6-c-code-editor__header + .pf-v6-c-code-editor__main {
|
|
3056
3297
|
border-block-start-width: 0;
|
|
@@ -3886,8 +4127,8 @@ ul) {
|
|
|
3886
4127
|
--pf-v6-c-data-list--m-compact__item-content--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
3887
4128
|
--pf-v6-c-data-list--m-compact__item-draggable-button--MarginBlockStart: calc(var(--pf-t--global--spacer--sm) * -1);
|
|
3888
4129
|
--pf-v6-c-data-list--m-compact__item-draggable-button--MarginBlockEnd: calc(var(--pf-t--global--spacer--sm) * -1);
|
|
3889
|
-
--pf-v6-c-data-list--m-compact__item-draggable-button--PaddingBlockStart: var(--pf-t--global--spacer--
|
|
3890
|
-
--pf-v6-c-data-list--m-compact__item-draggable-button--PaddingBlockEnd: var(--pf-t--global--spacer--
|
|
4130
|
+
--pf-v6-c-data-list--m-compact__item-draggable-button--PaddingBlockStart: var(--pf-t--global--spacer--xs);
|
|
4131
|
+
--pf-v6-c-data-list--m-compact__item-draggable-button--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
|
|
3891
4132
|
--pf-v6-c-data-list--m-compact__cell--m-icon--cell--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
3892
4133
|
}
|
|
3893
4134
|
@media screen and (min-width: 36rem) {
|
|
@@ -4624,6 +4865,17 @@ ul) {
|
|
|
4624
4865
|
--pf-v6-c-dual-list-selector__menu--MinHeight: 12.5rem;
|
|
4625
4866
|
--pf-v6-c-dual-list-selector__menu--MaxHeight: 20rem;
|
|
4626
4867
|
--pf-v6-c-dual-list-selector__menu--MarginBlockStart: var(--pf-t--global--spacer--md);
|
|
4868
|
+
--pf-v6-c-dual-list-selector__list--TransitionDuration--expand--slide: 0s;
|
|
4869
|
+
--pf-v6-c-dual-list-selector__list--TransitionDuration--expand--fade: var(--pf-t--global--motion--duration--fade--default);
|
|
4870
|
+
--pf-v6-c-dual-list-selector__list--TransitionDuration--collapse--slide: 0s;
|
|
4871
|
+
--pf-v6-c-dual-list-selector__list--TransitionDuration--collapse--fade: var(--pf-t--global--motion--duration--fade--short);
|
|
4872
|
+
--pf-v6-c-dual-list-selector__list--TransitionDuration--slide: var(--pf-v6-c-dual-list-selector__list--TransitionDuration--collapse--slide);
|
|
4873
|
+
--pf-v6-c-dual-list-selector__list--TransitionDuration--fade: var(--pf-v6-c-dual-list-selector__list--TransitionDuration--collapse--fade);
|
|
4874
|
+
--pf-v6-c-dual-list-selector__list--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
4875
|
+
--pf-v6-c-dual-list-selector__list--Opacity: 0;
|
|
4876
|
+
--pf-v6-c-dual-list-selector--m-expanded__list--Opacity: 1;
|
|
4877
|
+
--pf-v6-c-dual-list-selector__list--TranslateY: 0;
|
|
4878
|
+
--pf-v6-c-dual-list-selector--m-expanded__list--TranslateY: 0;
|
|
4627
4879
|
--pf-v6-c-dual-list-selector__list-item-row--FontSize: var(--pf-t--global--font--size--sm);
|
|
4628
4880
|
--pf-v6-c-dual-list-selector__list-item-row--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
|
|
4629
4881
|
--pf-v6-c-dual-list-selector__list-item-row--hover--BackgroundColor: var(--pf-t--global--background--color--primary--hover);
|
|
@@ -4661,6 +4913,13 @@ ul) {
|
|
|
4661
4913
|
--pf-v6-c-dual-list-selector__item-toggle-icon--MinWidth: var(--pf-v6-c-dual-list-selector__list-item-row--FontSize);
|
|
4662
4914
|
--pf-v6-c-dual-list-selector__list-item--m-disabled__item-toggle-icon--Color: var(--pf-t--global--icon--color--disabled);
|
|
4663
4915
|
}
|
|
4916
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
|
4917
|
+
.pf-v6-c-dual-list-selector {
|
|
4918
|
+
--pf-v6-c-dual-list-selector__list--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
|
|
4919
|
+
--pf-v6-c-dual-list-selector__list--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
|
|
4920
|
+
--pf-v6-c-dual-list-selector__list--TranslateY: -.5rem;
|
|
4921
|
+
}
|
|
4922
|
+
}
|
|
4664
4923
|
|
|
4665
4924
|
.pf-v6-c-dual-list-selector {
|
|
4666
4925
|
display: grid;
|
|
@@ -4756,9 +5015,27 @@ ul) {
|
|
|
4756
5015
|
.pf-v6-c-dual-list-selector__list-item.pf-m-expandable {
|
|
4757
5016
|
--pf-v6-c-dual-list-selector__item--PaddingInlineStart: var(--pf-v6-c-dual-list-selector__item--m-expandable--PaddingInlineStart);
|
|
4758
5017
|
}
|
|
5018
|
+
.pf-v6-c-dual-list-selector.pf-m-animate-expand .pf-v6-c-dual-list-selector__list-item.pf-m-expandable > .pf-v6-c-dual-list-selector__list {
|
|
5019
|
+
max-height: 0;
|
|
5020
|
+
visibility: hidden;
|
|
5021
|
+
opacity: var(--pf-v6-c-dual-list-selector__list--Opacity);
|
|
5022
|
+
transition-delay: 0s, 0s, var(--pf-v6-c-dual-list-selector__list--TransitionDuration--fade), var(--pf-v6-c-dual-list-selector__list--TransitionDuration--fade);
|
|
5023
|
+
transition-timing-function: var(--pf-v6-c-dual-list-selector__list--TransitionTimingFunction);
|
|
5024
|
+
transition-duration: var(--pf-v6-c-dual-list-selector__list--TransitionDuration--fade), var(--pf-v6-c-dual-list-selector__list--TransitionDuration--slide), 0s, 0s;
|
|
5025
|
+
transition-property: opacity, translate, visibility, max-height;
|
|
5026
|
+
translate: 0 var(--pf-v6-c-dual-list-selector__list--TranslateY);
|
|
5027
|
+
}
|
|
4759
5028
|
.pf-v6-c-dual-list-selector__list-item.pf-m-expanded {
|
|
4760
5029
|
--pf-v6-c-dual-list-selector__item-toggle-icon--Rotate: var(--pf-v6-c-dual-list-selector__list-item--m-expanded__item-toggle-icon--Rotate);
|
|
4761
5030
|
}
|
|
5031
|
+
.pf-v6-c-dual-list-selector.pf-m-animate-expand .pf-v6-c-dual-list-selector__list-item.pf-m-expanded > .pf-v6-c-dual-list-selector__list {
|
|
5032
|
+
max-height: 99999px;
|
|
5033
|
+
visibility: revert;
|
|
5034
|
+
opacity: var(--pf-v6-c-dual-list-selector--m-expanded__list--Opacity);
|
|
5035
|
+
transition-delay: 0s;
|
|
5036
|
+
transition-duration: var(--pf-v6-c-dual-list-selector__list--TransitionDuration--expand--fade), var(--pf-v6-c-dual-list-selector__list--TransitionDuration--expand--slide), 0s, 0s;
|
|
5037
|
+
translate: 0 var(--pf-v6-c-dual-list-selector--m-expanded__list--TranslateY);
|
|
5038
|
+
}
|
|
4762
5039
|
.pf-v6-c-dual-list-selector__list-item.pf-m-disabled {
|
|
4763
5040
|
--pf-v6-c-dual-list-selector__item-text--Color: var(--pf-v6-c-dual-list-selector__list-item--m-disabled__item-text--Color);
|
|
4764
5041
|
--pf-v6-c-dual-list-selector__item-toggle-icon--Color: var(--pf-v6-c-dual-list-selector__list-item--m-disabled__item-toggle-icon--Color);
|
|
@@ -6294,6 +6571,20 @@ ul) {
|
|
|
6294
6571
|
--pf-v6-c-expandable-section__toggle-icon--m-expand-top--Rotate: 0;
|
|
6295
6572
|
--pf-v6-c-expandable-section--m-expanded__toggle-icon--Rotate: 90deg;
|
|
6296
6573
|
--pf-v6-c-expandable-section--m-expanded__toggle-icon--m-expand-top--Rotate: -90deg;
|
|
6574
|
+
--pf-v6-c-expandable-section__content--TransitionDuration--collapse--slide: 0s;
|
|
6575
|
+
--pf-v6-c-expandable-section__content--TransitionDuration--collapse--fade: var(--pf-t--global--motion--duration--fade--short);
|
|
6576
|
+
--pf-v6-c-expandable-section__content--TransitionDuration--expand--slide: 0s;
|
|
6577
|
+
--pf-v6-c-expandable-section__content--TransitionDuration--expand--fade: var(--pf-t--global--motion--duration--fade--default);
|
|
6578
|
+
--pf-v6-c-expandable-section__content--TransitionDuration--slide: var(--pf-v6-c-expandable-section__content--TransitionDuration--collapse--slide);
|
|
6579
|
+
--pf-v6-c-expandable-section__content--TransitionDuration--fade: var(--pf-v6-c-expandable-section__content--TransitionDuration--collapse--fade);
|
|
6580
|
+
--pf-v6-c-expandable-section__content--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
6581
|
+
--pf-v6-c-expandable-section__content--TransitionDelay--hide: var(--pf-v6-c-expandable-section__content--TransitionDuration--fade);
|
|
6582
|
+
--pf-v6-c-expandable-section__content--Opacity: 0;
|
|
6583
|
+
--pf-v6-c-expandable-section__content--TranslateY: 0;
|
|
6584
|
+
--pf-v6-c-expandable-section--m-expand-top__content--TranslateY: 0;
|
|
6585
|
+
--pf-v6-c-expandable-section--m-expand-bottom__content--TranslateY: 0;
|
|
6586
|
+
--pf-v6-c-expandable-section--m-expanded__content--Opacity: 1;
|
|
6587
|
+
--pf-v6-c-expandable-section--m-expanded__content--TranslateY: 0;
|
|
6297
6588
|
--pf-v6-c-expandable-section__content--MaxWidth: auto;
|
|
6298
6589
|
--pf-v6-c-expandable-section--m-limit-width__content--MaxWidth: 46.875rem;
|
|
6299
6590
|
--pf-v6-c-expandable-section--m-display-lg--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
@@ -6305,20 +6596,55 @@ ul) {
|
|
|
6305
6596
|
--pf-v6-c-expandable-section--m-display-lg--BorderWidth: var(--pf-t--global--border--width--box--default);
|
|
6306
6597
|
--pf-v6-c-expandable-section--m-display-lg--BorderColor: var(--pf-t--global--border--color--default);
|
|
6307
6598
|
--pf-v6-c-expandable-section--m-display-lg--BorderRadius: var(--pf-t--global--border--radius--medium);
|
|
6599
|
+
--pf-v6-c-expandable-section--m-display-lg--TransitionDelay: var(--pf-v6-c-expandable-section__content--TransitionDuration--collapse--fade);
|
|
6308
6600
|
--pf-v6-c-expandable-section--m-indented__content--PaddingInlineStart: calc(var(--pf-t--global--spacer--action--horizontal--plain--default) + var(--pf-t--global--spacer--gap--text-to-element--default) + var(--pf-v6-c-expandable-section__toggle-icon--MinWidth));
|
|
6309
6601
|
--pf-v6-c-expandable-section--m-truncate__content--LineClamp: 3;
|
|
6310
6602
|
--pf-v6-c-expandable-section--m-truncate--Gap: var(--pf-t--global--spacer--xs);
|
|
6311
6603
|
}
|
|
6604
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
|
6605
|
+
.pf-v6-c-expandable-section {
|
|
6606
|
+
--pf-v6-c-expandable-section__content--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
|
|
6607
|
+
--pf-v6-c-expandable-section__content--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
|
|
6608
|
+
--pf-v6-c-expandable-section__content--TranslateY: -.5rem;
|
|
6609
|
+
--pf-v6-c-expandable-section--m-expand-top__content--TranslateY: .5rem;
|
|
6610
|
+
--pf-v6-c-expandable-section--m-expand-bottom__content--TranslateY: -.5rem;
|
|
6611
|
+
}
|
|
6612
|
+
}
|
|
6312
6613
|
|
|
6313
6614
|
.pf-v6-c-expandable-section {
|
|
6314
6615
|
display: flex;
|
|
6315
6616
|
flex-direction: column;
|
|
6316
|
-
gap:
|
|
6617
|
+
gap: 0;
|
|
6618
|
+
transition-delay: var(--pf-v6-c-expandable-section__content--TransitionDelay--hide);
|
|
6619
|
+
transition-duration: 0s;
|
|
6620
|
+
transition-property: gap, padding-block-end;
|
|
6317
6621
|
}
|
|
6318
6622
|
.pf-v6-c-expandable-section.pf-m-expanded {
|
|
6319
6623
|
--pf-v6-c-expandable-section__toggle-icon--Rotate: var(--pf-v6-c-expandable-section--m-expanded__toggle-icon--Rotate);
|
|
6320
6624
|
--pf-v6-c-expandable-section__toggle-icon--m-expand-top--Rotate: var(--pf-v6-c-expandable-section--m-expanded__toggle-icon--m-expand-top--Rotate);
|
|
6321
6625
|
--pf-v6-c-expandable-section--m-display-lg--PaddingBlockEnd: var(--pf-v6-c-expandable-section--m-display-lg--m-expanded--PaddingBlockEnd);
|
|
6626
|
+
--pf-v6-c-expandable-section__content--TransitionDuration--slide: var(--pf-v6-c-expandable-section__content--TransitionDuration--expand--slide);
|
|
6627
|
+
--pf-v6-c-expandable-section__content--TransitionDuration--fade: var(--pf-v6-c-expandable-section__content--TransitionDuration--expand--fade);
|
|
6628
|
+
--pf-v6-c-expandable-section__content--Opacity: var(--pf-v6-c-expandable-section--m-expanded__content--Opacity);
|
|
6629
|
+
--pf-v6-c-expandable-section__content--TranslateY: var(--pf-v6-c-expandable-section--m-expanded__content--TranslateY);
|
|
6630
|
+
--pf-v6-c-expandable-section__content--Visibility: auto;
|
|
6631
|
+
--pf-v6-c-expandable-section__content--MaxHeight: 99999px;
|
|
6632
|
+
--pf-v6-c-expandable-section__content--TransitionDelay--hide: 0s;
|
|
6633
|
+
gap: var(--pf-v6-c-expandable-section--Gap);
|
|
6634
|
+
}
|
|
6635
|
+
.pf-v6-c-expandable-section.pf-m-expand-top {
|
|
6636
|
+
--pf-v6-c-expandable-section__toggle-icon--Rotate: var(--pf-v6-c-expandable-section__toggle-icon--m-expand-top--Rotate);
|
|
6637
|
+
}
|
|
6638
|
+
.pf-v6-c-expandable-section:has(.pf-v6-c-expandable-section__content:only-child):not(.pf-m-expand-top, .pf-m-expand-bottom) {
|
|
6639
|
+
--pf-v6-c-expandable-section__content--TranslateY: 0;
|
|
6640
|
+
--pf-v6-c-expandable-section__content--TransitionDuration--expand--fade: 0s;
|
|
6641
|
+
--pf-v6-c-expandable-section__content--TransitionDuration--collapse--fade: 0s;
|
|
6642
|
+
}
|
|
6643
|
+
.pf-v6-c-expandable-section:has(.pf-v6-c-expandable-section__content:only-child).pf-m-expand-top:not(.pf-m-expanded) {
|
|
6644
|
+
--pf-v6-c-expandable-section__content--TranslateY: var(--pf-v6-c-expandable-section--m-expand-top__content--TranslateY);
|
|
6645
|
+
}
|
|
6646
|
+
.pf-v6-c-expandable-section:has(.pf-v6-c-expandable-section__content:only-child).pf-m-expand-bottom:not(.pf-m-expanded) {
|
|
6647
|
+
--pf-v6-c-expandable-section__content--TranslateY: var(--pf-v6-c-expandable-section--m-expand-bottom__content--TranslateY);
|
|
6322
6648
|
}
|
|
6323
6649
|
.pf-v6-c-expandable-section.pf-m-limit-width {
|
|
6324
6650
|
--pf-v6-c-expandable-section__content--MaxWidth: var(--pf-v6-c-expandable-section--m-limit-width__content--MaxWidth);
|
|
@@ -6365,6 +6691,19 @@ ul) {
|
|
|
6365
6691
|
padding-block-end: var(--pf-v6-c-expandable-section__content--PaddingBlockEnd, 0);
|
|
6366
6692
|
padding-inline-start: var(--pf-v6-c-expandable-section__content--PaddingInlineStart, 0);
|
|
6367
6693
|
}
|
|
6694
|
+
.pf-v6-c-expandable-section__content:where([hidden]) {
|
|
6695
|
+
display: revert;
|
|
6696
|
+
}
|
|
6697
|
+
.pf-v6-c-expandable-section:where(:not(.pf-m-truncate)) .pf-v6-c-expandable-section__content {
|
|
6698
|
+
max-height: var(--pf-v6-c-expandable-section__content--MaxHeight, 0);
|
|
6699
|
+
visibility: var(--pf-v6-c-expandable-section__content--Visibility, hidden);
|
|
6700
|
+
opacity: var(--pf-v6-c-expandable-section__content--Opacity);
|
|
6701
|
+
transition-delay: 0s, 0s, var(--pf-v6-c-expandable-section__content--TransitionDelay--hide, 0s), var(--pf-v6-c-expandable-section__content--TransitionDelay--hide, 0s);
|
|
6702
|
+
transition-timing-function: var(--pf-v6-c-expandable-section__content--TransitionTimingFunction);
|
|
6703
|
+
transition-duration: var(--pf-v6-c-expandable-section__content--TransitionDuration--fade), var(--pf-v6-c-expandable-section__content--TransitionDuration--slide), 0s, 0s;
|
|
6704
|
+
transition-property: opacity, translate, visibility, max-height;
|
|
6705
|
+
translate: 0 var(--pf-v6-c-expandable-section__content--TranslateY);
|
|
6706
|
+
}
|
|
6368
6707
|
|
|
6369
6708
|
.pf-v6-c-file-upload {
|
|
6370
6709
|
--pf-v6-c-file-upload--RowGap: var(--pf-t--global--spacer--gap--group--vertical);
|
|
@@ -6374,9 +6713,9 @@ ul) {
|
|
|
6374
6713
|
--pf-v6-c-file-upload--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
|
|
6375
6714
|
--pf-v6-c-file-upload--BorderRadius: var(--pf-t--global--border--radius--small);
|
|
6376
6715
|
--pf-v6-c-file-upload--BorderWidth: var(--pf-t--global--border--width--regular);
|
|
6377
|
-
--pf-v6-c-file-upload--BorderColor:
|
|
6378
|
-
--pf-v6-c-file-upload--BorderStyle:
|
|
6379
|
-
--pf-v6-c-file-upload--m-drag-hover--BorderColor: var(--pf-t--global--
|
|
6716
|
+
--pf-v6-c-file-upload--BorderColor: var(--pf-t--global--border--color--default);
|
|
6717
|
+
--pf-v6-c-file-upload--BorderStyle: dashed;
|
|
6718
|
+
--pf-v6-c-file-upload--m-drag-hover--BorderColor: var(--pf-t--global--border--color--clicked);
|
|
6380
6719
|
--pf-v6-c-file-upload--m-drag-hover--BorderStyle: dashed;
|
|
6381
6720
|
--pf-v6-c-file-upload__file-select__c-button--m-control--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
|
6382
6721
|
--pf-v6-c-file-upload__file-details__c-form-control--MinHeight: calc(var(--pf-t--global--spacer--3xl) * 2);
|
|
@@ -6476,7 +6815,7 @@ ul) {
|
|
|
6476
6815
|
--pf-v6-c-form__field-group--GridTemplateColumns--toggle: calc(var(--pf-t--global--spacer--md) * 2 + var(--pf-v6-c-form__field-group-toggle-icon--MinWidth) + var(--pf-t--global--spacer--xs));
|
|
6477
6816
|
--pf-v6-c-form__field-group-toggle--PaddingBlockStart: var(--pf-v6-c-form__field-group-header--PaddingBlockStart);
|
|
6478
6817
|
--pf-v6-c-form__field-group-toggle--PaddingInlineEnd: var(--pf-t--global--spacer--xs);
|
|
6479
|
-
--pf-v6-c-form__field-group__field-group__field-group-toggle--PaddingBlockStart: var(--pf-t--global--spacer--
|
|
6818
|
+
--pf-v6-c-form__field-group__field-group__field-group-toggle--PaddingBlockStart: var(--pf-t--global--spacer--lg);
|
|
6480
6819
|
--pf-v6-c-form__field-group-header-toggle--BorderWidth--base: var(--pf-t--global--border--width--divider--default);
|
|
6481
6820
|
--pf-v6-c-form__field-group__field-group--field-group__field-group-toggle--after--BorderBlockStartWidth: var(--pf-v6-c-form__field-group-header-toggle--BorderWidth--base);
|
|
6482
6821
|
--pf-v6-c-form__field-group-toggle-button--MarginBlockStart: calc(var(--pf-t--global--spacer--control--vertical--plain) * -1);
|
|
@@ -6496,6 +6835,8 @@ ul) {
|
|
|
6496
6835
|
--pf-v6-c-form__field-group-header-description--MarginBlockStart: var(--pf-t--global--spacer--xs);
|
|
6497
6836
|
--pf-v6-c-form__field-group-header-description--Color: var(--pf-t--global--text--color--subtle);
|
|
6498
6837
|
--pf-v6-c-form__field-group-header-actions--MarginInlineStart: var(--pf-t--global--spacer--sm);
|
|
6838
|
+
--pf-v6-c-form__field-group-header-actions--MarginBlockStart: calc(var(--pf-t--global--spacer--control--vertical--plain) * -1);
|
|
6839
|
+
--pf-v6-c-form__field-group-header-actions--MarginBlockEnd: calc(var(--pf-t--global--spacer--control--vertical--plain) * -1);
|
|
6499
6840
|
--pf-v6-c-form__field-group-body--PaddingBlockStart: var(--pf-t--global--spacer--lg);
|
|
6500
6841
|
--pf-v6-c-form__field-group-body--PaddingBlockEnd: var(--pf-t--global--spacer--lg);
|
|
6501
6842
|
--pf-v6-c-form__field-group-body--Gap: var(--pf-v6-c-form--GridGap);
|
|
@@ -6503,6 +6844,19 @@ ul) {
|
|
|
6503
6844
|
--pf-v6-c-form__field-group__field-group__field-group-body--GridColumn: 1 / 3;
|
|
6504
6845
|
--pf-v6-c-form__field-group__field-group__field-group-toggle--field-group-body--GridColumn: 2 / 3;
|
|
6505
6846
|
--pf-v6-c-form__field-group-body__field-group--last-child--MarginBlockEnd: calc(var(--pf-v6-c-form__field-group-body--PaddingBlockEnd) * -1);
|
|
6847
|
+
--pf-v6-c-form__field-group-body--TranslateY: 0;
|
|
6848
|
+
--pf-v6-c-form__field-group--m-expanded__field-group-body--TranslateY: 0;
|
|
6849
|
+
--pf-v6-c-form__field-group-body--TransitionDuration--expand--slide: 0s;
|
|
6850
|
+
--pf-v6-c-form__field-group-body--TransitionDuration--expand--fade: var(--pf-t--global--motion--duration--fade--default);
|
|
6851
|
+
--pf-v6-c-form__field-group-body--TransitionDuration--collapse--slide: 0s;
|
|
6852
|
+
--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade: var(--pf-t--global--motion--duration--fade--short);
|
|
6853
|
+
}
|
|
6854
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
|
6855
|
+
.pf-v6-c-form {
|
|
6856
|
+
--pf-v6-c-form__field-group-body--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
|
|
6857
|
+
--pf-v6-c-form__field-group-body--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
|
|
6858
|
+
--pf-v6-c-form__field-group-body--TranslateY: -.5rem;
|
|
6859
|
+
}
|
|
6506
6860
|
}
|
|
6507
6861
|
|
|
6508
6862
|
.pf-v6-c-form {
|
|
@@ -6859,6 +7213,16 @@ ul) {
|
|
|
6859
7213
|
.pf-v6-c-form__field-group.pf-m-expanded > .pf-v6-c-form__field-group-toggle {
|
|
6860
7214
|
--pf-v6-c-form__field-group-toggle-icon--Rotate: var(--pf-v6-c-form__field-group--m-expanded__toggle-icon--Rotate);
|
|
6861
7215
|
}
|
|
7216
|
+
.pf-v6-c-form__field-group.pf-m-expanded.pf-m-expandable > .pf-v6-c-form__field-group-body {
|
|
7217
|
+
max-height: 99999px;
|
|
7218
|
+
padding-block-start: var(--pf-v6-c-form__field-group-body--PaddingBlockStart);
|
|
7219
|
+
padding-block-end: var(--pf-v6-c-form__field-group-body--PaddingBlockEnd);
|
|
7220
|
+
visibility: visible;
|
|
7221
|
+
opacity: 1;
|
|
7222
|
+
transition-delay: 0s;
|
|
7223
|
+
transition-duration: var(--pf-v6-c-form__field-group-body--TransitionDuration--expand--fade), var(--pf-v6-c-form__field-group-body--TransitionDuration--expand--slide), 0s, 0s, 0s, 0s;
|
|
7224
|
+
translate: 0 var(--pf-v6-c-form__field-group--m-expanded__field-group-body--TranslateY);
|
|
7225
|
+
}
|
|
6862
7226
|
|
|
6863
7227
|
.pf-v6-c-form__field-group-toggle {
|
|
6864
7228
|
grid-row: 1/2;
|
|
@@ -6917,6 +7281,8 @@ ul) {
|
|
|
6917
7281
|
}
|
|
6918
7282
|
|
|
6919
7283
|
.pf-v6-c-form__field-group-header-actions {
|
|
7284
|
+
margin-block-start: var(--pf-v6-c-form__field-group-header-actions--MarginBlockStart);
|
|
7285
|
+
margin-block-end: var(--pf-v6-c-form__field-group-header-actions--MarginBlockEnd);
|
|
6920
7286
|
margin-inline-start: var(--pf-v6-c-form__field-group-header-actions--MarginInlineStart);
|
|
6921
7287
|
white-space: nowrap;
|
|
6922
7288
|
}
|
|
@@ -6928,6 +7294,18 @@ ul) {
|
|
|
6928
7294
|
padding-block-start: var(--pf-v6-c-form__field-group-body--PaddingBlockStart);
|
|
6929
7295
|
padding-block-end: var(--pf-v6-c-form__field-group-body--PaddingBlockEnd);
|
|
6930
7296
|
}
|
|
7297
|
+
.pf-v6-c-form__field-group.pf-m-expandable > .pf-v6-c-form__field-group-body {
|
|
7298
|
+
max-height: 0;
|
|
7299
|
+
padding-block-start: 0;
|
|
7300
|
+
padding-block-end: 0;
|
|
7301
|
+
visibility: hidden;
|
|
7302
|
+
opacity: 0;
|
|
7303
|
+
transition-delay: 0s, 0s, var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade), var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade), var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade), var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade);
|
|
7304
|
+
transition-duration: var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade), var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--slide), 0s, 0s, 0s, 0s;
|
|
7305
|
+
transition-property: opacity, translate, visibility, max-height, padding-block-start, padding-block-end;
|
|
7306
|
+
translate: 0 var(--pf-v6-c-form__field-group-body--TranslateY);
|
|
7307
|
+
}
|
|
7308
|
+
|
|
6931
7309
|
.pf-v6-c-form__field-group-body > .pf-v6-c-form__field-group:first-child {
|
|
6932
7310
|
--pf-v6-c-form__field-group-toggle--PaddingBlockStart: 0;
|
|
6933
7311
|
--pf-v6-c-form__field-group-header--PaddingBlockStart: 0;
|
|
@@ -7164,6 +7542,22 @@ ul) {
|
|
|
7164
7542
|
--pf-v6-c-form-control__icon--m-status--Color: var(--pf-v6-c-form-control--m-error__icon--m-status--Color);
|
|
7165
7543
|
--pf-v6-c-form-control--after--BorderWidth: var(--pf-v6-c-form-control--m-error--after--BorderWidth);
|
|
7166
7544
|
}
|
|
7545
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
7546
|
+
.pf-v6-c-form-control.pf-m-error {
|
|
7547
|
+
translate: var(--pf-v6-global--danger-jiggle--TranslateX, 0);
|
|
7548
|
+
animation-name: pf-v6-global-danger-jiggle-motion;
|
|
7549
|
+
animation-duration: var(--pf-v6-global--danger-jiggle--AnimationDuration--Transform);
|
|
7550
|
+
animation-timing-function: var(--pf-v6-global--danger-jiggle--AnimationTimingFunction--Transform);
|
|
7551
|
+
animation-fill-mode: both;
|
|
7552
|
+
}
|
|
7553
|
+
}
|
|
7554
|
+
.pf-v6-c-form-control.pf-m-error .pf-v6-c-form-control__icon.pf-m-status {
|
|
7555
|
+
--pf-v6-c-form-control--TransitionDuration--Opacity: var(--pf-t--global--motion--duration--fade--default);
|
|
7556
|
+
--pf-v6-c-form-control--TransitionTimingFunction--Opacity: var(--pf-t--global--motion--timing-function--default);
|
|
7557
|
+
animation-name: pf-v6-global-fade-in;
|
|
7558
|
+
animation-duration: var(--pf-v6-c-form-control--TransitionDuration--Opacity);
|
|
7559
|
+
animation-timing-function: var(--pf-v6-c-form-control--TransitionTimingFunction--Opacity);
|
|
7560
|
+
}
|
|
7167
7561
|
.pf-v6-c-form-control.pf-m-error > textarea {
|
|
7168
7562
|
padding-inline-end: var(--pf-v6-c-form-control--m-error--PaddingInlineEnd, var(--pf-v6-c-form-control__textarea--m-error--PaddingInlineEnd));
|
|
7169
7563
|
}
|
|
@@ -7813,6 +8207,30 @@ ul) {
|
|
|
7813
8207
|
--pf-v6-c-input-group__text--Color: var(--pf-t--global--text--color--regular);
|
|
7814
8208
|
--pf-v6-c-input-group__item--m-disabled__text--Color: var(--pf-t--global--text--color--on-disabled);
|
|
7815
8209
|
--pf-v6-c-input-group__item--m-disabled--BackgroundColor: var(--pf-t--global--background--color--disabled--default);
|
|
8210
|
+
--pf-v6-c-input-group__item--m-search-text-input--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
8211
|
+
--pf-v6-c-input-group__item--m-search-text-input--TransitionDuration--expand--fade: var(--pf-t--global--motion--duration--fade--default);
|
|
8212
|
+
--pf-v6-c-input-group__item--m-search-text-input--TransitionDuration--collapse--fade: var(--pf-t--global--motion--duration--fade--short);
|
|
8213
|
+
--pf-v6-c-input-group__item--m-search-text-input--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
|
|
8214
|
+
--pf-v6-c-input-group__item--m-search-text-input--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
|
|
8215
|
+
--pf-v6-c-input-group__item--m-search-text-input--TransitionDuration--fade: var(--pf-v6-c-input-group__item--m-search-text-input--TransitionDuration--collapse--fade);
|
|
8216
|
+
--pf-v6-c-input-group__item--m-search-text-input--TransitionDuration--slide: var(--pf-v6-c-input-group__item--m-search-text-input--TransitionDuration--collapse--slide);
|
|
8217
|
+
--pf-v6-c-input-group__item--m-search-text-input--ScaleX: 1;
|
|
8218
|
+
--pf-v6-c-input-group__item--m-search-text-input--TransformOriginX--expand-start: 100%;
|
|
8219
|
+
--pf-v6-c-input-group__item--m-search-text-input--TransformOriginX--expand-end: 0;
|
|
8220
|
+
--pf-v6-c-input-group__item--m-search-text-input--TransformOriginX: var(--pf-v6-c-input-group__item--m-search-text-input--TransformOriginX--expand-end);
|
|
8221
|
+
--pf-v6-c-input-group__item--m-search-expand--TransitionTimingFunction:var(--pf-t--global--motion--timing-function--default);
|
|
8222
|
+
--pf-v6-c-input-group__item--m-search-expand--TransitionDuration--expand--fade: 0s;
|
|
8223
|
+
--pf-v6-c-input-group__item--m-search-expand--TransitionDuration--collapse--fade: 0s;
|
|
8224
|
+
--pf-v6-c-input-group__item--m-search-expand--TransitionDuration--fade: var(--pf-v6-c-input-group__item--m-search-expand--TransitionDuration--expand--fade);
|
|
8225
|
+
--pf-v6-c-input-group__item--m-search-action--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
8226
|
+
--pf-v6-c-input-group__item--m-search-action--TransitionDuration--expand--fade: var(--pf-t--global--motion--duration--fade--default);
|
|
8227
|
+
--pf-v6-c-input-group__item--m-search-action--TransitionDuration--collapse--fade: var(--pf-t--global--motion--duration--fade--short);
|
|
8228
|
+
--pf-v6-c-input-group__item--m-search-action--TransitionDuration--fade: var(--pf-v6-c-input-group__item--m-search-action--TransitionDuration--collapse--fade);
|
|
8229
|
+
}
|
|
8230
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
8231
|
+
.pf-v6-c-input-group {
|
|
8232
|
+
--pf-v6-c-input-group__item--m-search-text-input--ScaleX: .7;
|
|
8233
|
+
}
|
|
7816
8234
|
}
|
|
7817
8235
|
|
|
7818
8236
|
.pf-v6-c-input-group {
|
|
@@ -7820,6 +8238,62 @@ ul) {
|
|
|
7820
8238
|
gap: var(--pf-v6-c-input-group--Gap);
|
|
7821
8239
|
width: 100%;
|
|
7822
8240
|
}
|
|
8241
|
+
.pf-v6-c-input-group.pf-m-search-expandable:not(.pf-m-expanded) {
|
|
8242
|
+
--pf-v6-c-input-group--Gap: 0;
|
|
8243
|
+
transition: gap 0s var(--pf-v6-c-input-group__item--m-search-text-input--TransitionDuration--fade);
|
|
8244
|
+
}
|
|
8245
|
+
.pf-v6-c-input-group.pf-m-search-expandable .pf-v6-c-input-group__item.pf-m-search-input {
|
|
8246
|
+
flex-grow: 1;
|
|
8247
|
+
max-width: var(--pf-v6-c-input-group__item--m-search-text-input--MaxWidth, 0);
|
|
8248
|
+
visibility: var(--pf-v6-c-input-group__item--m-search-text-input--Visibility, hidden);
|
|
8249
|
+
opacity: var(--pf-v6-c-input-group__item--m-search-text-input--Opacity, 0);
|
|
8250
|
+
transition-delay: 0s, 0s, var(--pf-v6-c-input-group__item--m-search-text-input--TransitionDuration--fade), var(--pf-v6-c-input-group__item--m-search-text-input--TransitionDuration--fade);
|
|
8251
|
+
transition-timing-function: var(--pf-v6-c-input-group__item--m-search-text-input--TransitionTimingFunction);
|
|
8252
|
+
transition-duration: var(--pf-v6-c-input-group__item--m-search-text-input--TransitionDuration--fade), var(--pf-v6-c-input-group__item--m-search-text-input--TransitionDuration--slide), 0s, 0s;
|
|
8253
|
+
transition-property: opacity, scale, visibility, max-width;
|
|
8254
|
+
transform-origin: var(--pf-v6-c-input-group__item--m-search-text-input--TransformOriginX) center;
|
|
8255
|
+
scale: var(--pf-v6-c-input-group__item--m-search-text-input--ScaleX) 1;
|
|
8256
|
+
}
|
|
8257
|
+
.pf-v6-c-input-group.pf-m-search-expandable .pf-v6-c-input-group__item.pf-m-search-expand {
|
|
8258
|
+
max-width: var(--pf-v6-c-input-group__item--m-search-expand--MaxWidth, 100%);
|
|
8259
|
+
visibility: var(--pf-v6-c-input-group__item--m-search-expand--Visibility, visible);
|
|
8260
|
+
opacity: var(--pf-v6-c-input-group__item--m-search-expand--Opacity, 1);
|
|
8261
|
+
transition-delay: var(--pf-v6-c-input-group__item--m-search-action--TransitionDuration--fade);
|
|
8262
|
+
transition-timing-function: var(--pf-v6-c-input-group__item--m-search-expand--TransitionTimingFunction);
|
|
8263
|
+
transition-duration: var(--pf-v6-c-input-group__item--m-search-expand--TransitionDuration--fade), 0s, 0s;
|
|
8264
|
+
transition-property: opacity, visibility, max-width;
|
|
8265
|
+
}
|
|
8266
|
+
.pf-v6-c-input-group.pf-m-search-expandable .pf-v6-c-input-group__item.pf-m-search-action {
|
|
8267
|
+
max-width: var(--pf-v6-c-input-group__item--m-search-action--MaxWidth, 0);
|
|
8268
|
+
visibility: var(--pf-v6-c-input-group__item--m-search-action--Visibility, hidden);
|
|
8269
|
+
opacity: var(--pf-v6-c-input-group__item--m-search-action--Opacity, 0);
|
|
8270
|
+
transition-delay: 0s, var(--pf-v6-c-input-group__item--m-search-action--TransitionDuration--fade), var(--pf-v6-c-input-group__item--m-search-action--TransitionDuration--fade);
|
|
8271
|
+
transition-timing-function: var(--pf-v6-c-input-group__item--m-search-action--TransitionTimingFunction);
|
|
8272
|
+
transition-duration: var(--pf-v6-c-input-group__item--m-search-action--TransitionDuration--fade), 0s, 0s;
|
|
8273
|
+
transition-property: opacity, visibility, max-width;
|
|
8274
|
+
}
|
|
8275
|
+
.pf-v6-c-input-group.pf-m-search-expandable.pf-m-expand-start {
|
|
8276
|
+
--pf-v6-c-input-group__item--m-search-text-input--TransformOriginX: var(--pf-v6-c-input-group__item--m-search-text-input--TransformOriginX--expand-start);
|
|
8277
|
+
}
|
|
8278
|
+
.pf-v6-c-input-group.pf-m-search-expandable.pf-m-expanded {
|
|
8279
|
+
--pf-v6-c-input-group__item--m-search-text-input--MaxWidth: 100%;
|
|
8280
|
+
--pf-v6-c-input-group__item--m-search-text-input--Visibility: visible;
|
|
8281
|
+
--pf-v6-c-input-group__item--m-search-text-input--Opacity: 1;
|
|
8282
|
+
--pf-v6-c-input-group__item--m-search-text-input--TransitionDuration--fade: var(--pf-v6-c-input-group__item--m-search-text-input--TransitionDuration--expand--fade);
|
|
8283
|
+
--pf-v6-c-input-group__item--m-search-text-input--TransitionDuration--slide: var(--pf-v6-c-input-group__item--m-search-text-input--TransitionDuration--expand--slide);
|
|
8284
|
+
--pf-v6-c-input-group__item--m-search-text-input--ScaleX: 1;
|
|
8285
|
+
--pf-v6-c-input-group__item--m-search-action--MaxWidth: 100%;
|
|
8286
|
+
--pf-v6-c-input-group__item--m-search-action--Visibility: visible;
|
|
8287
|
+
--pf-v6-c-input-group__item--m-search-action--Opacity: 1;
|
|
8288
|
+
--pf-v6-c-input-group__item--m-search-action--TransitionDuration--fade: var(--pf-v6-c-input-group__item--m-search-action--TransitionDuration--expand--fade);
|
|
8289
|
+
--pf-v6-c-input-group__item--m-search-expand--MaxWidth: 0;
|
|
8290
|
+
--pf-v6-c-input-group__item--m-search-expand--Visibility: hidden;
|
|
8291
|
+
--pf-v6-c-input-group__item--m-search-expand--Opacity: 0;
|
|
8292
|
+
--pf-v6-c-input-group__item--m-search-expand--TransitionDuration--fade: var(--pf-v6-c-input-group__item--m-search-expand--TransitionDuration--collapse--fade);
|
|
8293
|
+
}
|
|
8294
|
+
.pf-v6-c-input-group.pf-m-search-expandable.pf-m-expanded .pf-v6-c-input-group__item:is(.pf-m-search-input, .pf-m-search-expand, .pf-m-search-action) {
|
|
8295
|
+
transition-delay: 0s;
|
|
8296
|
+
}
|
|
7823
8297
|
|
|
7824
8298
|
.pf-v6-c-input-group__item {
|
|
7825
8299
|
position: relative;
|
|
@@ -9632,7 +10106,7 @@ ul.pf-v6-c-list {
|
|
|
9632
10106
|
--pf-v6-c-menu--ZIndex: var(--pf-t--global--z-index--sm);
|
|
9633
10107
|
--pf-v6-c-menu--button--disabled--Color: var(--pf-t--global--text--color--disabled);
|
|
9634
10108
|
--pf-v6-c-menu--icon--disabled--Color: var(--pf-t--global--icon--color--disabled);
|
|
9635
|
-
--pf-v6-c-menu--TransitionDuration:
|
|
10109
|
+
--pf-v6-c-menu--TransitionDuration: 0s;
|
|
9636
10110
|
--pf-v6-c-menu--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
9637
10111
|
--pf-v6-c-menu--m-plain--BoxShadow: none;
|
|
9638
10112
|
--pf-v6-c-menu__content--RowGap: var(--pf-v6-c-menu--RowGap);
|
|
@@ -9705,14 +10179,34 @@ ul.pf-v6-c-list {
|
|
|
9705
10179
|
--pf-v6-c-menu--m-flyout__menu--m-left--InsetInlineEnd: calc(100% + var(--pf-v6-c-menu--m-flyout__menu--m-left--right-offset));
|
|
9706
10180
|
--pf-v6-c-menu--m-drilldown__content--TransitionDuration--height: var(--pf-t--global--motion--duration--slide-in--default);
|
|
9707
10181
|
--pf-v6-c-menu--m-drilldown__content--TransitionDuration--transform: var(--pf-t--global--motion--duration--slide-in--default);
|
|
9708
|
-
--pf-v6-c-menu--m-drilldown__content--Transition:
|
|
10182
|
+
--pf-v6-c-menu--m-drilldown__content--Transition: height var(--pf-v6-c-menu--m-drilldown__content--TransitionDuration--height);
|
|
9709
10183
|
--pf-v6-c-menu--m-drilldown--c-menu--InsetBlockStart: 0;
|
|
9710
|
-
--pf-v6-c-menu--m-drilldown--c-menu--TransitionDuration--transform:
|
|
10184
|
+
--pf-v6-c-menu--m-drilldown--c-menu--TransitionDuration--transform: 0s;
|
|
9711
10185
|
--pf-v6-c-menu--m-drilldown--c-menu--Transition: transform var(--pf-v6-c-menu--m-drilldown--c-menu--TransitionDuration--transform);
|
|
9712
|
-
--pf-v6-c-menu--m-drilldown__list--TransitionDuration--transform:
|
|
10186
|
+
--pf-v6-c-menu--m-drilldown__list--TransitionDuration--transform: 0s;
|
|
9713
10187
|
--pf-v6-c-menu--m-drilldown__list--Transition: transform var(--pf-v6-c-menu--m-drilldown__list--TransitionDuration--transform);
|
|
9714
10188
|
--pf-v6-c-menu--m-drilled-in--c-menu__list-item--m-current-path--c-menu--ZIndex: var(--pf-t--global--z-index--xs);
|
|
9715
10189
|
}
|
|
10190
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
10191
|
+
.pf-v6-c-menu {
|
|
10192
|
+
--pf-v6-c-menu--TransitionDuration: var(--pf-t--global--motion--duration--fade--default);
|
|
10193
|
+
}
|
|
10194
|
+
}
|
|
10195
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
10196
|
+
.pf-v6-c-menu {
|
|
10197
|
+
--pf-v6-c-menu--m-drilldown__content--Transition: transform var(--pf-v6-c-menu--m-drilldown__content--TransitionDuration--transform), height var(--pf-v6-c-menu--m-drilldown__content--TransitionDuration--height);
|
|
10198
|
+
}
|
|
10199
|
+
}
|
|
10200
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
10201
|
+
.pf-v6-c-menu {
|
|
10202
|
+
--pf-v6-c-menu--m-drilldown--c-menu--TransitionDuration--transform: var(--pf-t--global--motion--duration--slide-in--default);
|
|
10203
|
+
}
|
|
10204
|
+
}
|
|
10205
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
10206
|
+
.pf-v6-c-menu {
|
|
10207
|
+
--pf-v6-c-menu--m-drilldown__list--TransitionDuration--transform: var(--pf-t--global--motion--duration--slide-in--default);
|
|
10208
|
+
}
|
|
10209
|
+
}
|
|
9716
10210
|
|
|
9717
10211
|
.pf-v6-c-menu__content,
|
|
9718
10212
|
.pf-v6-c-menu__list-item,
|
|
@@ -10246,6 +10740,14 @@ ul.pf-v6-c-list {
|
|
|
10246
10740
|
--pf-v6-c-menu-toggle--disabled--BackgroundColor: var(--pf-t--global--background--color--disabled--default);
|
|
10247
10741
|
--pf-v6-c-menu-toggle__icon--MinHeight: calc(var(--pf-v6-c-menu-toggle--FontSize) * var(--pf-v6-c-menu-toggle--LineHeight));
|
|
10248
10742
|
--pf-v6-c-menu-toggle__icon--Color: var(--pf-t--global--icon--color--regular);
|
|
10743
|
+
--pf-v6-c-menu-toggle__icon--TransitionDelay: 0s;
|
|
10744
|
+
--pf-v6-c-menu-toggle__icon--TransitionDuration: 0s;
|
|
10745
|
+
--pf-v6-c-menu-toggle__icon--TransitionProperty: none;
|
|
10746
|
+
--pf-v6-c-menu-toggle--hover__icon--TransitionDelay: 0s;
|
|
10747
|
+
--pf-v6-c-menu-toggle--hover__icon--TransitionDuration: 0s;
|
|
10748
|
+
--pf-v6-c-menu-toggle--hover__icon--TransitionProperty: none;
|
|
10749
|
+
--pf-v6-c-menu-toggle__icon--Rotate: 0deg;
|
|
10750
|
+
--pf-v6-c-menu-toggle--hover__icon--Rotate: 0deg;
|
|
10249
10751
|
--pf-v6-c-menu-toggle__toggle-icon--MinHeight: calc(var(--pf-v6-c-menu-toggle--FontSize) * var(--pf-v6-c-menu-toggle--LineHeight));
|
|
10250
10752
|
--pf-v6-c-menu-toggle__toggle-icon--Color: var(--pf-t--global--icon--color--regular);
|
|
10251
10753
|
--pf-v6-c-menu-toggle--m-primary--PaddingInlineStart: var(--pf-t--global--spacer--action--horizontal--default);
|
|
@@ -10343,6 +10845,11 @@ ul.pf-v6-c-list {
|
|
|
10343
10845
|
--pf-v6-c-menu-toggle--m-danger--AnimationTimingFunction--Transform: var(--pf-t--global--motion--timing-function--default);
|
|
10344
10846
|
--pf-v6-c-menu-toggle--m-placeholder--Color: var(--pf-t--global--text--color--placeholder);
|
|
10345
10847
|
--pf-v6-c-menu-toggle__controls--Gap: var(--pf-t--global--spacer--sm);
|
|
10848
|
+
--pf-v6-c-menu-toggle--m-settings__icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--long);
|
|
10849
|
+
--pf-v6-c-menu-toggle--m-settings__icon--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--accelerate);
|
|
10850
|
+
--pf-v6-c-menu-toggle--m-settings--hover__icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--long);
|
|
10851
|
+
--pf-v6-c-menu-toggle--m-settings--hover__icon--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
|
|
10852
|
+
--pf-v6-c-menu-toggle--m-settings--hover__icon--Rotate: 60deg;
|
|
10346
10853
|
}
|
|
10347
10854
|
|
|
10348
10855
|
.pf-v6-c-menu-toggle {
|
|
@@ -10456,6 +10963,10 @@ ul.pf-v6-c-list {
|
|
|
10456
10963
|
--pf-v6-c-menu-toggle--BorderWidth: var(--pf-v6-c-menu-toggle--hover--BorderWidth);
|
|
10457
10964
|
--pf-v6-c-menu-toggle--BorderColor: var(--pf-v6-c-menu-toggle--hover--BorderColor);
|
|
10458
10965
|
--pf-v6-c-menu-toggle__toggle-icon--Color: var(--pf-v6-c-menu-toggle--hover__toggle-icon--Color);
|
|
10966
|
+
--pf-v6-c-menu-toggle__icon--TransitionDelay: var(--pf-v6-c-menu-toggle--hover__icon--TransitionDelay);
|
|
10967
|
+
--pf-v6-c-menu-toggle__icon--TransitionDuration: var(--pf-v6-c-menu-toggle--hover__icon--TransitionDuration);
|
|
10968
|
+
--pf-v6-c-menu-toggle__icon--TransitionProperty: var(--pf-v6-c-menu-toggle--hover__icon--TransitionProperty);
|
|
10969
|
+
--pf-v6-c-menu-toggle__icon--Rotate: var(--pf-v6-c-menu-toggle--hover__icon--Rotate);
|
|
10459
10970
|
}
|
|
10460
10971
|
.pf-v6-c-menu-toggle:is(.pf-m-expanded, [aria-expanded=true]) {
|
|
10461
10972
|
--pf-v6-c-menu-toggle--Color: var(--pf-v6-c-menu-toggle--expanded--Color);
|
|
@@ -10511,6 +11022,15 @@ ul.pf-v6-c-list {
|
|
|
10511
11022
|
opacity: 1;
|
|
10512
11023
|
}
|
|
10513
11024
|
}
|
|
11025
|
+
.pf-v6-c-menu-toggle.pf-m-settings {
|
|
11026
|
+
--pf-v6-c-menu-toggle__icon--TransitionProperty: rotate;
|
|
11027
|
+
--pf-v6-c-menu-toggle__icon--TransitionDuration: var(--pf-v6-c-menu-toggle--m-settings__icon--TransitionDuration);
|
|
11028
|
+
--pf-v6-c-menu-toggle__icon--TransitionTimingFunction: var(--pf-v6-c-menu-toggle--m-settings__icon--TransitionTimingFunction);
|
|
11029
|
+
--pf-v6-c-menu-toggle--hover__icon--TransitionProperty: rotate;
|
|
11030
|
+
--pf-v6-c-menu-toggle--hover__icon--TransitionDuration: var(--pf-v6-c-menu-toggle--m-settings--hover__icon--TransitionDuration);
|
|
11031
|
+
--pf-v6-c-menu-toggle--hover__icon--TransitionTimingFunction: var(--pf-v6-c-menu-toggle--m-settings--hover__icon--TransitionTimingFunction);
|
|
11032
|
+
--pf-v6-c-menu-toggle--hover__icon--Rotate: var(--pf-v6-c-menu-toggle--m-settings--hover__icon--Rotate);
|
|
11033
|
+
}
|
|
10514
11034
|
.pf-v6-c-menu-toggle.pf-m-placeholder {
|
|
10515
11035
|
--pf-v6-c-menu-toggle--Color: var(--pf-v6-c-menu-toggle--m-placeholder--Color);
|
|
10516
11036
|
}
|
|
@@ -10663,16 +11183,24 @@ ul.pf-v6-c-list {
|
|
|
10663
11183
|
flex-wrap: nowrap;
|
|
10664
11184
|
}
|
|
10665
11185
|
|
|
10666
|
-
.pf-v6-c-menu-toggle__icon {
|
|
10667
|
-
flex-shrink: 0;
|
|
10668
|
-
}
|
|
10669
11186
|
.pf-v6-c-menu-toggle__icon.pf-m-avatar .pf-v6-c-avatar,
|
|
10670
11187
|
.pf-v6-c-menu-toggle__icon.pf-m-avatar img,
|
|
10671
|
-
.pf-v6-c-menu-toggle__icon.pf-m-avatar svg {
|
|
11188
|
+
.pf-v6-c-menu-toggle__icon.pf-m-avatar svg, .pf-v6-c-menu-toggle:not(.pf-m-plain) .pf-v6-c-menu-toggle__icon {
|
|
10672
11189
|
margin-block-start: calc(var(--pf-v6-c-menu-toggle--PaddingBlockStart) * -1);
|
|
10673
11190
|
margin-block-end: calc(var(--pf-v6-c-menu-toggle--PaddingBlockEnd) * -1);
|
|
10674
11191
|
}
|
|
10675
11192
|
|
|
11193
|
+
.pf-v6-c-menu-toggle__icon {
|
|
11194
|
+
flex-shrink: 0;
|
|
11195
|
+
transition-delay: var(--pf-v6-c-menu-toggle__icon--TransitionDelay);
|
|
11196
|
+
transition-duration: var(--pf-v6-c-menu-toggle__icon--TransitionDuration);
|
|
11197
|
+
transition-property: var(--pf-v6-c-menu-toggle__icon--TransitionProperty);
|
|
11198
|
+
rotate: var(--pf-v6-c-menu-toggle__icon--Rotate);
|
|
11199
|
+
}
|
|
11200
|
+
.pf-v6-c-menu-toggle__icon :where(picture, img) {
|
|
11201
|
+
vertical-align: middle;
|
|
11202
|
+
}
|
|
11203
|
+
|
|
10676
11204
|
.pf-v6-c-menu-toggle__controls {
|
|
10677
11205
|
display: flex;
|
|
10678
11206
|
gap: var(--pf-v6-c-menu-toggle__controls--Gap);
|
|
@@ -11159,9 +11687,13 @@ ul.pf-v6-c-list {
|
|
|
11159
11687
|
--pf-v6-c-nav__subnav--PaddingBlockStart: var(--pf-v6-c-nav__item--RowGap);
|
|
11160
11688
|
--pf-v6-c-nav__subnav--PaddingBlockEnd: var(--pf-v6-c-nav__item--RowGap);
|
|
11161
11689
|
--pf-v6-c-nav__subnav--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
11162
|
-
--pf-v6-c-nav__subnav--TransitionDuration--expand: var(--pf-t--global--motion--duration--
|
|
11163
|
-
--pf-v6-c-nav__subnav--TransitionDuration--
|
|
11690
|
+
--pf-v6-c-nav__subnav--TransitionDuration--expand: var(--pf-t--global--motion--duration--fade--default);
|
|
11691
|
+
--pf-v6-c-nav__subnav--TransitionDuration--expand--slide: 0s;
|
|
11692
|
+
--pf-v6-c-nav__subnav--TransitionDuration--collapse: var(--pf-t--global--motion--duration--fade--short);
|
|
11693
|
+
--pf-v6-c-nav__subnav--TransitionDuration--collapse--slide: 0s;
|
|
11164
11694
|
--pf-v6-c-nav__subnav--TransitionTimingFunction--expand: var(--pf-t--global--motion--timing-function--default);
|
|
11695
|
+
--pf-v6-c-nav__subnav--TranslateY: 0;
|
|
11696
|
+
--pf-v6-c-nav__subnav--hidden--TranslateY: 0;
|
|
11165
11697
|
--pf-v6-c-nav__scroll-button--BorderColor: var(--pf-t--global--border--color--default);
|
|
11166
11698
|
--pf-v6-c-nav__scroll-button--BorderWidth: var(--pf-t--global--border--width--divider--default);
|
|
11167
11699
|
--pf-v6-c-nav__scroll-button--first-of-type--c-button--BorderStartStartRadius: var(--pf-t--global--border--radius--pill);
|
|
@@ -11190,6 +11722,13 @@ ul.pf-v6-c-list {
|
|
|
11190
11722
|
--pf-v6-c-nav--m-horizontal--m-subnav__link--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
11191
11723
|
--pf-v6-c-nav--m-horizontal--m-subnav__link--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
|
11192
11724
|
}
|
|
11725
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
|
11726
|
+
.pf-v6-c-nav {
|
|
11727
|
+
--pf-v6-c-nav__subnav--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
|
|
11728
|
+
--pf-v6-c-nav__subnav--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
|
|
11729
|
+
--pf-v6-c-nav__subnav--hidden--TranslateY: -.5rem;
|
|
11730
|
+
}
|
|
11731
|
+
}
|
|
11193
11732
|
|
|
11194
11733
|
.pf-v6-c-nav,
|
|
11195
11734
|
.pf-v6-c-nav__section,
|
|
@@ -11260,24 +11799,27 @@ ul.pf-v6-c-list {
|
|
|
11260
11799
|
|
|
11261
11800
|
.pf-v6-c-nav__subnav {
|
|
11262
11801
|
--pf-v6-c-nav__list--RowGap: var(--pf-v6-c-nav__subnav--RowGap);
|
|
11263
|
-
|
|
11264
|
-
min-height: 0;
|
|
11802
|
+
max-height: 99999px;
|
|
11265
11803
|
padding-block-start: var(--pf-v6-c-nav__subnav--PaddingBlockStart);
|
|
11266
11804
|
padding-block-end: var(--pf-v6-c-nav__subnav--PaddingBlockEnd);
|
|
11267
11805
|
padding-inline-start: var(--pf-v6-c-nav__subnav--PaddingInlineStart);
|
|
11268
11806
|
overflow-y: clip;
|
|
11269
|
-
|
|
11807
|
+
visibility: visible;
|
|
11808
|
+
transition-delay: 0s, 0s, var(--pf-v6-c-nav__subnav--TransitionDelay--expand--focus, 0s), var(--pf-v6-c-nav__subnav--TransitionDelay--expand--focus, 0s), var(--pf-v6-c-nav__subnav--TransitionDelay--expand--focus, 0s), var(--pf-v6-c-nav__subnav--TransitionDelay--expand--focus, 0s);
|
|
11270
11809
|
transition-timing-function: var(--pf-v6-c-nav__subnav--TransitionTimingFunction--expand);
|
|
11271
|
-
transition-duration: var(--pf-v6-c-nav__subnav--TransitionDuration--expand), 0s, 0s, 0s, 0s;
|
|
11272
|
-
transition-property: opacity, visibility,
|
|
11810
|
+
transition-duration: var(--pf-v6-c-nav__subnav--TransitionDuration--expand), var(--pf-v6-c-nav__subnav--TransitionDuration--expand--slide), 0s, 0s, 0s, 0s;
|
|
11811
|
+
transition-property: opacity, translate, visibility, max-height, padding-block-start, padding-block-end;
|
|
11812
|
+
translate: 0 var(--pf-v6-c-nav__subnav--TranslateY);
|
|
11273
11813
|
}
|
|
11274
11814
|
.pf-v6-c-nav__subnav[hidden] {
|
|
11275
11815
|
--pf-v6-c-nav__subnav--TransitionDelay--expand--focus: var(--pf-v6-c-nav__subnav--TransitionDuration--expand);
|
|
11276
11816
|
--pf-v6-c-nav__subnav--TransitionDuration--expand: var(--pf-v6-c-nav__subnav--TransitionDuration--collapse);
|
|
11817
|
+
--pf-v6-c-nav__subnav--TransitionDuration--expand--slide: var(--pf-v6-c-nav__subnav--TransitionDuration--collapse--slide);
|
|
11277
11818
|
--pf-v6-c-nav__subnav--PaddingBlockStart: 0;
|
|
11278
11819
|
--pf-v6-c-nav__subnav--PaddingBlockEnd: 0;
|
|
11820
|
+
--pf-v6-c-nav__subnav--TranslateY: var(--pf-v6-c-nav__subnav--hidden--TranslateY);
|
|
11279
11821
|
display: grid;
|
|
11280
|
-
|
|
11822
|
+
max-height: 0;
|
|
11281
11823
|
visibility: hidden;
|
|
11282
11824
|
opacity: 0;
|
|
11283
11825
|
}
|
|
@@ -11762,13 +12304,18 @@ ul.pf-v6-c-list {
|
|
|
11762
12304
|
--pf-v6-c-page--inset: var(--pf-t--global--spacer--inset--page-chrome);
|
|
11763
12305
|
--pf-v6-c-page--c-masthead--ZIndex: var(--pf-t--global--z-index--md);
|
|
11764
12306
|
--pf-v6-c-page__sidebar--ZIndex: var(--pf-t--global--z-index--sm);
|
|
11765
|
-
--pf-v6-c-page__sidebar--Width: 18.125rem;
|
|
11766
|
-
--pf-v6-c-page__sidebar--
|
|
12307
|
+
--pf-v6-c-page__sidebar--Width--base: 18.125rem;
|
|
12308
|
+
--pf-v6-c-page__sidebar--Width: var(--pf-v6-c-page__sidebar--Width--base);
|
|
12309
|
+
--pf-v6-c-page__sidebar--xl--Width: var(--pf-v6-c-page__sidebar--Width--base);
|
|
11767
12310
|
--pf-v6-c-page__sidebar--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
|
|
11768
12311
|
--pf-v6-c-page__sidebar--BoxShadow: none;
|
|
11769
|
-
--pf-v6-c-page__sidebar--
|
|
11770
|
-
--pf-v6-c-page__sidebar--
|
|
12312
|
+
--pf-v6-c-page__sidebar--TransitionProperty: opacity;
|
|
12313
|
+
--pf-v6-c-page__sidebar--TransitionDuration: var(--pf-t--global--motion--duration--fade--default);
|
|
12314
|
+
--pf-v6-c-page__sidebar--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
|
|
11771
12315
|
--pf-v6-c-page__sidebar--TranslateX: -100%;
|
|
12316
|
+
--pf-v6-c-page__sidebar--Opacity: 0;
|
|
12317
|
+
--pf-v6-c-page__sidebar--m-expanded--Opacity: 1;
|
|
12318
|
+
--pf-v6-c-page__sidebar--xl--Opacity: 1;
|
|
11772
12319
|
--pf-v6-c-page__sidebar--TranslateZ: 0;
|
|
11773
12320
|
--pf-v6-c-page__sidebar--m-expanded--TranslateX: 0;
|
|
11774
12321
|
--pf-v6-c-page__sidebar--xl--TranslateX: 0;
|
|
@@ -11846,9 +12393,17 @@ ul.pf-v6-c-list {
|
|
|
11846
12393
|
--pf-v6-c-page__main-wizard--BorderBlockStartColor: var(--pf-t--global--border--color--default);
|
|
11847
12394
|
--pf-v6-c-page__main-wizard--BorderBlockStartWidth: var(--pf-t--global--border--width--action--default);
|
|
11848
12395
|
}
|
|
12396
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
|
12397
|
+
.pf-v6-c-page {
|
|
12398
|
+
--pf-v6-c-page__sidebar--Opacity: 1;
|
|
12399
|
+
--pf-v6-c-page__sidebar--TransitionProperty: transform;
|
|
12400
|
+
--pf-v6-c-page__sidebar--TransitionDuration: var(--pf-t--global--motion--duration--slide-in--default);
|
|
12401
|
+
}
|
|
12402
|
+
}
|
|
11849
12403
|
@media screen and (min-width: 75rem) {
|
|
11850
12404
|
.pf-v6-c-page {
|
|
11851
12405
|
--pf-v6-c-page__sidebar--TranslateX: var(--pf-v6-c-page__sidebar--xl--TranslateX);
|
|
12406
|
+
--pf-v6-c-page__sidebar--Opacity: var(--pf-v6-c-page__sidebar--xl--Opacity);
|
|
11852
12407
|
}
|
|
11853
12408
|
}
|
|
11854
12409
|
|
|
@@ -11869,6 +12424,51 @@ ul.pf-v6-c-list {
|
|
|
11869
12424
|
grid-template-columns: var(--pf-v6-c-page__sidebar--Width) 1fr;
|
|
11870
12425
|
}
|
|
11871
12426
|
}
|
|
12427
|
+
.pf-v6-c-page > .pf-v6-c-masthead .pf-v6-c-masthead__toggle .pf-v6-c-button.pf-m-hamburger:is(:hover, :focus-visible) {
|
|
12428
|
+
--pf-v6-c-button--hamburger-icon--top--path: var(--pf-v6-c-button--hamburger-icon--top--collapse--path);
|
|
12429
|
+
--pf-v6-c-button--hamburger-icon--arrow--path: var(--pf-v6-c-button--hamburger-icon--arrow--collapse--path);
|
|
12430
|
+
--pf-v6-c-button--hamburger-icon--bottom--path: var(--pf-v6-c-button--hamburger-icon--bottom--collapse--path);
|
|
12431
|
+
--pf-v6-c-button__icon--TransitionDelay: 0s;
|
|
12432
|
+
--pf-v6-c-button__icon--ScaleX: var(--pf-v6-c-button--m-hamburger__icon--m-expand--ScaleX);
|
|
12433
|
+
--pf-v6-c-button--hover__icon--TransitionDelay: 0s;
|
|
12434
|
+
--pf-v6-c-button--hover__icon--ScaleX: var(--pf-v6-c-button--m-hamburger__icon--m-expand--ScaleX);
|
|
12435
|
+
}
|
|
12436
|
+
.pf-v6-c-page:where(:has(> .pf-v6-c-page__sidebar.pf-m-expanded)) > .pf-v6-c-masthead .pf-v6-c-masthead__toggle :is(.pf-v6-c-button.pf-m-hamburger, .pf-v6-c-button.pf-m-hamburger:hover, .pf-v6-c-button.pf-m-hamburger:focus-visible) {
|
|
12437
|
+
--pf-v6-c-button--hamburger-icon--top--path: var(--pf-v6-c-button--hamburger-icon--top--collapse--path);
|
|
12438
|
+
--pf-v6-c-button--hamburger-icon--arrow--path: var(--pf-v6-c-button--hamburger-icon--arrow--collapse--path);
|
|
12439
|
+
--pf-v6-c-button--hamburger-icon--bottom--path: var(--pf-v6-c-button--hamburger-icon--bottom--collapse--path);
|
|
12440
|
+
--pf-v6-c-button__icon--TransitionDelay: 0s;
|
|
12441
|
+
--pf-v6-c-button__icon--ScaleX: 1;
|
|
12442
|
+
--pf-v6-c-button--hover__icon--TransitionDelay: 0s;
|
|
12443
|
+
--pf-v6-c-button--hover__icon--ScaleX: 1;
|
|
12444
|
+
}
|
|
12445
|
+
@media (min-width: 75rem) {
|
|
12446
|
+
.pf-v6-c-page > .pf-v6-c-masthead .pf-v6-c-masthead__toggle .pf-v6-c-button.pf-m-hamburger, .pf-v6-c-page:where(:has(> .pf-v6-c-page__sidebar.pf-m-expanded)) > .pf-v6-c-masthead .pf-v6-c-masthead__toggle :is(.pf-v6-c-button.pf-m-hamburger, .pf-v6-c-button.pf-m-hamburger:hover, .pf-v6-c-button.pf-m-hamburger:focus-visible) {
|
|
12447
|
+
--pf-v6-c-button--hamburger-icon--top--path: var(--pf-v6-c-button--hamburger-icon--top--path--base);
|
|
12448
|
+
--pf-v6-c-button--hamburger-icon--arrow--path: var(--pf-v6-c-button--hamburger-icon--arrow--path--base);
|
|
12449
|
+
--pf-v6-c-button--hamburger-icon--bottom--path: var(--pf-v6-c-button--hamburger-icon--bottom--path--base);
|
|
12450
|
+
--pf-v6-c-button__icon--TransitionDelay: var(--pf-v6-c-button--hamburger-icon--TransitionDuration);
|
|
12451
|
+
--pf-v6-c-button--hover__icon--TransitionDelay: var(--pf-v6-c-button--hamburger-icon--TransitionDuration);
|
|
12452
|
+
}
|
|
12453
|
+
.pf-v6-c-page > .pf-v6-c-masthead .pf-v6-c-masthead__toggle .pf-v6-c-button.pf-m-hamburger:is(:hover, :focus-visible) {
|
|
12454
|
+
--pf-v6-c-button--hamburger-icon--top--path: var(--pf-v6-c-button--hamburger-icon--top--collapse--path);
|
|
12455
|
+
--pf-v6-c-button--hamburger-icon--arrow--path: var(--pf-v6-c-button--hamburger-icon--arrow--collapse--path);
|
|
12456
|
+
--pf-v6-c-button--hamburger-icon--bottom--path: var(--pf-v6-c-button--hamburger-icon--bottom--collapse--path);
|
|
12457
|
+
--pf-v6-c-button__icon--TransitionDelay: 0s;
|
|
12458
|
+
--pf-v6-c-button__icon--ScaleX: 1;
|
|
12459
|
+
--pf-v6-c-button--hover__icon--TransitionDelay: 0s;
|
|
12460
|
+
--pf-v6-c-button--hover__icon--ScaleX: 1;
|
|
12461
|
+
}
|
|
12462
|
+
.pf-v6-c-page:where(:has(> .pf-v6-c-page__sidebar.pf-m-collapsed)) > .pf-v6-c-masthead .pf-v6-c-masthead__toggle .pf-v6-c-button.pf-m-hamburger:is(:hover, :focus-visible) {
|
|
12463
|
+
--pf-v6-c-button--hamburger-icon--top--path: var(--pf-v6-c-button--hamburger-icon--top--collapse--path);
|
|
12464
|
+
--pf-v6-c-button--hamburger-icon--arrow--path: var(--pf-v6-c-button--hamburger-icon--arrow--collapse--path);
|
|
12465
|
+
--pf-v6-c-button--hamburger-icon--bottom--path: var(--pf-v6-c-button--hamburger-icon--bottom--collapse--path);
|
|
12466
|
+
--pf-v6-c-button__icon--TransitionDelay: 0s;
|
|
12467
|
+
--pf-v6-c-button__icon--ScaleX: var(--pf-v6-c-button--m-hamburger__icon--m-expand--ScaleX);
|
|
12468
|
+
--pf-v6-c-button--hover__icon--TransitionDelay: 0s;
|
|
12469
|
+
--pf-v6-c-button--hover__icon--ScaleX: var(--pf-v6-c-button--m-hamburger__icon--m-expand--ScaleX);
|
|
12470
|
+
}
|
|
12471
|
+
}
|
|
11872
12472
|
|
|
11873
12473
|
.pf-v6-c-page > .pf-v6-c-masthead {
|
|
11874
12474
|
z-index: var(--pf-v6-c-page--c-masthead--ZIndex);
|
|
@@ -11897,7 +12497,8 @@ ul.pf-v6-c-list {
|
|
|
11897
12497
|
overflow-y: auto;
|
|
11898
12498
|
-webkit-overflow-scrolling: touch;
|
|
11899
12499
|
background-color: var(--pf-v6-c-page__sidebar--BackgroundColor);
|
|
11900
|
-
|
|
12500
|
+
opacity: var(--pf-v6-c-page__sidebar--Opacity);
|
|
12501
|
+
transition: var(--pf-v6-c-page__sidebar--TransitionProperty) var(--pf-v6-c-page__sidebar--TransitionDuration) var(--pf-v6-c-page__sidebar--TransitionTimingFunction);
|
|
11901
12502
|
transform: translateX(var(--pf-v6-c-page__sidebar--TranslateX)) translateZ(var(--pf-v6-c-page__sidebar--TranslateZ));
|
|
11902
12503
|
}
|
|
11903
12504
|
:where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-page__sidebar {
|
|
@@ -11906,6 +12507,7 @@ ul.pf-v6-c-list {
|
|
|
11906
12507
|
|
|
11907
12508
|
.pf-v6-c-page__sidebar.pf-m-expanded {
|
|
11908
12509
|
--pf-v6-c-page__sidebar--TranslateX: var(--pf-v6-c-page__sidebar--m-expanded--TranslateX);
|
|
12510
|
+
--pf-v6-c-page__sidebar--Opacity: var(--pf-v6-c-page__sidebar--m-expanded--Opacity);
|
|
11909
12511
|
box-shadow: var(--pf-v6-c-page__sidebar--BoxShadow);
|
|
11910
12512
|
}
|
|
11911
12513
|
@media screen and (min-width: 75rem) {
|
|
@@ -12191,7 +12793,7 @@ ul.pf-v6-c-list {
|
|
|
12191
12793
|
-webkit-overflow-scrolling: touch;
|
|
12192
12794
|
}
|
|
12193
12795
|
@media screen and (min-width: 75rem) {
|
|
12194
|
-
.pf-v6-c-masthead + .pf-v6-c-page__main-container, .pf-v6-c-page__sidebar.pf-m-collapsed + .pf-v6-c-page__main-container,
|
|
12796
|
+
.pf-v6-c-page.pf-m-no-sidebar, .pf-v6-c-masthead + .pf-v6-c-page__main-container, .pf-v6-c-page__sidebar.pf-m-collapsed + .pf-v6-c-page__main-container,
|
|
12195
12797
|
.pf-v6-c-masthead + .pf-v6-c-page__drawer,
|
|
12196
12798
|
.pf-v6-c-page__sidebar.pf-m-collapsed + .pf-v6-c-page__drawer {
|
|
12197
12799
|
--pf-v6-c-page__main-container--GridArea: var(--pf-v6-c-page--masthead--main-container--GridArea);
|
|
@@ -13166,6 +13768,22 @@ ul.pf-v6-c-list {
|
|
|
13166
13768
|
--pf-v6-c-progress__status-icon--Color: var(--pf-v6-c-progress--m-danger__status-icon--Color);
|
|
13167
13769
|
--pf-v6-c-progress--m-inside__measure--Color: var(--pf-v6-c-progress--m-danger--m-inside__measure--Color);
|
|
13168
13770
|
}
|
|
13771
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
13772
|
+
.pf-v6-c-progress.pf-m-danger .pf-v6-c-progress__bar {
|
|
13773
|
+
translate: var(--pf-v6-global--danger-jiggle--TranslateX, 0);
|
|
13774
|
+
animation-name: pf-v6-global-danger-jiggle-motion;
|
|
13775
|
+
animation-duration: var(--pf-v6-global--danger-jiggle--AnimationDuration--Transform);
|
|
13776
|
+
animation-timing-function: var(--pf-v6-global--danger-jiggle--AnimationTimingFunction--Transform);
|
|
13777
|
+
animation-fill-mode: both;
|
|
13778
|
+
}
|
|
13779
|
+
}
|
|
13780
|
+
.pf-v6-c-progress.pf-m-danger .pf-v6-c-progress__status-icon {
|
|
13781
|
+
--pf-v6-c-progress--TransitionDuration--Opacity: var(--pf-t--global--motion--duration--fade--default);
|
|
13782
|
+
--pf-v6-c-progress--TransitionTimingFunction--Opacity: var(--pf-t--global--motion--timing-function--default);
|
|
13783
|
+
animation-name: pf-v6-global-fade-in;
|
|
13784
|
+
animation-duration: var(--pf-v6-c-progress--TransitionDuration--Opacity);
|
|
13785
|
+
animation-timing-function: var(--pf-v6-c-progress--TransitionTimingFunction--Opacity);
|
|
13786
|
+
}
|
|
13169
13787
|
|
|
13170
13788
|
.pf-v6-c-progress__description {
|
|
13171
13789
|
grid-column: 1/2;
|
|
@@ -14343,8 +14961,8 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
14343
14961
|
--pf-v6-c-skeleton--after--LinearGradientColorStop1: var(--pf-t--global--background--color--secondary--default);
|
|
14344
14962
|
--pf-v6-c-skeleton--after--LinearGradientColorStop2: var(--pf-t--global--background--color--secondary--hover);
|
|
14345
14963
|
--pf-v6-c-skeleton--after--LinearGradientColorStop3: var(--pf-t--global--background--color--secondary--default);
|
|
14346
|
-
--pf-v6-c-skeleton--after--TranslateX:
|
|
14347
|
-
--pf-v6-c-skeleton--after--AnimationName: pf-v6-c-skeleton-loading;
|
|
14964
|
+
--pf-v6-c-skeleton--after--TranslateX: 0;
|
|
14965
|
+
--pf-v6-c-skeleton--after--AnimationName: pf-v6-c-skeleton-loading-reduced-motion;
|
|
14348
14966
|
--pf-v6-c-skeleton--after--AnimationDuration: 3s;
|
|
14349
14967
|
--pf-v6-c-skeleton--after--AnimationIterationCount: infinite;
|
|
14350
14968
|
--pf-v6-c-skeleton--after--AnimationTimingFunction: linear;
|
|
@@ -14376,6 +14994,15 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
14376
14994
|
--pf-v6-c-skeleton--m-height-75--Height: 75%;
|
|
14377
14995
|
--pf-v6-c-skeleton--m-height-100--Height: 100%;
|
|
14378
14996
|
}
|
|
14997
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
|
14998
|
+
.pf-v6-c-skeleton {
|
|
14999
|
+
--pf-v6-c-skeleton--after--LinearGradientColorStop1: var(--pf-t--global--background--color--secondary--default);
|
|
15000
|
+
--pf-v6-c-skeleton--after--LinearGradientColorStop2: var(--pf-t--global--background--color--secondary--hover);
|
|
15001
|
+
--pf-v6-c-skeleton--after--LinearGradientColorStop3: var(--pf-t--global--background--color--secondary--default);
|
|
15002
|
+
--pf-v6-c-skeleton--after--TranslateX: -100%;
|
|
15003
|
+
--pf-v6-c-skeleton--after--AnimationName: pf-v6-c-skeleton-loading;
|
|
15004
|
+
}
|
|
15005
|
+
}
|
|
14379
15006
|
|
|
14380
15007
|
.pf-v6-c-skeleton {
|
|
14381
15008
|
position: relative;
|
|
@@ -14496,6 +15123,17 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
14496
15123
|
transform: translateX(100%);
|
|
14497
15124
|
}
|
|
14498
15125
|
}
|
|
15126
|
+
@keyframes pf-v6-c-skeleton-loading-reduced-motion {
|
|
15127
|
+
0% {
|
|
15128
|
+
opacity: 0.25;
|
|
15129
|
+
}
|
|
15130
|
+
60% {
|
|
15131
|
+
opacity: 1;
|
|
15132
|
+
}
|
|
15133
|
+
100% {
|
|
15134
|
+
opacity: 0.25;
|
|
15135
|
+
}
|
|
15136
|
+
}
|
|
14499
15137
|
.pf-v6-c-skip-to-content {
|
|
14500
15138
|
--pf-v6-c-skip-to-content--InsetBlockStart: var(--pf-t--global--spacer--md);
|
|
14501
15139
|
--pf-v6-c-skip-to-content--ZIndex: var(--pf-t--global--z-index--2xl);
|
|
@@ -14743,6 +15381,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
14743
15381
|
--pf-v6-c-spinner--StrokeWidth: 10;
|
|
14744
15382
|
--pf-v6-c-spinner__path--StrokeWidth: var(--pf-v6-c-spinner--StrokeWidth);
|
|
14745
15383
|
--pf-v6-c-spinner__path--AnimationTimingFunction: ease-in-out;
|
|
15384
|
+
--pf-v6-c-spinner--m-xs--diameter: var(--pf-t--global--icon--size--sm);
|
|
14746
15385
|
--pf-v6-c-spinner--m-sm--diameter: var(--pf-t--global--icon--size--md);
|
|
14747
15386
|
--pf-v6-c-spinner--m-md--diameter: var(--pf-t--global--icon--size--lg);
|
|
14748
15387
|
--pf-v6-c-spinner--m-lg--diameter: var(--pf-t--global--icon--size--xl);
|
|
@@ -14759,6 +15398,10 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
14759
15398
|
.pf-v6-c-spinner.pf-m-inline {
|
|
14760
15399
|
--pf-v6-c-spinner--diameter: var(--pf-v6-c-spinner--m-inline--diameter);
|
|
14761
15400
|
}
|
|
15401
|
+
.pf-v6-c-spinner.pf-m-xs {
|
|
15402
|
+
--pf-v6-c-spinner--diameter: var(--pf-v6-c-spinner--m-xs--diameter);
|
|
15403
|
+
--pf-v6-c-spinner--StrokeWidth: 15;
|
|
15404
|
+
}
|
|
14762
15405
|
.pf-v6-c-spinner.pf-m-sm {
|
|
14763
15406
|
--pf-v6-c-spinner--diameter: var(--pf-v6-c-spinner--m-sm--diameter);
|
|
14764
15407
|
}
|
|
@@ -15040,6 +15683,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
15040
15683
|
--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
15041
15684
|
--pf-v6-c-table--cell--responsive--PaddingInlineEnd: 0;
|
|
15042
15685
|
--pf-v6-c-table--cell--responsive--PaddingInlineStart: 0;
|
|
15686
|
+
--pf-v6-c-table--cell--responsive--th--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
15043
15687
|
--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
15044
15688
|
--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
15045
15689
|
--pf-v6-c-table--m-compact__tr__td--responsive--PaddingBlockStart: var(--pf-t--global--spacer--xs);
|
|
@@ -15103,6 +15747,12 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
15103
15747
|
.pf-m-grid.pf-v6-c-table tbody:where(.pf-v6-c-table__tbody):first-of-type {
|
|
15104
15748
|
border-block-start: var(--pf-v6-c-table__tbody--responsive--border-width--base) solid var(--pf-v6-c-table--responsive--BorderColor);
|
|
15105
15749
|
}
|
|
15750
|
+
.pf-m-grid.pf-v6-c-table.pf-m-animate-expand {
|
|
15751
|
+
--pf-v6-c-table__expandable-row--Display: block;
|
|
15752
|
+
}
|
|
15753
|
+
.pf-m-grid.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th)[data-label]::before {
|
|
15754
|
+
content: none;
|
|
15755
|
+
}
|
|
15106
15756
|
.pf-m-grid.pf-v6-c-table.pf-m-expandable {
|
|
15107
15757
|
--pf-v6-c-table__tr--BorderBlockEndWidth: 0;
|
|
15108
15758
|
}
|
|
@@ -15159,12 +15809,15 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
15159
15809
|
grid-template-columns: 1fr minmax(0, 1.5fr);
|
|
15160
15810
|
align-items: start;
|
|
15161
15811
|
}
|
|
15812
|
+
.pf-m-grid.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label].pf-m-action {
|
|
15813
|
+
align-items: center;
|
|
15814
|
+
}
|
|
15162
15815
|
.pf-m-grid.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label] > * {
|
|
15163
15816
|
grid-column: 2;
|
|
15164
15817
|
}
|
|
15165
15818
|
.pf-m-grid.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label]::before {
|
|
15166
15819
|
position: revert;
|
|
15167
|
-
font-weight:
|
|
15820
|
+
font-weight: var(--pf-v6-c-table--cell--responsive--th--FontWeight);
|
|
15168
15821
|
text-align: start;
|
|
15169
15822
|
content: attr(data-label);
|
|
15170
15823
|
}
|
|
@@ -15403,6 +16056,12 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
15403
16056
|
.pf-m-grid-md.pf-v6-c-table tbody:where(.pf-v6-c-table__tbody):first-of-type {
|
|
15404
16057
|
border-block-start: var(--pf-v6-c-table__tbody--responsive--border-width--base) solid var(--pf-v6-c-table--responsive--BorderColor);
|
|
15405
16058
|
}
|
|
16059
|
+
.pf-m-grid-md.pf-v6-c-table.pf-m-animate-expand {
|
|
16060
|
+
--pf-v6-c-table__expandable-row--Display: block;
|
|
16061
|
+
}
|
|
16062
|
+
.pf-m-grid-md.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th)[data-label]::before {
|
|
16063
|
+
content: none;
|
|
16064
|
+
}
|
|
15406
16065
|
.pf-m-grid-md.pf-v6-c-table.pf-m-expandable {
|
|
15407
16066
|
--pf-v6-c-table__tr--BorderBlockEndWidth: 0;
|
|
15408
16067
|
}
|
|
@@ -15459,12 +16118,15 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
15459
16118
|
grid-template-columns: 1fr minmax(0, 1.5fr);
|
|
15460
16119
|
align-items: start;
|
|
15461
16120
|
}
|
|
16121
|
+
.pf-m-grid-md.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label].pf-m-action {
|
|
16122
|
+
align-items: center;
|
|
16123
|
+
}
|
|
15462
16124
|
.pf-m-grid-md.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label] > * {
|
|
15463
16125
|
grid-column: 2;
|
|
15464
16126
|
}
|
|
15465
16127
|
.pf-m-grid-md.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label]::before {
|
|
15466
16128
|
position: revert;
|
|
15467
|
-
font-weight:
|
|
16129
|
+
font-weight: var(--pf-v6-c-table--cell--responsive--th--FontWeight);
|
|
15468
16130
|
text-align: start;
|
|
15469
16131
|
content: attr(data-label);
|
|
15470
16132
|
}
|
|
@@ -15706,6 +16368,12 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
15706
16368
|
.pf-m-grid-lg.pf-v6-c-table tbody:where(.pf-v6-c-table__tbody):first-of-type {
|
|
15707
16369
|
border-block-start: var(--pf-v6-c-table__tbody--responsive--border-width--base) solid var(--pf-v6-c-table--responsive--BorderColor);
|
|
15708
16370
|
}
|
|
16371
|
+
.pf-m-grid-lg.pf-v6-c-table.pf-m-animate-expand {
|
|
16372
|
+
--pf-v6-c-table__expandable-row--Display: block;
|
|
16373
|
+
}
|
|
16374
|
+
.pf-m-grid-lg.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th)[data-label]::before {
|
|
16375
|
+
content: none;
|
|
16376
|
+
}
|
|
15709
16377
|
.pf-m-grid-lg.pf-v6-c-table.pf-m-expandable {
|
|
15710
16378
|
--pf-v6-c-table__tr--BorderBlockEndWidth: 0;
|
|
15711
16379
|
}
|
|
@@ -15762,12 +16430,15 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
15762
16430
|
grid-template-columns: 1fr minmax(0, 1.5fr);
|
|
15763
16431
|
align-items: start;
|
|
15764
16432
|
}
|
|
16433
|
+
.pf-m-grid-lg.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label].pf-m-action {
|
|
16434
|
+
align-items: center;
|
|
16435
|
+
}
|
|
15765
16436
|
.pf-m-grid-lg.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label] > * {
|
|
15766
16437
|
grid-column: 2;
|
|
15767
16438
|
}
|
|
15768
16439
|
.pf-m-grid-lg.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label]::before {
|
|
15769
16440
|
position: revert;
|
|
15770
|
-
font-weight:
|
|
16441
|
+
font-weight: var(--pf-v6-c-table--cell--responsive--th--FontWeight);
|
|
15771
16442
|
text-align: start;
|
|
15772
16443
|
content: attr(data-label);
|
|
15773
16444
|
}
|
|
@@ -16009,6 +16680,12 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
16009
16680
|
.pf-m-grid-xl.pf-v6-c-table tbody:where(.pf-v6-c-table__tbody):first-of-type {
|
|
16010
16681
|
border-block-start: var(--pf-v6-c-table__tbody--responsive--border-width--base) solid var(--pf-v6-c-table--responsive--BorderColor);
|
|
16011
16682
|
}
|
|
16683
|
+
.pf-m-grid-xl.pf-v6-c-table.pf-m-animate-expand {
|
|
16684
|
+
--pf-v6-c-table__expandable-row--Display: block;
|
|
16685
|
+
}
|
|
16686
|
+
.pf-m-grid-xl.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th)[data-label]::before {
|
|
16687
|
+
content: none;
|
|
16688
|
+
}
|
|
16012
16689
|
.pf-m-grid-xl.pf-v6-c-table.pf-m-expandable {
|
|
16013
16690
|
--pf-v6-c-table__tr--BorderBlockEndWidth: 0;
|
|
16014
16691
|
}
|
|
@@ -16065,12 +16742,15 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
16065
16742
|
grid-template-columns: 1fr minmax(0, 1.5fr);
|
|
16066
16743
|
align-items: start;
|
|
16067
16744
|
}
|
|
16745
|
+
.pf-m-grid-xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label].pf-m-action {
|
|
16746
|
+
align-items: center;
|
|
16747
|
+
}
|
|
16068
16748
|
.pf-m-grid-xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label] > * {
|
|
16069
16749
|
grid-column: 2;
|
|
16070
16750
|
}
|
|
16071
16751
|
.pf-m-grid-xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label]::before {
|
|
16072
16752
|
position: revert;
|
|
16073
|
-
font-weight:
|
|
16753
|
+
font-weight: var(--pf-v6-c-table--cell--responsive--th--FontWeight);
|
|
16074
16754
|
text-align: start;
|
|
16075
16755
|
content: attr(data-label);
|
|
16076
16756
|
}
|
|
@@ -16312,6 +16992,12 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
16312
16992
|
.pf-m-grid-2xl.pf-v6-c-table tbody:where(.pf-v6-c-table__tbody):first-of-type {
|
|
16313
16993
|
border-block-start: var(--pf-v6-c-table__tbody--responsive--border-width--base) solid var(--pf-v6-c-table--responsive--BorderColor);
|
|
16314
16994
|
}
|
|
16995
|
+
.pf-m-grid-2xl.pf-v6-c-table.pf-m-animate-expand {
|
|
16996
|
+
--pf-v6-c-table__expandable-row--Display: block;
|
|
16997
|
+
}
|
|
16998
|
+
.pf-m-grid-2xl.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th)[data-label]::before {
|
|
16999
|
+
content: none;
|
|
17000
|
+
}
|
|
16315
17001
|
.pf-m-grid-2xl.pf-v6-c-table.pf-m-expandable {
|
|
16316
17002
|
--pf-v6-c-table__tr--BorderBlockEndWidth: 0;
|
|
16317
17003
|
}
|
|
@@ -16368,12 +17054,15 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
16368
17054
|
grid-template-columns: 1fr minmax(0, 1.5fr);
|
|
16369
17055
|
align-items: start;
|
|
16370
17056
|
}
|
|
17057
|
+
.pf-m-grid-2xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label].pf-m-action {
|
|
17058
|
+
align-items: center;
|
|
17059
|
+
}
|
|
16371
17060
|
.pf-m-grid-2xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label] > * {
|
|
16372
17061
|
grid-column: 2;
|
|
16373
17062
|
}
|
|
16374
17063
|
.pf-m-grid-2xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label]::before {
|
|
16375
17064
|
position: revert;
|
|
16376
|
-
font-weight:
|
|
17065
|
+
font-weight: var(--pf-v6-c-table--cell--responsive--th--FontWeight);
|
|
16377
17066
|
text-align: start;
|
|
16378
17067
|
content: attr(data-label);
|
|
16379
17068
|
}
|
|
@@ -16651,6 +17340,15 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
16651
17340
|
--pf-v6-c-table__action--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
16652
17341
|
--pf-v6-c-table__action--PaddingInlineStart: var(--pf-t--global--spacer--sm);
|
|
16653
17342
|
--pf-v6-c-table__action--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
|
|
17343
|
+
--pf-v6-c-table__expandable-row--TransitionDuration--expand--slide: 0s;
|
|
17344
|
+
--pf-v6-c-table__expandable-row--TransitionDuration--expand--fade: var(--pf-t--global--motion--duration--fade--default);
|
|
17345
|
+
--pf-v6-c-table__expandable-row--TransitionDuration--collapse--slide: 0s;
|
|
17346
|
+
--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade: var(--pf-t--global--motion--duration--fade--short);
|
|
17347
|
+
--pf-v6-c-table__expandable-row--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
17348
|
+
--pf-v6-c-table__expandable-row--Opacity: 0;
|
|
17349
|
+
--pf-v6-c-table__tbody--m-expanded__expandable-row--Opacity: 1;
|
|
17350
|
+
--pf-v6-c-table__expandable-row--TranslateY: 0;
|
|
17351
|
+
--pf-v6-c-table__tbody--m-expanded__expandable-row--TranslateY: 0;
|
|
16654
17352
|
--pf-v6-c-table__expandable-row-content--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
16655
17353
|
--pf-v6-c-table__expandable-row-content--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
16656
17354
|
--pf-v6-c-table__expandable-row-content--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
@@ -16686,6 +17384,10 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
16686
17384
|
--pf-v6-c-table--m-compact__th--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
16687
17385
|
--pf-v6-c-table--m-compact--cell--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
16688
17386
|
--pf-v6-c-table--m-compact--cell--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
17387
|
+
--pf-v6-c-table__td--m-action--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
17388
|
+
--pf-v6-c-table__td--m-action--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
17389
|
+
--pf-v6-c-table--m-compact__td--m-action--PaddingBlockStart: var(--pf-t--global--spacer--xs);
|
|
17390
|
+
--pf-v6-c-table--m-compact__td--m-action--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
|
|
16689
17391
|
--pf-v6-c-table--m-compact__action--PaddingBlockStart: var(--pf-t--global--spacer--xs);
|
|
16690
17392
|
--pf-v6-c-table--m-compact__action--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
|
|
16691
17393
|
--pf-v6-c-table__expandable-row--m-expanded--BorderBlockEndColor: var(--pf-t--global--border--color--default);
|
|
@@ -16711,6 +17413,13 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
16711
17413
|
--pf-v6-c-table--m-sticky-header--ZIndex: calc(var(--pf-t--global--z-index--xs) + 1);
|
|
16712
17414
|
--pf-v6-c-table--m-sticky-header--border--ZIndex: calc(var(--pf-t--global--z-index--xs) + 2);
|
|
16713
17415
|
}
|
|
17416
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
|
17417
|
+
.pf-v6-c-table {
|
|
17418
|
+
--pf-v6-c-table__expandable-row--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
|
|
17419
|
+
--pf-v6-c-table__expandable-row--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
|
|
17420
|
+
--pf-v6-c-table__expandable-row--TranslateY: -.5rem;
|
|
17421
|
+
}
|
|
17422
|
+
}
|
|
16714
17423
|
|
|
16715
17424
|
.pf-v6-c-table {
|
|
16716
17425
|
width: 100%;
|
|
@@ -16907,6 +17616,10 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
16907
17616
|
.pf-v6-c-table tbody:where(.pf-v6-c-table__tbody) > tr:where(.pf-v6-c-table__tr) > :where(th, td) {
|
|
16908
17617
|
overflow-wrap: break-word;
|
|
16909
17618
|
}
|
|
17619
|
+
.pf-v6-c-table .pf-v6-c-table__td.pf-m-action {
|
|
17620
|
+
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table__td--m-action--PaddingBlockStart);
|
|
17621
|
+
--pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table__td--m-action--PaddingBlockEnd);
|
|
17622
|
+
}
|
|
16910
17623
|
.pf-v6-c-table .pf-v6-c-table__sort {
|
|
16911
17624
|
min-width: var(--pf-v6-c-table__sort--MinWidth);
|
|
16912
17625
|
}
|
|
@@ -16975,6 +17688,51 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
16975
17688
|
.pf-v6-c-table .pf-v6-c-button .pf-v6-c-table__sort-indicator {
|
|
16976
17689
|
--pf-v6-c-table__sort-indicator--MarginInlineStart: 0;
|
|
16977
17690
|
}
|
|
17691
|
+
.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody.pf-m-expanded > .pf-v6-c-table__control-row {
|
|
17692
|
+
border-block-end: 0;
|
|
17693
|
+
}
|
|
17694
|
+
.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row {
|
|
17695
|
+
display: var(--pf-v6-c-table__expandable-row--Display, revert);
|
|
17696
|
+
visibility: hidden;
|
|
17697
|
+
opacity: var(--pf-v6-c-table__expandable-row--Opacity);
|
|
17698
|
+
transition-delay: 0s, 0s, var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade), var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade);
|
|
17699
|
+
transition-timing-function: var(--pf-v6-c-table__expandable-row--TransitionTimingFunction);
|
|
17700
|
+
transition-duration: var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade), var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--slide), 0s, 0s;
|
|
17701
|
+
transition-property: opacity, translate, visibility, background-color;
|
|
17702
|
+
translate: 0 var(--pf-v6-c-table__expandable-row--TranslateY);
|
|
17703
|
+
}
|
|
17704
|
+
.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row[hidden] {
|
|
17705
|
+
display: var(--pf-v6-c-table__expandable-row--Display, revert);
|
|
17706
|
+
}
|
|
17707
|
+
.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row.pf-m-expanded {
|
|
17708
|
+
visibility: visible;
|
|
17709
|
+
opacity: var(--pf-v6-c-table__tbody--m-expanded__expandable-row--Opacity);
|
|
17710
|
+
transition-delay: 0s;
|
|
17711
|
+
transition-duration: var(--pf-v6-c-table__expandable-row--TransitionDuration--expand--fade), var(--pf-v6-c-table__expandable-row--TransitionDuration--expand--slide), 0s, 0s;
|
|
17712
|
+
translate: 0 var(--pf-v6-c-table__tbody--m-expanded__expandable-row--TranslateY);
|
|
17713
|
+
}
|
|
17714
|
+
.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row.pf-m-expanded > :is(.pf-v6-c-table__td, .pf-v6-c-table__th) > .pf-v6-c-table__expandable-row-content {
|
|
17715
|
+
max-height: 99999px;
|
|
17716
|
+
}
|
|
17717
|
+
.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th),
|
|
17718
|
+
.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th) > .pf-v6-c-table__expandable-row-content {
|
|
17719
|
+
padding: 0;
|
|
17720
|
+
overflow: hidden;
|
|
17721
|
+
transition-delay: var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade);
|
|
17722
|
+
transition-property: padding, max-height, overflow;
|
|
17723
|
+
}
|
|
17724
|
+
.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th) > .pf-v6-c-table__expandable-row-content {
|
|
17725
|
+
max-height: 0;
|
|
17726
|
+
}
|
|
17727
|
+
.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__tr:has(~ .pf-v6-c-table__expandable-row) {
|
|
17728
|
+
border-block-end: 0;
|
|
17729
|
+
}
|
|
17730
|
+
.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__control-row.pf-m-no-animate-expand ~ .pf-v6-c-table__expandable-row {
|
|
17731
|
+
--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade: 0s;
|
|
17732
|
+
--pf-v6-c-table__expandable-row--TransitionDuration--collapse--slide: 0s;
|
|
17733
|
+
--pf-v6-c-table__expandable-row--TransitionDuration--expand--fade: 0s;
|
|
17734
|
+
--pf-v6-c-table__expandable-row--TransitionDuration--expand--slide: 0s;
|
|
17735
|
+
}
|
|
16978
17736
|
|
|
16979
17737
|
[class*=pf-v6-c-table].pf-m-truncate {
|
|
16980
17738
|
--pf-v6-c-table--cell--MinWidth: var(--pf-v6-c-table--m-truncate--cell--MinWidth);
|
|
@@ -17284,7 +18042,9 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
17284
18042
|
:not(.pf-v6-c-table__control-row) ~ .pf-v6-c-table__expandable-row > .pf-v6-c-table__td {
|
|
17285
18043
|
padding-block-start: 0;
|
|
17286
18044
|
}
|
|
17287
|
-
|
|
18045
|
+
.pf-v6-c-table__control-row ~ .pf-v6-c-table__expandable-row.pf-m-expanded > :is(.pf-v6-c-table__th, .pf-v6-c-table__td):not(.pf-m-no-padding) {
|
|
18046
|
+
padding-block-start: var(--pf-v6-c-table--cell--PaddingBlockStart);
|
|
18047
|
+
}
|
|
17288
18048
|
.pf-v6-c-table__expandable-row td:where(.pf-v6-c-table__td).pf-m-no-padding,
|
|
17289
18049
|
.pf-v6-c-table__expandable-row th:where(.pf-v6-c-table__th).pf-m-no-padding {
|
|
17290
18050
|
padding-block-start: 0;
|
|
@@ -17295,6 +18055,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
17295
18055
|
.pf-v6-c-table__expandable-row td:where(.pf-v6-c-table__td).pf-m-no-padding .pf-v6-c-table__expandable-row-content,
|
|
17296
18056
|
.pf-v6-c-table__expandable-row th:where(.pf-v6-c-table__th).pf-m-no-padding .pf-v6-c-table__expandable-row-content {
|
|
17297
18057
|
padding: 0;
|
|
18058
|
+
border-radius: 0;
|
|
17298
18059
|
}
|
|
17299
18060
|
.pf-v6-c-table__expandable-row .pf-v6-c-table__expandable-row-content {
|
|
17300
18061
|
padding-block-start: var(--pf-v6-c-table__expandable-row-content--PaddingBlockStart);
|
|
@@ -17304,6 +18065,9 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
17304
18065
|
background-color: var(--pf-v6-c-table__expandable-row-content--BackgroundColor);
|
|
17305
18066
|
border-radius: var(--pf-v6-c-table__expandable-row-content--BorderRadius);
|
|
17306
18067
|
}
|
|
18068
|
+
.pf-v6-c-table__expandable-row .pf-v6-c-table__expandable-row-content.pf-m-no-background {
|
|
18069
|
+
background-color: transparent;
|
|
18070
|
+
}
|
|
17307
18071
|
.pf-v6-c-table__expandable-row.pf-m-expanded {
|
|
17308
18072
|
border-block-end-color: var(--pf-v6-c-table__expandable-row--m-expanded--BorderBlockEndColor);
|
|
17309
18073
|
border-block-end-width: var(--pf-v6-c-table--border-width--base);
|
|
@@ -17335,6 +18099,10 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
17335
18099
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-compact__action--PaddingBlockStart);
|
|
17336
18100
|
--pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table--m-compact__action--PaddingBlockEnd);
|
|
17337
18101
|
}
|
|
18102
|
+
.pf-v6-c-table.pf-m-compact .pf-v6-c-table__td.pf-m-action {
|
|
18103
|
+
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-compact__td--m-action--PaddingBlockStart);
|
|
18104
|
+
--pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table--m-compact__td--m-action--PaddingBlockEnd);
|
|
18105
|
+
}
|
|
17338
18106
|
.pf-v6-c-table.pf-m-compact .pf-v6-c-table__icon {
|
|
17339
18107
|
width: auto;
|
|
17340
18108
|
min-width: 0;
|
|
@@ -17372,6 +18140,9 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
17372
18140
|
background-color: var(--pf-v6-c-table__control-row--BackgroundColor);
|
|
17373
18141
|
border-block-end: var(--pf-v6-c-table__control-row--BorderBlockEndWidth) solid var(--pf-v6-c-table__control-row__tbody--BorderBlockEndColor);
|
|
17374
18142
|
}
|
|
18143
|
+
.pf-v6-c-table.pf-m-expandable .pf-v6-c-table__tbody.pf-m-expanded .pf-v6-c-table__control-row.pf-m-expanded {
|
|
18144
|
+
border-block-end: 0;
|
|
18145
|
+
}
|
|
17375
18146
|
|
|
17376
18147
|
.pf-v6-c-table__tr {
|
|
17377
18148
|
border-block-end: var(--pf-v6-c-table__tr--BorderBlockEndWidth) solid var(--pf-v6-c-table__tr--BorderBlockEndColor);
|
|
@@ -18429,25 +19200,28 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
18429
19200
|
--pf-v6-c-tabs__item--m-current__link--after--BorderColor: var(--pf-t--global--border--color--clicked);
|
|
18430
19201
|
--pf-v6-c-tabs__item--m-current__link--after--BorderWidth: var(--pf-t--global--border--width--extra-strong);
|
|
18431
19202
|
--pf-v6-c-tabs--link-accent--start: 0;
|
|
18432
|
-
--pf-v6-c-tabs--link-accent--length:
|
|
19203
|
+
--pf-v6-c-tabs--link-accent--length: 0;
|
|
18433
19204
|
--pf-v6-c-tabs--link-accent--color: var(--pf-v6-c-tabs__item--m-current__link--after--BorderColor);
|
|
18434
19205
|
--pf-v6-c-tabs--link-accent--border-size: var(--pf-v6-c-tabs__item--m-current__link--after--BorderWidth);
|
|
19206
|
+
--pf-v6-c-tabs--link-accent--TransitionDuration: var(--pf-t--global--motion--duration--md);
|
|
19207
|
+
--pf-v6-c-tabs--link-accent--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
|
|
18435
19208
|
--pf-v6-c-tabs--link-accent--InsetBlockStart: auto;
|
|
18436
19209
|
--pf-v6-c-tabs--link-accent--InsetBlockEnd: 0;
|
|
18437
|
-
--pf-v6-c-tabs--link-accent--InsetInlineStart:
|
|
19210
|
+
--pf-v6-c-tabs--link-accent--InsetInlineStart: 0;
|
|
18438
19211
|
--pf-v6-c-tabs--link-accent--Width: initial;
|
|
18439
19212
|
--pf-v6-c-tabs--link-accent--Height: 0;
|
|
18440
19213
|
--pf-v6-c-tabs--link-accent--BorderBlockEndWidth: var(--pf-v6-c-tabs--link-accent--border-size);
|
|
18441
19214
|
--pf-v6-c-tabs--link-accent--BorderInlineStartWidth: 0;
|
|
18442
|
-
--pf-v6-c-tabs--
|
|
19215
|
+
--pf-v6-c-tabs--link-accent--TranslateX: var(--pf-v6-c-tabs--link-accent--start);
|
|
19216
|
+
--pf-v6-c-tabs--link-accent--TranslateY: 0;
|
|
19217
|
+
--pf-v6-c-tabs--link-accent--TransformOrigin: 0 center;
|
|
19218
|
+
--pf-v6-c-tabs--m-vertical--link-accent--InsetBlockStart: 0;
|
|
18443
19219
|
--pf-v6-c-tabs--m-vertical--link-accent--InsetBlockEnd: auto;
|
|
18444
|
-
--pf-v6-c-tabs--m-vertical--link-accent--InsetInlineStart: 0;
|
|
18445
|
-
--pf-v6-c-tabs--m-vertical--link-accent--Width: 0;
|
|
18446
|
-
--pf-v6-c-tabs--m-vertical--link-accent--Height: initial;
|
|
18447
19220
|
--pf-v6-c-tabs--m-vertical--link-accent--BorderBlockEndWidth: 0;
|
|
18448
19221
|
--pf-v6-c-tabs--m-vertical--link-accent--BorderInlineStartWidth: var(--pf-v6-c-tabs--link-accent--border-size);
|
|
18449
|
-
--pf-v6-c-tabs--link-accent--
|
|
18450
|
-
--pf-v6-c-tabs--link-accent--
|
|
19222
|
+
--pf-v6-c-tabs--m-vertical--link-accent--TranslateX: 0;
|
|
19223
|
+
--pf-v6-c-tabs--m-vertical--link-accent--TranslateY: var(--pf-v6-c-tabs--link-accent--start);
|
|
19224
|
+
--pf-v6-c-tabs--m-vertical--link-accent--TransformOrigin: center 0;
|
|
18451
19225
|
--pf-v6-c-tabs__scroll-button--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
18452
19226
|
--pf-v6-c-tabs__scroll-button--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
18453
19227
|
--pf-v6-c-tabs__scroll-button--PaddingInlineStart: var(--pf-t--global--spacer--sm);
|
|
@@ -18607,11 +19381,13 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
18607
19381
|
--pf-v6-c-tabs__list--ScrollSnapTypeAxis: var(--pf-v6-c-tabs--m-vertical__list--ScrollSnapTypeAxis);
|
|
18608
19382
|
--pf-v6-c-tabs--link-accent--InsetBlockStart: var(--pf-v6-c-tabs--m-vertical--link-accent--InsetBlockStart);
|
|
18609
19383
|
--pf-v6-c-tabs--link-accent--InsetBlockEnd: var(--pf-v6-c-tabs--m-vertical--link-accent--InsetBlockEnd);
|
|
18610
|
-
--pf-v6-c-tabs--link-accent--InsetInlineStart: var(--pf-v6-c-tabs--m-vertical--link-accent--InsetInlineStart);
|
|
18611
19384
|
--pf-v6-c-tabs--link-accent--Width: var(--pf-v6-c-tabs--m-vertical--link-accent--Width);
|
|
18612
19385
|
--pf-v6-c-tabs--link-accent--Height: var(--pf-v6-c-tabs--m-vertical--link-accent--Height);
|
|
18613
19386
|
--pf-v6-c-tabs--link-accent--BorderBlockEndWidth: var(--pf-v6-c-tabs--m-vertical--link-accent--BorderBlockEndWidth);
|
|
18614
19387
|
--pf-v6-c-tabs--link-accent--BorderInlineStartWidth: var(--pf-v6-c-tabs--m-vertical--link-accent--BorderInlineStartWidth);
|
|
19388
|
+
--pf-v6-c-tabs--link-accent--TranslateX: var(--pf-v6-c-tabs--m-vertical--link-accent--TranslateX);
|
|
19389
|
+
--pf-v6-c-tabs--link-accent--TranslateY: var(--pf-v6-c-tabs--m-vertical--link-accent--TranslateY);
|
|
19390
|
+
--pf-v6-c-tabs--link-accent--TransformOrigin: var(--pf-v6-c-tabs--m-vertical--link-accent--TransformOrigin);
|
|
18615
19391
|
display: inline-flex;
|
|
18616
19392
|
flex-direction: column;
|
|
18617
19393
|
height: 100%;
|
|
@@ -19188,15 +19964,15 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
19188
19964
|
}
|
|
19189
19965
|
|
|
19190
19966
|
@media (prefers-reduced-motion: no-preference) {
|
|
19191
|
-
.pf-v6-c-tabs:not(.pf-m-box) .pf-v6-c-tabs__link::after,
|
|
19192
|
-
.pf-v6-c-tabs:not(.pf-m-box) .pf-v6-c-tabs__item.pf-m-action::after {
|
|
19967
|
+
.pf-v6-c-tabs.pf-m-animate-current:not(.pf-m-box) .pf-v6-c-tabs__link::after,
|
|
19968
|
+
.pf-v6-c-tabs.pf-m-animate-current:not(.pf-m-box) .pf-v6-c-tabs__item.pf-m-action::after {
|
|
19193
19969
|
content: revert;
|
|
19194
19970
|
}
|
|
19195
|
-
.pf-v6-c-tabs:not(.pf-m-box) .pf-v6-c-tabs__list::after {
|
|
19971
|
+
.pf-v6-c-tabs.pf-m-animate-current:not(.pf-m-box) .pf-v6-c-tabs__list::after {
|
|
19196
19972
|
position: absolute;
|
|
19197
|
-
inset-block-start: var(--pf-v6-c-tabs--link-accent--InsetBlockStart
|
|
19973
|
+
inset-block-start: var(--pf-v6-c-tabs--link-accent--InsetBlockStart);
|
|
19198
19974
|
inset-block-end: var(--pf-v6-c-tabs--link-accent--InsetBlockEnd);
|
|
19199
|
-
inset-inline-start: var(--pf-v6-c-tabs--link-accent--InsetInlineStart
|
|
19975
|
+
inset-inline-start: var(--pf-v6-c-tabs--link-accent--InsetInlineStart);
|
|
19200
19976
|
width: var(--pf-v6-c-tabs--link-accent--Width, var(--pf-v6-c-tabs--link-accent--length));
|
|
19201
19977
|
height: var(--pf-v6-c-tabs--link-accent--Height, var(--pf-v6-c-tabs--link-accent--length));
|
|
19202
19978
|
content: "";
|
|
@@ -19205,7 +19981,12 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
19205
19981
|
border-inline-start-width: var(--pf-v6-c-tabs--link-accent--BorderInlineStartWidth);
|
|
19206
19982
|
transition-timing-function: var(--pf-v6-c-tabs--link-accent--TransitionTimingFunction);
|
|
19207
19983
|
transition-duration: var(--pf-v6-c-tabs--link-accent--TransitionDuration);
|
|
19208
|
-
transition-property:
|
|
19984
|
+
transition-property: width, height, translate;
|
|
19985
|
+
transform-origin: var(--pf-v6-c-tabs--link-accent--TransformOrigin);
|
|
19986
|
+
translate: var(--pf-v6-c-tabs--link-accent--TranslateX) var(--pf-v6-c-tabs--link-accent--TranslateY);
|
|
19987
|
+
}
|
|
19988
|
+
:where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-tabs.pf-m-animate-current:not(.pf-m-box) .pf-v6-c-tabs__list::after {
|
|
19989
|
+
translate: calc(var(--pf-v6-c-tabs--link-accent--TranslateX) * var(--pf-v6-global--inverse--multiplier)) var(--pf-v6-c-tabs--link-accent--TranslateY);
|
|
19209
19990
|
}
|
|
19210
19991
|
.pf-v6-c-tabs.pf-m-initializing-accent {
|
|
19211
19992
|
--pf-v6-c-tabs--link-accent--TransitionDuration: 0;
|
|
@@ -19316,6 +20097,22 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
19316
20097
|
--pf-v6-c-text-input-group--m-hover--BorderColor: var(--pf-v6-c-text-input-group--m-hover--m-error--BorderColor);
|
|
19317
20098
|
--pf-v6-c-text-input-group__icon--m-status--Color: var(--pf-v6-c-text-input-group__main--m-error__icon--m-status--Color);
|
|
19318
20099
|
}
|
|
20100
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
20101
|
+
.pf-v6-c-text-input-group.pf-m-error {
|
|
20102
|
+
translate: var(--pf-v6-global--danger-jiggle--TranslateX, 0);
|
|
20103
|
+
animation-name: pf-v6-global-danger-jiggle-motion;
|
|
20104
|
+
animation-duration: var(--pf-v6-global--danger-jiggle--AnimationDuration--Transform);
|
|
20105
|
+
animation-timing-function: var(--pf-v6-global--danger-jiggle--AnimationTimingFunction--Transform);
|
|
20106
|
+
animation-fill-mode: both;
|
|
20107
|
+
}
|
|
20108
|
+
}
|
|
20109
|
+
.pf-v6-c-text-input-group.pf-m-error .pf-v6-c-text-input-group__icon.pf-m-status {
|
|
20110
|
+
--pf-v6-c-text-input-group--TransitionDuration--Opacity: var(--pf-t--global--motion--duration--fade--default);
|
|
20111
|
+
--pf-v6-c-text-input-group--TransitionTimingFunction--Opacity: var(--pf-t--global--motion--timing-function--default);
|
|
20112
|
+
animation-name: pf-v6-global-fade-in;
|
|
20113
|
+
animation-duration: var(--pf-v6-c-text-input-group--TransitionDuration--Opacity);
|
|
20114
|
+
animation-timing-function: var(--pf-v6-c-text-input-group--TransitionTimingFunction--Opacity);
|
|
20115
|
+
}
|
|
19319
20116
|
.pf-v6-c-text-input-group:hover {
|
|
19320
20117
|
--pf-v6-c-text-input-group--BorderColor: var(--pf-v6-c-text-input-group--m-hover--BorderColor);
|
|
19321
20118
|
}
|
|
@@ -19547,6 +20344,10 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
19547
20344
|
--pf-v6-c-timestamp--m-help-text--TextDecorationStyle: var(--pf-v6-c-timestamp--m-help-text--hover--TextDecorationStyle);
|
|
19548
20345
|
}
|
|
19549
20346
|
|
|
20347
|
+
.pf-v6-c-timestamp__text {
|
|
20348
|
+
text-decoration: inherit;
|
|
20349
|
+
}
|
|
20350
|
+
|
|
19550
20351
|
.pf-v6-c-title {
|
|
19551
20352
|
--pf-v6-c-title--FontFamily: var(--pf-t--global--font--family--heading);
|
|
19552
20353
|
--pf-v6-c-title--m-4xl--LineHeight: var(--pf-t--global--font--line-height--heading);
|
|
@@ -21821,6 +22622,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
21821
22622
|
grid-auto-flow: column;
|
|
21822
22623
|
align-items: baseline;
|
|
21823
22624
|
min-width: var(--pf-v6-c-truncate--MinWidth);
|
|
22625
|
+
text-decoration: inherit;
|
|
21824
22626
|
}
|
|
21825
22627
|
.pf-v6-c-truncate.pf-m-fixed {
|
|
21826
22628
|
display: inline;
|
|
@@ -21917,6 +22719,17 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
21917
22719
|
--pf-v6-c-tree-view__node-container--Display: contents;
|
|
21918
22720
|
--pf-v6-c-tree-view__node-content--RowGap: var(--pf-t--global--spacer--sm);
|
|
21919
22721
|
--pf-v6-c-tree-view__node-content--Overflow: visible;
|
|
22722
|
+
--pf-v6-c-tree-view__list--TransitionDuration--expand--slide: 0s;
|
|
22723
|
+
--pf-v6-c-tree-view__list--TransitionDuration--expand--fade: var(--pf-t--global--motion--duration--fade--default);
|
|
22724
|
+
--pf-v6-c-tree-view__list--TransitionDuration--collapse--slide: 0s;
|
|
22725
|
+
--pf-v6-c-tree-view__list--TransitionDuration--collapse--fade: var(--pf-t--global--motion--duration--fade--short);
|
|
22726
|
+
--pf-v6-c-tree-view__list--TransitionDuration--slide: var(--pf-v6-c-tree-view__list--TransitionDuration--collapse--slide);
|
|
22727
|
+
--pf-v6-c-tree-view__list--TransitionDuration--fade: var(--pf-v6-c-tree-view__list--TransitionDuration--collapse--fade);
|
|
22728
|
+
--pf-v6-c-tree-view__list--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
22729
|
+
--pf-v6-c-tree-view__list--Opacity: 0;
|
|
22730
|
+
--pf-v6-c-tree-view--m-expanded__list--Opacity: 1;
|
|
22731
|
+
--pf-v6-c-tree-view__list--TranslateY: 0;
|
|
22732
|
+
--pf-v6-c-tree-view--m-expanded__list--TranslateY: 0;
|
|
21920
22733
|
--pf-v6-c-tree-view__list-item__list-item__node-toggle--InsetBlockStart: var(--pf-v6-c-tree-view__node--PaddingBlockStart);
|
|
21921
22734
|
--pf-v6-c-tree-view__list-item__list-item__node-toggle--InsetInlineStart: var(--pf-v6-c-tree-view__node--PaddingInlineStart);
|
|
21922
22735
|
--pf-v6-c-tree-view__list-item__list-item__node-toggle--TranslateX: -100%;
|
|
@@ -21932,6 +22745,8 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
21932
22745
|
--pf-v6-c-tree-view__node-toggle--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
21933
22746
|
--pf-v6-c-tree-view__node-toggle--MarginBlockStart: calc(var(--pf-v6-c-tree-view__node-toggle--PaddingBlockStart) * -1);
|
|
21934
22747
|
--pf-v6-c-tree-view__node-toggle--MarginBlockEnd: calc(var(--pf-v6-c-tree-view__node-toggle--PaddingBlockStart) * -1);
|
|
22748
|
+
--pf-v6-c-tree-view__node-toggle-icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
|
|
22749
|
+
--pf-v6-c-tree-view__node-toggle-icon--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
21935
22750
|
--pf-v6-c-tree-view__node-check--MarginInlineEnd: var(--pf-t--global--spacer--sm);
|
|
21936
22751
|
--pf-v6-c-tree-view__node-count--MarginInlineStart: var(--pf-t--global--spacer--sm);
|
|
21937
22752
|
--pf-v6-c-tree-view__search--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
@@ -22007,6 +22822,13 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
22007
22822
|
--pf-v6-c-tree-view--m-compact--m-no-background__node--nested--PaddingBlockEnd: 0;
|
|
22008
22823
|
--pf-v6-c-tree-view--m-compact--m-no-background__node--before--InsetBlockStart: calc(var(--pf-v6-c-tree-view--m-compact__node-container--nested--PaddingBlockStart) + var(--pf-v6-c-tree-view--m-compact__node--nested--PaddingBlockStart) + 0.25rem);
|
|
22009
22824
|
}
|
|
22825
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
|
22826
|
+
.pf-v6-c-tree-view {
|
|
22827
|
+
--pf-v6-c-tree-view__list--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
|
|
22828
|
+
--pf-v6-c-tree-view__list--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
|
|
22829
|
+
--pf-v6-c-tree-view__list--TranslateY: -.5rem;
|
|
22830
|
+
}
|
|
22831
|
+
}
|
|
22010
22832
|
|
|
22011
22833
|
.pf-v6-c-tree-view.pf-m-compact .pf-v6-c-tree-view__list-item, .pf-v6-c-tree-view.pf-m-guides .pf-v6-c-tree-view__list-item {
|
|
22012
22834
|
position: relative;
|
|
@@ -22122,12 +22944,23 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
22122
22944
|
display: inline-block;
|
|
22123
22945
|
min-width: var(--pf-v6-c-tree-view__node-toggle-icon--MinWidth);
|
|
22124
22946
|
text-align: center;
|
|
22947
|
+
transition: transform var(--pf-v6-c-tree-view__node-toggle-icon--TransitionDuration) var(--pf-v6-c-tree-view__node-toggle-icon--TransitionTimingFunction);
|
|
22125
22948
|
transform: rotate(var(--pf-v6-c-tree-view__node-toggle-icon--Rotate));
|
|
22126
22949
|
}
|
|
22127
22950
|
:where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-tree-view__node-toggle-icon {
|
|
22128
22951
|
scale: -1 1;
|
|
22129
22952
|
}
|
|
22130
22953
|
|
|
22954
|
+
.pf-v6-c-tree-view__list-item .pf-v6-c-tree-view__list {
|
|
22955
|
+
max-height: 0;
|
|
22956
|
+
visibility: hidden;
|
|
22957
|
+
opacity: var(--pf-v6-c-tree-view__list--Opacity);
|
|
22958
|
+
transition-delay: 0s, 0s, var(--pf-v6-c-tree-view__list--TransitionDuration--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--fade);
|
|
22959
|
+
transition-timing-function: var(--pf-v6-c-tree-view__list--TransitionTimingFunction);
|
|
22960
|
+
transition-duration: var(--pf-v6-c-tree-view__list--TransitionDuration--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--slide), 0s, 0s;
|
|
22961
|
+
transition-property: opacity, translate, visibility, max-height;
|
|
22962
|
+
translate: 0 var(--pf-v6-c-tree-view__list--TranslateY);
|
|
22963
|
+
}
|
|
22131
22964
|
.pf-v6-c-tree-view__list-item .pf-v6-c-tree-view__list-item {
|
|
22132
22965
|
--pf-v6-c-tree-view__node-toggle-icon--Rotate: var(--pf-v6-c-tree-view__node-toggle-icon--base--Rotate);
|
|
22133
22966
|
--pf-v6-c-tree-view__node-toggle--Color: var(--pf-v6-c-tree-view__node-toggle--Color--base);
|
|
@@ -22136,6 +22969,14 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
22136
22969
|
--pf-v6-c-tree-view__node-toggle--Color: var(--pf-v6-c-tree-view__list-item--m-expanded__node-toggle--Color);
|
|
22137
22970
|
--pf-v6-c-tree-view__node-toggle-icon--Rotate: var(--pf-v6-c-tree-view__list-item--m-expanded__node-toggle-icon--Rotate);
|
|
22138
22971
|
}
|
|
22972
|
+
.pf-v6-c-tree-view__list-item.pf-m-expanded > .pf-v6-c-tree-view__list {
|
|
22973
|
+
max-height: 99999px;
|
|
22974
|
+
visibility: revert;
|
|
22975
|
+
opacity: var(--pf-v6-c-tree-view--m-expanded__list--Opacity);
|
|
22976
|
+
transition-delay: 0s;
|
|
22977
|
+
transition-duration: var(--pf-v6-c-tree-view__list--TransitionDuration--expand--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--expand--slide), 0s, 0s;
|
|
22978
|
+
translate: 0 var(--pf-v6-c-tree-view--m-expanded__list--TranslateY);
|
|
22979
|
+
}
|
|
22139
22980
|
|
|
22140
22981
|
.pf-v6-c-tree-view__node,
|
|
22141
22982
|
.pf-v6-c-tree-view__node-container {
|