@patternfly/patternfly 6.0.0-alpha.152 → 6.0.0-alpha.153
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/Alert/alert-group.css +2 -1
- package/components/Alert/alert-group.scss +3 -1
- package/components/Brand/brand.css +4 -1
- package/components/Brand/brand.scss +3 -1
- package/components/Button/button.scss +1 -1
- package/components/CalendarMonth/calendar-month.css +1 -1
- package/components/CalendarMonth/calendar-month.scss +1 -2
- package/components/Card/card.scss +0 -1
- package/components/DataList/data-list.scss +0 -1
- package/components/FormControl/form-control.scss +0 -1
- package/components/HelperText/helper-text.scss +1 -0
- package/components/InlineEdit/inline-edit.scss +1 -1
- package/components/List/list.css +4 -1
- package/components/List/list.scss +3 -1
- package/components/LogViewer/log-viewer.css +4 -1
- package/components/LogViewer/log-viewer.scss +3 -1
- package/components/Page/page.scss +1 -2
- package/components/Popover/popover.css +4 -1
- package/components/Popover/popover.scss +3 -1
- package/components/Table/table-grid.css +1 -1
- package/components/Table/table-grid.scss +1 -1
- package/components/Wizard/wizard.scss +3 -3
- package/components/_index.css +20 -7
- package/package.json +1 -1
- package/patternfly-no-globals.css +20 -7
- package/patternfly.css +20 -7
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.pf-v6-c-alert-group {
|
|
1
|
+
:where(:root, .pf-v6-c-alert-group) {
|
|
2
2
|
--pf-v6-c-alert-group__item--MarginBlockStart: var(--pf-t--global--spacer--md);
|
|
3
3
|
--pf-v6-c-alert-group--m-toast--InsetBlockStart: var(--pf-t--global--spacer--2xl);
|
|
4
4
|
--pf-v6-c-alert-group--m-toast--InsetInlineEnd: var(--pf-t--global--spacer--xl);
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
--pf-v6-c-alert-group__overflow-button--active--Color: var(--pf-t--global--text--color--link--hover);
|
|
22
22
|
--pf-v6-c-alert-group__overflow-button--active--BoxShadow: var(--pf-t--global--box-shadow--lg), var(--pf-t--global--box-shadow--lg--bottom);
|
|
23
23
|
}
|
|
24
|
+
|
|
24
25
|
.pf-v6-c-alert-group > * + * {
|
|
25
26
|
margin-block-start: var(--pf-v6-c-alert-group__item--MarginBlockStart);
|
|
26
27
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@use '../../sass-utilities' as *;
|
|
2
2
|
|
|
3
3
|
// Tabs
|
|
4
|
-
.#{$alert-group} {
|
|
4
|
+
:where(:root, .#{$alert-group}) {
|
|
5
5
|
// Alert group variables
|
|
6
6
|
--#{$alert-group}__item--MarginBlockStart: var(--pf-t--global--spacer--md);
|
|
7
7
|
|
|
@@ -28,7 +28,9 @@
|
|
|
28
28
|
--#{$alert-group}__overflow-button--focus--BoxShadow: var(--pf-t--global--box-shadow--lg), var(--pf-t--global--box-shadow--lg--bottom);
|
|
29
29
|
--#{$alert-group}__overflow-button--active--Color: var(--pf-t--global--text--color--link--hover);
|
|
30
30
|
--#{$alert-group}__overflow-button--active--BoxShadow: var(--pf-t--global--box-shadow--lg), var(--pf-t--global--box-shadow--lg--bottom);
|
|
31
|
+
}
|
|
31
32
|
|
|
33
|
+
.#{$alert-group} {
|
|
32
34
|
// Spacing between alerts
|
|
33
35
|
> * + * {
|
|
34
36
|
margin-block-start: var(--#{$alert-group}__item--MarginBlockStart);
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
-
.pf-v6-c-brand {
|
|
1
|
+
:where(:root, .pf-v6-c-brand) {
|
|
2
2
|
--pf-v6-c-brand--Width: auto;
|
|
3
3
|
--pf-v6-c-brand--Height: auto;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.pf-v6-c-brand {
|
|
4
7
|
width: var(--pf-v6-c-brand--Width--base);
|
|
5
8
|
height: var(--pf-v6-c-brand--Height--base);
|
|
6
9
|
--pf-v6-c-brand--Width--base: var(--pf-v6-c-brand--Width);
|
|
@@ -2,10 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
$pf-v6-c-brand--breakpoint-map: build-breakpoint-map();
|
|
4
4
|
|
|
5
|
-
.#{$brand} {
|
|
5
|
+
:where(:root, .#{$brand}) {
|
|
6
6
|
--#{$brand}--Width: auto;
|
|
7
7
|
--#{$brand}--Height: auto;
|
|
8
|
+
}
|
|
8
9
|
|
|
10
|
+
.#{$brand} {
|
|
9
11
|
width: var(--#{$brand}--Width--base);
|
|
10
12
|
height: var(--#{$brand}--Height--base);
|
|
11
13
|
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
--#{$button}--hover--BorderColor: transparent;
|
|
25
25
|
--#{$button}--hover--BorderWidth: var(--pf-t--global--border--width--button--hover);
|
|
26
26
|
--#{$button}--hover--TextDecoration: none;
|
|
27
|
-
|
|
27
|
+
|
|
28
28
|
// Clicked
|
|
29
29
|
--#{$button}--m-clicked--BackgroundColor: transparent;
|
|
30
30
|
--#{$button}--m-clicked--BorderColor: transparent;
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
--pf-v6-c-calendar-month__date--after--focus--OutlineOffset: -2px;
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
-
|
|
61
|
+
.pf-v6-c-calendar-month {
|
|
62
62
|
display: inline-flex;
|
|
63
63
|
flex-direction: column;
|
|
64
64
|
padding-block-start: var(--pf-v6-c-calendar-month--PaddingBlockStart);
|
|
@@ -24,7 +24,6 @@
|
|
|
24
24
|
--#{$calendar-month}__day--FontWeight: var(--pf-t--global--font--weight--body);
|
|
25
25
|
--#{$calendar-month}__day--Color: var(--pf-t--global--text--color--regular);
|
|
26
26
|
|
|
27
|
-
|
|
28
27
|
// dates td
|
|
29
28
|
--#{$calendar-month}__dates-cell--PaddingBlockStart: #{pf-size-prem(2px)};
|
|
30
29
|
--#{$calendar-month}__dates-cell--PaddingInlineEnd: #{pf-size-prem(2px)};
|
|
@@ -71,7 +70,7 @@
|
|
|
71
70
|
--#{$calendar-month}__date--after--focus--OutlineOffset: -2px;
|
|
72
71
|
}
|
|
73
72
|
|
|
74
|
-
|
|
73
|
+
.#{$calendar-month} {
|
|
75
74
|
display: inline-flex;
|
|
76
75
|
flex-direction: column;
|
|
77
76
|
padding-block-start: var(--#{$calendar-month}--PaddingBlockStart);
|
|
@@ -91,7 +91,6 @@
|
|
|
91
91
|
--#{$data-list}__check--Height: calc(var(--#{$data-list}--FontSize) * var(--#{$data-list}--LineHeight));
|
|
92
92
|
--#{$data-list}__check--MarginBlockStart: #{pf-size-prem(-1px)}; // slightly offset input
|
|
93
93
|
|
|
94
|
-
|
|
95
94
|
// actions
|
|
96
95
|
--#{$data-list}__item-action--Display: flex;
|
|
97
96
|
--#{$data-list}__item-action--PaddingBlockStart: var(--pf-t--global--spacer--lg);
|
package/components/List/list.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.pf-v6-c-list {
|
|
1
|
+
:where(:root, .pf-v6-c-list) {
|
|
2
2
|
--pf-v6-c-list--PaddingInlineStart: var(--pf-t--global--spacer--lg);
|
|
3
3
|
--pf-v6-c-list--nested--MarginBlockStart: var(--pf-t--global--spacer--sm);
|
|
4
4
|
--pf-v6-c-list--nested--MarginInlineStart: var(--pf-t--global--spacer--sm);
|
|
@@ -16,6 +16,9 @@
|
|
|
16
16
|
--pf-v6-c-list--m-icon-lg__item-icon--MinWidth: var(--pf-t--global--icon--size--lg);
|
|
17
17
|
--pf-v6-c-list--m-icon-lg__item-icon--MarginInlineEnd: var(--pf-t--global--spacer--md);
|
|
18
18
|
--pf-v6-c-list--m-icon-lg__item-icon--FontSize: var(--pf-t--global--icon--size--lg);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.pf-v6-c-list {
|
|
19
22
|
padding-inline-start: var(--pf-v6-c-list--PaddingInlineStart);
|
|
20
23
|
}
|
|
21
24
|
.pf-v6-c-list ol,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@use '../../sass-utilities' as *;
|
|
2
2
|
|
|
3
|
-
.#{$list} {
|
|
3
|
+
:where(:root, .#{$list}) {
|
|
4
4
|
// list
|
|
5
5
|
--#{$list}--PaddingInlineStart: var(--pf-t--global--spacer--lg);
|
|
6
6
|
--#{$list}--nested--MarginBlockStart: var(--pf-t--global--spacer--sm);
|
|
@@ -25,7 +25,9 @@
|
|
|
25
25
|
--#{$list}--m-icon-lg__item-icon--MinWidth: var(--pf-t--global--icon--size--lg);
|
|
26
26
|
--#{$list}--m-icon-lg__item-icon--MarginInlineEnd: var(--pf-t--global--spacer--md);
|
|
27
27
|
--#{$list}--m-icon-lg__item-icon--FontSize: var(--pf-t--global--icon--size--lg);
|
|
28
|
+
}
|
|
28
29
|
|
|
30
|
+
.#{$list} {
|
|
29
31
|
padding-inline-start: var(--#{$list}--PaddingInlineStart);
|
|
30
32
|
|
|
31
33
|
ol,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.pf-v6-c-log-viewer {
|
|
1
|
+
:where(:root, .pf-v6-c-log-viewer) {
|
|
2
2
|
--pf-v6-c-log-viewer--Height: 100%;
|
|
3
3
|
--pf-v6-c-log-viewer--MaxHeight: auto;
|
|
4
4
|
--pf-v6-c-log-viewer--m-line-numbers__index--Display: inline;
|
|
@@ -45,6 +45,9 @@
|
|
|
45
45
|
--pf-v6-c-log-viewer--c-toolbar__group--m-toggle-group--spacer: 0;
|
|
46
46
|
--pf-v6-c-log-viewer--c-toolbar__group--m-toggle-group--m-show--spacer: var(--pf-t--global--spacer--sm);
|
|
47
47
|
--pf-v6-c-log-viewer--m-dark__main--BorderWidth: 0;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.pf-v6-c-log-viewer {
|
|
48
51
|
display: flex;
|
|
49
52
|
flex-direction: column;
|
|
50
53
|
height: var(--pf-v6-c-log-viewer--Height);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@use '../../sass-utilities' as *;
|
|
2
2
|
|
|
3
|
-
.#{$log-viewer} {
|
|
3
|
+
:where(:root, .#{$log-viewer}) {
|
|
4
4
|
--#{$log-viewer}--Height: 100%;
|
|
5
5
|
--#{$log-viewer}--MaxHeight: auto;
|
|
6
6
|
--#{$log-viewer}--m-line-numbers__index--Display: inline;
|
|
@@ -67,7 +67,9 @@
|
|
|
67
67
|
|
|
68
68
|
// Dark theme
|
|
69
69
|
--#{$log-viewer}--m-dark__main--BorderWidth: 0;
|
|
70
|
+
}
|
|
70
71
|
|
|
72
|
+
.#{$log-viewer} {
|
|
71
73
|
&.pf-m-dark {
|
|
72
74
|
--#{$log-viewer}__main--BorderWidth: var(--#{$log-viewer}--m-dark__main--BorderWidth);
|
|
73
75
|
|
|
@@ -17,7 +17,6 @@ $pf-page-v6--height-breakpoint-map: build-breakpoint-map("base", "sm", "md", "lg
|
|
|
17
17
|
--#{$page}--inset: var(--#{$page}--xl--inset);
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
|
|
21
20
|
// Sidebar
|
|
22
21
|
--#{$page}__sidebar--ZIndex: var(--pf-t--global--z-index--sm);
|
|
23
22
|
--#{$page}__sidebar--Width: #{pf-size-prem(290px)};
|
|
@@ -124,7 +123,7 @@ $pf-page-v6--height-breakpoint-map: build-breakpoint-map("base", "sm", "md", "lg
|
|
|
124
123
|
--#{$page}__main-wizard--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
125
124
|
--#{$page}__main-wizard--BorderBlockStartColor: var(--pf-t--global--border--color--default);
|
|
126
125
|
--#{$page}__main-wizard--BorderBlockStartWidth: var(--pf-t--global--border--width--button--default);
|
|
127
|
-
|
|
126
|
+
}
|
|
128
127
|
|
|
129
128
|
.#{$page} {
|
|
130
129
|
// Base
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.pf-v6-c-popover {
|
|
1
|
+
:where(:root, .pf-v6-c-popover) {
|
|
2
2
|
--pf-v6-c-popover--FontSize: var(--pf-t--global--font--size--body--sm);
|
|
3
3
|
--pf-v6-c-popover--MinWidth: calc(var(--pf-v6-c-popover__content--PaddingInlineStart) + var(--pf-v6-c-popover__content--PaddingInlineEnd) + 18.75rem);
|
|
4
4
|
--pf-v6-c-popover--MaxWidth: calc(var(--pf-v6-c-popover__content--PaddingInlineStart) + var(--pf-v6-c-popover__content--PaddingInlineEnd) + 18.75rem);
|
|
@@ -47,6 +47,9 @@
|
|
|
47
47
|
--pf-v6-c-popover__title-icon--Color: var(--pf-t--global--icon--color--regular);
|
|
48
48
|
--pf-v6-c-popover__title-icon--FontSize: var(--pf-t--global--font--size--heading--xs);
|
|
49
49
|
--pf-v6-c-popover__footer--MarginBlockStart: var(--pf-t--global--spacer--md);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.pf-v6-c-popover {
|
|
50
53
|
position: relative;
|
|
51
54
|
min-width: var(--pf-v6-c-popover--MinWidth);
|
|
52
55
|
max-width: var(--pf-v6-c-popover--MaxWidth);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@use '../../sass-utilities' as *;
|
|
2
2
|
|
|
3
|
-
.#{$popover} {
|
|
3
|
+
:where(:root, .#{$popover}) {
|
|
4
4
|
// Component
|
|
5
5
|
--#{$popover}--FontSize: var(--pf-t--global--font--size--body--sm);
|
|
6
6
|
--#{$popover}--MinWidth: calc(var(--#{$popover}__content--PaddingInlineStart) + var(--#{$popover}__content--PaddingInlineEnd) + #{pf-size-prem(300px)});
|
|
@@ -67,7 +67,9 @@
|
|
|
67
67
|
|
|
68
68
|
// Footer
|
|
69
69
|
--#{$popover}__footer--MarginBlockStart: var(--pf-t--global--spacer--md);
|
|
70
|
+
}
|
|
70
71
|
|
|
72
|
+
.#{$popover} {
|
|
71
73
|
position: relative;
|
|
72
74
|
min-width: var(--#{$popover}--MinWidth);
|
|
73
75
|
max-width: var(--#{$popover}--MaxWidth);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.pf-v6-c-table[class*=pf-m-grid] {
|
|
1
|
+
:where(:root, .pf-v6-c-table[class*=pf-m-grid]) {
|
|
2
2
|
--pf-v6-c-table--responsive--BorderColor: var(--pf-t--global--border--color--default);
|
|
3
3
|
--pf-v6-c-table__tbody--responsive--border-width--base: var(--pf-t--global--border--width--divider--default);
|
|
4
4
|
--pf-v6-c-table__tbody--after--border-width--base: var(--pf-t--global--border--width--extra-strong);
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
--#{$wizard}__toggle--m-danger__nav-link-status-icon--Color: var(--pf-t--global--icon--color--status--danger--default);
|
|
109
109
|
--#{$wizard}__toggle-status-icon--InsetBlockStart: 2px; // not spacer-based but needed to align
|
|
110
110
|
--#{$wizard}__toggle-status-icon--FontSize: var(--pf-t--global--icon--size--font--xl);
|
|
111
|
-
|
|
111
|
+
|
|
112
112
|
// Toggle list
|
|
113
113
|
--#{$wizard}__toggle-list--MarginInlineEnd: var(--pf-t--global--spacer--sm);
|
|
114
114
|
--#{$wizard}__toggle-list--MarginBlockEnd: calc(var(--#{$wizard}__toggle-list-item--MarginBlockEnd) * -1);
|
|
@@ -145,7 +145,7 @@
|
|
|
145
145
|
// Nav item
|
|
146
146
|
--#{$wizard}__nav-item--MarginBlockStart: var(--pf-t--global--spacer--md);
|
|
147
147
|
|
|
148
|
-
// Outer wrap
|
|
148
|
+
// Outer wrap
|
|
149
149
|
--#{$wizard}__outer-wrap--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
150
150
|
--#{$wizard}__outer-wrap--lg--PaddingInlineStart: var(--#{$wizard}__nav--Width);
|
|
151
151
|
--#{$wizard}__outer-wrap--MinHeight: #{pf-size-prem(250px)};
|
|
@@ -477,7 +477,7 @@
|
|
|
477
477
|
&::before {
|
|
478
478
|
display: none;
|
|
479
479
|
}
|
|
480
|
-
}
|
|
480
|
+
}
|
|
481
481
|
|
|
482
482
|
&:where(:hover, :focus) {
|
|
483
483
|
--#{$wizard}__nav-link--Color: var(--#{$wizard}__nav-link--hover--Color);
|
package/components/_index.css
CHANGED
|
@@ -582,7 +582,7 @@
|
|
|
582
582
|
margin-inline-end: var(--pf-v6-c-alert__action-group__c-button--not-last-child--MarginInlineEnd);
|
|
583
583
|
}
|
|
584
584
|
|
|
585
|
-
.pf-v6-c-alert-group {
|
|
585
|
+
:where(:root, .pf-v6-c-alert-group) {
|
|
586
586
|
--pf-v6-c-alert-group__item--MarginBlockStart: var(--pf-t--global--spacer--md);
|
|
587
587
|
--pf-v6-c-alert-group--m-toast--InsetBlockStart: var(--pf-t--global--spacer--2xl);
|
|
588
588
|
--pf-v6-c-alert-group--m-toast--InsetInlineEnd: var(--pf-t--global--spacer--xl);
|
|
@@ -605,6 +605,7 @@
|
|
|
605
605
|
--pf-v6-c-alert-group__overflow-button--active--Color: var(--pf-t--global--text--color--link--hover);
|
|
606
606
|
--pf-v6-c-alert-group__overflow-button--active--BoxShadow: var(--pf-t--global--box-shadow--lg), var(--pf-t--global--box-shadow--lg--bottom);
|
|
607
607
|
}
|
|
608
|
+
|
|
608
609
|
.pf-v6-c-alert-group > * + * {
|
|
609
610
|
margin-block-start: var(--pf-v6-c-alert-group__item--MarginBlockStart);
|
|
610
611
|
}
|
|
@@ -1187,9 +1188,12 @@
|
|
|
1187
1188
|
cursor: not-allowed;
|
|
1188
1189
|
}
|
|
1189
1190
|
|
|
1190
|
-
.pf-v6-c-brand {
|
|
1191
|
+
:where(:root, .pf-v6-c-brand) {
|
|
1191
1192
|
--pf-v6-c-brand--Width: auto;
|
|
1192
1193
|
--pf-v6-c-brand--Height: auto;
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1196
|
+
.pf-v6-c-brand {
|
|
1193
1197
|
width: var(--pf-v6-c-brand--Width--base);
|
|
1194
1198
|
height: var(--pf-v6-c-brand--Height--base);
|
|
1195
1199
|
--pf-v6-c-brand--Width--base: var(--pf-v6-c-brand--Width);
|
|
@@ -1978,7 +1982,7 @@ button.pf-v6-c-breadcrumb__link {
|
|
|
1978
1982
|
--pf-v6-c-calendar-month__date--after--focus--OutlineOffset: -2px;
|
|
1979
1983
|
}
|
|
1980
1984
|
|
|
1981
|
-
|
|
1985
|
+
.pf-v6-c-calendar-month {
|
|
1982
1986
|
display: inline-flex;
|
|
1983
1987
|
flex-direction: column;
|
|
1984
1988
|
padding-block-start: var(--pf-v6-c-calendar-month--PaddingBlockStart);
|
|
@@ -8422,7 +8426,7 @@ input.pf-v6-c-label__content {
|
|
|
8422
8426
|
display: none;
|
|
8423
8427
|
}
|
|
8424
8428
|
|
|
8425
|
-
.pf-v6-c-list {
|
|
8429
|
+
:where(:root, .pf-v6-c-list) {
|
|
8426
8430
|
--pf-v6-c-list--PaddingInlineStart: var(--pf-t--global--spacer--lg);
|
|
8427
8431
|
--pf-v6-c-list--nested--MarginBlockStart: var(--pf-t--global--spacer--sm);
|
|
8428
8432
|
--pf-v6-c-list--nested--MarginInlineStart: var(--pf-t--global--spacer--sm);
|
|
@@ -8440,6 +8444,9 @@ input.pf-v6-c-label__content {
|
|
|
8440
8444
|
--pf-v6-c-list--m-icon-lg__item-icon--MinWidth: var(--pf-t--global--icon--size--lg);
|
|
8441
8445
|
--pf-v6-c-list--m-icon-lg__item-icon--MarginInlineEnd: var(--pf-t--global--spacer--md);
|
|
8442
8446
|
--pf-v6-c-list--m-icon-lg__item-icon--FontSize: var(--pf-t--global--icon--size--lg);
|
|
8447
|
+
}
|
|
8448
|
+
|
|
8449
|
+
.pf-v6-c-list {
|
|
8443
8450
|
padding-inline-start: var(--pf-v6-c-list--PaddingInlineStart);
|
|
8444
8451
|
}
|
|
8445
8452
|
.pf-v6-c-list ol,
|
|
@@ -8497,7 +8504,7 @@ ul.pf-v6-c-list {
|
|
|
8497
8504
|
--pf-v6-c-list--m-bordered--li--BorderBlockEndWidth: 0;
|
|
8498
8505
|
}
|
|
8499
8506
|
|
|
8500
|
-
.pf-v6-c-log-viewer {
|
|
8507
|
+
:where(:root, .pf-v6-c-log-viewer) {
|
|
8501
8508
|
--pf-v6-c-log-viewer--Height: 100%;
|
|
8502
8509
|
--pf-v6-c-log-viewer--MaxHeight: auto;
|
|
8503
8510
|
--pf-v6-c-log-viewer--m-line-numbers__index--Display: inline;
|
|
@@ -8544,6 +8551,9 @@ ul.pf-v6-c-list {
|
|
|
8544
8551
|
--pf-v6-c-log-viewer--c-toolbar__group--m-toggle-group--spacer: 0;
|
|
8545
8552
|
--pf-v6-c-log-viewer--c-toolbar__group--m-toggle-group--m-show--spacer: var(--pf-t--global--spacer--sm);
|
|
8546
8553
|
--pf-v6-c-log-viewer--m-dark__main--BorderWidth: 0;
|
|
8554
|
+
}
|
|
8555
|
+
|
|
8556
|
+
.pf-v6-c-log-viewer {
|
|
8547
8557
|
display: flex;
|
|
8548
8558
|
flex-direction: column;
|
|
8549
8559
|
height: var(--pf-v6-c-log-viewer--Height);
|
|
@@ -12625,7 +12635,7 @@ ul.pf-v6-c-list {
|
|
|
12625
12635
|
box-shadow: var(--pf-v6-c-panel__footer--BoxShadow);
|
|
12626
12636
|
}
|
|
12627
12637
|
|
|
12628
|
-
.pf-v6-c-popover {
|
|
12638
|
+
:where(:root, .pf-v6-c-popover) {
|
|
12629
12639
|
--pf-v6-c-popover--FontSize: var(--pf-t--global--font--size--body--sm);
|
|
12630
12640
|
--pf-v6-c-popover--MinWidth: calc(var(--pf-v6-c-popover__content--PaddingInlineStart) + var(--pf-v6-c-popover__content--PaddingInlineEnd) + 18.75rem);
|
|
12631
12641
|
--pf-v6-c-popover--MaxWidth: calc(var(--pf-v6-c-popover__content--PaddingInlineStart) + var(--pf-v6-c-popover__content--PaddingInlineEnd) + 18.75rem);
|
|
@@ -12674,6 +12684,9 @@ ul.pf-v6-c-list {
|
|
|
12674
12684
|
--pf-v6-c-popover__title-icon--Color: var(--pf-t--global--icon--color--regular);
|
|
12675
12685
|
--pf-v6-c-popover__title-icon--FontSize: var(--pf-t--global--font--size--heading--xs);
|
|
12676
12686
|
--pf-v6-c-popover__footer--MarginBlockStart: var(--pf-t--global--spacer--md);
|
|
12687
|
+
}
|
|
12688
|
+
|
|
12689
|
+
.pf-v6-c-popover {
|
|
12677
12690
|
position: relative;
|
|
12678
12691
|
min-width: var(--pf-v6-c-popover--MinWidth);
|
|
12679
12692
|
max-width: var(--pf-v6-c-popover--MaxWidth);
|
|
@@ -14767,7 +14780,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
14767
14780
|
--pf-v6-c-tab-content__body--PaddingInlineStart: var(--pf-v6-c-tab-content__body--m-padding--PaddingInlineStart);
|
|
14768
14781
|
}
|
|
14769
14782
|
|
|
14770
|
-
.pf-v6-c-table[class*=pf-m-grid] {
|
|
14783
|
+
:where(:root, .pf-v6-c-table[class*=pf-m-grid]) {
|
|
14771
14784
|
--pf-v6-c-table--responsive--BorderColor: var(--pf-t--global--border--color--default);
|
|
14772
14785
|
--pf-v6-c-table__tbody--responsive--border-width--base: var(--pf-t--global--border--width--divider--default);
|
|
14773
14786
|
--pf-v6-c-table__tbody--after--border-width--base: var(--pf-t--global--border--width--extra-strong);
|
package/package.json
CHANGED
|
@@ -6602,7 +6602,7 @@
|
|
|
6602
6602
|
margin-inline-end: var(--pf-v6-c-alert__action-group__c-button--not-last-child--MarginInlineEnd);
|
|
6603
6603
|
}
|
|
6604
6604
|
|
|
6605
|
-
.pf-v6-c-alert-group {
|
|
6605
|
+
:where(:root, .pf-v6-c-alert-group) {
|
|
6606
6606
|
--pf-v6-c-alert-group__item--MarginBlockStart: var(--pf-t--global--spacer--md);
|
|
6607
6607
|
--pf-v6-c-alert-group--m-toast--InsetBlockStart: var(--pf-t--global--spacer--2xl);
|
|
6608
6608
|
--pf-v6-c-alert-group--m-toast--InsetInlineEnd: var(--pf-t--global--spacer--xl);
|
|
@@ -6625,6 +6625,7 @@
|
|
|
6625
6625
|
--pf-v6-c-alert-group__overflow-button--active--Color: var(--pf-t--global--text--color--link--hover);
|
|
6626
6626
|
--pf-v6-c-alert-group__overflow-button--active--BoxShadow: var(--pf-t--global--box-shadow--lg), var(--pf-t--global--box-shadow--lg--bottom);
|
|
6627
6627
|
}
|
|
6628
|
+
|
|
6628
6629
|
.pf-v6-c-alert-group > * + * {
|
|
6629
6630
|
margin-block-start: var(--pf-v6-c-alert-group__item--MarginBlockStart);
|
|
6630
6631
|
}
|
|
@@ -7207,9 +7208,12 @@
|
|
|
7207
7208
|
cursor: not-allowed;
|
|
7208
7209
|
}
|
|
7209
7210
|
|
|
7210
|
-
.pf-v6-c-brand {
|
|
7211
|
+
:where(:root, .pf-v6-c-brand) {
|
|
7211
7212
|
--pf-v6-c-brand--Width: auto;
|
|
7212
7213
|
--pf-v6-c-brand--Height: auto;
|
|
7214
|
+
}
|
|
7215
|
+
|
|
7216
|
+
.pf-v6-c-brand {
|
|
7213
7217
|
width: var(--pf-v6-c-brand--Width--base);
|
|
7214
7218
|
height: var(--pf-v6-c-brand--Height--base);
|
|
7215
7219
|
--pf-v6-c-brand--Width--base: var(--pf-v6-c-brand--Width);
|
|
@@ -7998,7 +8002,7 @@ button.pf-v6-c-breadcrumb__link {
|
|
|
7998
8002
|
--pf-v6-c-calendar-month__date--after--focus--OutlineOffset: -2px;
|
|
7999
8003
|
}
|
|
8000
8004
|
|
|
8001
|
-
|
|
8005
|
+
.pf-v6-c-calendar-month {
|
|
8002
8006
|
display: inline-flex;
|
|
8003
8007
|
flex-direction: column;
|
|
8004
8008
|
padding-block-start: var(--pf-v6-c-calendar-month--PaddingBlockStart);
|
|
@@ -14442,7 +14446,7 @@ input.pf-v6-c-label__content {
|
|
|
14442
14446
|
display: none;
|
|
14443
14447
|
}
|
|
14444
14448
|
|
|
14445
|
-
.pf-v6-c-list {
|
|
14449
|
+
:where(:root, .pf-v6-c-list) {
|
|
14446
14450
|
--pf-v6-c-list--PaddingInlineStart: var(--pf-t--global--spacer--lg);
|
|
14447
14451
|
--pf-v6-c-list--nested--MarginBlockStart: var(--pf-t--global--spacer--sm);
|
|
14448
14452
|
--pf-v6-c-list--nested--MarginInlineStart: var(--pf-t--global--spacer--sm);
|
|
@@ -14460,6 +14464,9 @@ input.pf-v6-c-label__content {
|
|
|
14460
14464
|
--pf-v6-c-list--m-icon-lg__item-icon--MinWidth: var(--pf-t--global--icon--size--lg);
|
|
14461
14465
|
--pf-v6-c-list--m-icon-lg__item-icon--MarginInlineEnd: var(--pf-t--global--spacer--md);
|
|
14462
14466
|
--pf-v6-c-list--m-icon-lg__item-icon--FontSize: var(--pf-t--global--icon--size--lg);
|
|
14467
|
+
}
|
|
14468
|
+
|
|
14469
|
+
.pf-v6-c-list {
|
|
14463
14470
|
padding-inline-start: var(--pf-v6-c-list--PaddingInlineStart);
|
|
14464
14471
|
}
|
|
14465
14472
|
.pf-v6-c-list ol,
|
|
@@ -14517,7 +14524,7 @@ ul.pf-v6-c-list {
|
|
|
14517
14524
|
--pf-v6-c-list--m-bordered--li--BorderBlockEndWidth: 0;
|
|
14518
14525
|
}
|
|
14519
14526
|
|
|
14520
|
-
.pf-v6-c-log-viewer {
|
|
14527
|
+
:where(:root, .pf-v6-c-log-viewer) {
|
|
14521
14528
|
--pf-v6-c-log-viewer--Height: 100%;
|
|
14522
14529
|
--pf-v6-c-log-viewer--MaxHeight: auto;
|
|
14523
14530
|
--pf-v6-c-log-viewer--m-line-numbers__index--Display: inline;
|
|
@@ -14564,6 +14571,9 @@ ul.pf-v6-c-list {
|
|
|
14564
14571
|
--pf-v6-c-log-viewer--c-toolbar__group--m-toggle-group--spacer: 0;
|
|
14565
14572
|
--pf-v6-c-log-viewer--c-toolbar__group--m-toggle-group--m-show--spacer: var(--pf-t--global--spacer--sm);
|
|
14566
14573
|
--pf-v6-c-log-viewer--m-dark__main--BorderWidth: 0;
|
|
14574
|
+
}
|
|
14575
|
+
|
|
14576
|
+
.pf-v6-c-log-viewer {
|
|
14567
14577
|
display: flex;
|
|
14568
14578
|
flex-direction: column;
|
|
14569
14579
|
height: var(--pf-v6-c-log-viewer--Height);
|
|
@@ -18645,7 +18655,7 @@ ul.pf-v6-c-list {
|
|
|
18645
18655
|
box-shadow: var(--pf-v6-c-panel__footer--BoxShadow);
|
|
18646
18656
|
}
|
|
18647
18657
|
|
|
18648
|
-
.pf-v6-c-popover {
|
|
18658
|
+
:where(:root, .pf-v6-c-popover) {
|
|
18649
18659
|
--pf-v6-c-popover--FontSize: var(--pf-t--global--font--size--body--sm);
|
|
18650
18660
|
--pf-v6-c-popover--MinWidth: calc(var(--pf-v6-c-popover__content--PaddingInlineStart) + var(--pf-v6-c-popover__content--PaddingInlineEnd) + 18.75rem);
|
|
18651
18661
|
--pf-v6-c-popover--MaxWidth: calc(var(--pf-v6-c-popover__content--PaddingInlineStart) + var(--pf-v6-c-popover__content--PaddingInlineEnd) + 18.75rem);
|
|
@@ -18694,6 +18704,9 @@ ul.pf-v6-c-list {
|
|
|
18694
18704
|
--pf-v6-c-popover__title-icon--Color: var(--pf-t--global--icon--color--regular);
|
|
18695
18705
|
--pf-v6-c-popover__title-icon--FontSize: var(--pf-t--global--font--size--heading--xs);
|
|
18696
18706
|
--pf-v6-c-popover__footer--MarginBlockStart: var(--pf-t--global--spacer--md);
|
|
18707
|
+
}
|
|
18708
|
+
|
|
18709
|
+
.pf-v6-c-popover {
|
|
18697
18710
|
position: relative;
|
|
18698
18711
|
min-width: var(--pf-v6-c-popover--MinWidth);
|
|
18699
18712
|
max-width: var(--pf-v6-c-popover--MaxWidth);
|
|
@@ -20787,7 +20800,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
20787
20800
|
--pf-v6-c-tab-content__body--PaddingInlineStart: var(--pf-v6-c-tab-content__body--m-padding--PaddingInlineStart);
|
|
20788
20801
|
}
|
|
20789
20802
|
|
|
20790
|
-
.pf-v6-c-table[class*=pf-m-grid] {
|
|
20803
|
+
:where(:root, .pf-v6-c-table[class*=pf-m-grid]) {
|
|
20791
20804
|
--pf-v6-c-table--responsive--BorderColor: var(--pf-t--global--border--color--default);
|
|
20792
20805
|
--pf-v6-c-table__tbody--responsive--border-width--base: var(--pf-t--global--border--width--divider--default);
|
|
20793
20806
|
--pf-v6-c-table__tbody--after--border-width--base: var(--pf-t--global--border--width--extra-strong);
|
package/patternfly.css
CHANGED
|
@@ -6723,7 +6723,7 @@ button) {
|
|
|
6723
6723
|
margin-inline-end: var(--pf-v6-c-alert__action-group__c-button--not-last-child--MarginInlineEnd);
|
|
6724
6724
|
}
|
|
6725
6725
|
|
|
6726
|
-
.pf-v6-c-alert-group {
|
|
6726
|
+
:where(:root, .pf-v6-c-alert-group) {
|
|
6727
6727
|
--pf-v6-c-alert-group__item--MarginBlockStart: var(--pf-t--global--spacer--md);
|
|
6728
6728
|
--pf-v6-c-alert-group--m-toast--InsetBlockStart: var(--pf-t--global--spacer--2xl);
|
|
6729
6729
|
--pf-v6-c-alert-group--m-toast--InsetInlineEnd: var(--pf-t--global--spacer--xl);
|
|
@@ -6746,6 +6746,7 @@ button) {
|
|
|
6746
6746
|
--pf-v6-c-alert-group__overflow-button--active--Color: var(--pf-t--global--text--color--link--hover);
|
|
6747
6747
|
--pf-v6-c-alert-group__overflow-button--active--BoxShadow: var(--pf-t--global--box-shadow--lg), var(--pf-t--global--box-shadow--lg--bottom);
|
|
6748
6748
|
}
|
|
6749
|
+
|
|
6749
6750
|
.pf-v6-c-alert-group > * + * {
|
|
6750
6751
|
margin-block-start: var(--pf-v6-c-alert-group__item--MarginBlockStart);
|
|
6751
6752
|
}
|
|
@@ -7328,9 +7329,12 @@ button) {
|
|
|
7328
7329
|
cursor: not-allowed;
|
|
7329
7330
|
}
|
|
7330
7331
|
|
|
7331
|
-
.pf-v6-c-brand {
|
|
7332
|
+
:where(:root, .pf-v6-c-brand) {
|
|
7332
7333
|
--pf-v6-c-brand--Width: auto;
|
|
7333
7334
|
--pf-v6-c-brand--Height: auto;
|
|
7335
|
+
}
|
|
7336
|
+
|
|
7337
|
+
.pf-v6-c-brand {
|
|
7334
7338
|
width: var(--pf-v6-c-brand--Width--base);
|
|
7335
7339
|
height: var(--pf-v6-c-brand--Height--base);
|
|
7336
7340
|
--pf-v6-c-brand--Width--base: var(--pf-v6-c-brand--Width);
|
|
@@ -8119,7 +8123,7 @@ button.pf-v6-c-breadcrumb__link {
|
|
|
8119
8123
|
--pf-v6-c-calendar-month__date--after--focus--OutlineOffset: -2px;
|
|
8120
8124
|
}
|
|
8121
8125
|
|
|
8122
|
-
|
|
8126
|
+
.pf-v6-c-calendar-month {
|
|
8123
8127
|
display: inline-flex;
|
|
8124
8128
|
flex-direction: column;
|
|
8125
8129
|
padding-block-start: var(--pf-v6-c-calendar-month--PaddingBlockStart);
|
|
@@ -14563,7 +14567,7 @@ input.pf-v6-c-label__content {
|
|
|
14563
14567
|
display: none;
|
|
14564
14568
|
}
|
|
14565
14569
|
|
|
14566
|
-
.pf-v6-c-list {
|
|
14570
|
+
:where(:root, .pf-v6-c-list) {
|
|
14567
14571
|
--pf-v6-c-list--PaddingInlineStart: var(--pf-t--global--spacer--lg);
|
|
14568
14572
|
--pf-v6-c-list--nested--MarginBlockStart: var(--pf-t--global--spacer--sm);
|
|
14569
14573
|
--pf-v6-c-list--nested--MarginInlineStart: var(--pf-t--global--spacer--sm);
|
|
@@ -14581,6 +14585,9 @@ input.pf-v6-c-label__content {
|
|
|
14581
14585
|
--pf-v6-c-list--m-icon-lg__item-icon--MinWidth: var(--pf-t--global--icon--size--lg);
|
|
14582
14586
|
--pf-v6-c-list--m-icon-lg__item-icon--MarginInlineEnd: var(--pf-t--global--spacer--md);
|
|
14583
14587
|
--pf-v6-c-list--m-icon-lg__item-icon--FontSize: var(--pf-t--global--icon--size--lg);
|
|
14588
|
+
}
|
|
14589
|
+
|
|
14590
|
+
.pf-v6-c-list {
|
|
14584
14591
|
padding-inline-start: var(--pf-v6-c-list--PaddingInlineStart);
|
|
14585
14592
|
}
|
|
14586
14593
|
.pf-v6-c-list ol,
|
|
@@ -14638,7 +14645,7 @@ ul.pf-v6-c-list {
|
|
|
14638
14645
|
--pf-v6-c-list--m-bordered--li--BorderBlockEndWidth: 0;
|
|
14639
14646
|
}
|
|
14640
14647
|
|
|
14641
|
-
.pf-v6-c-log-viewer {
|
|
14648
|
+
:where(:root, .pf-v6-c-log-viewer) {
|
|
14642
14649
|
--pf-v6-c-log-viewer--Height: 100%;
|
|
14643
14650
|
--pf-v6-c-log-viewer--MaxHeight: auto;
|
|
14644
14651
|
--pf-v6-c-log-viewer--m-line-numbers__index--Display: inline;
|
|
@@ -14685,6 +14692,9 @@ ul.pf-v6-c-list {
|
|
|
14685
14692
|
--pf-v6-c-log-viewer--c-toolbar__group--m-toggle-group--spacer: 0;
|
|
14686
14693
|
--pf-v6-c-log-viewer--c-toolbar__group--m-toggle-group--m-show--spacer: var(--pf-t--global--spacer--sm);
|
|
14687
14694
|
--pf-v6-c-log-viewer--m-dark__main--BorderWidth: 0;
|
|
14695
|
+
}
|
|
14696
|
+
|
|
14697
|
+
.pf-v6-c-log-viewer {
|
|
14688
14698
|
display: flex;
|
|
14689
14699
|
flex-direction: column;
|
|
14690
14700
|
height: var(--pf-v6-c-log-viewer--Height);
|
|
@@ -18766,7 +18776,7 @@ ul.pf-v6-c-list {
|
|
|
18766
18776
|
box-shadow: var(--pf-v6-c-panel__footer--BoxShadow);
|
|
18767
18777
|
}
|
|
18768
18778
|
|
|
18769
|
-
.pf-v6-c-popover {
|
|
18779
|
+
:where(:root, .pf-v6-c-popover) {
|
|
18770
18780
|
--pf-v6-c-popover--FontSize: var(--pf-t--global--font--size--body--sm);
|
|
18771
18781
|
--pf-v6-c-popover--MinWidth: calc(var(--pf-v6-c-popover__content--PaddingInlineStart) + var(--pf-v6-c-popover__content--PaddingInlineEnd) + 18.75rem);
|
|
18772
18782
|
--pf-v6-c-popover--MaxWidth: calc(var(--pf-v6-c-popover__content--PaddingInlineStart) + var(--pf-v6-c-popover__content--PaddingInlineEnd) + 18.75rem);
|
|
@@ -18815,6 +18825,9 @@ ul.pf-v6-c-list {
|
|
|
18815
18825
|
--pf-v6-c-popover__title-icon--Color: var(--pf-t--global--icon--color--regular);
|
|
18816
18826
|
--pf-v6-c-popover__title-icon--FontSize: var(--pf-t--global--font--size--heading--xs);
|
|
18817
18827
|
--pf-v6-c-popover__footer--MarginBlockStart: var(--pf-t--global--spacer--md);
|
|
18828
|
+
}
|
|
18829
|
+
|
|
18830
|
+
.pf-v6-c-popover {
|
|
18818
18831
|
position: relative;
|
|
18819
18832
|
min-width: var(--pf-v6-c-popover--MinWidth);
|
|
18820
18833
|
max-width: var(--pf-v6-c-popover--MaxWidth);
|
|
@@ -20908,7 +20921,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
20908
20921
|
--pf-v6-c-tab-content__body--PaddingInlineStart: var(--pf-v6-c-tab-content__body--m-padding--PaddingInlineStart);
|
|
20909
20922
|
}
|
|
20910
20923
|
|
|
20911
|
-
.pf-v6-c-table[class*=pf-m-grid] {
|
|
20924
|
+
:where(:root, .pf-v6-c-table[class*=pf-m-grid]) {
|
|
20912
20925
|
--pf-v6-c-table--responsive--BorderColor: var(--pf-t--global--border--color--default);
|
|
20913
20926
|
--pf-v6-c-table__tbody--responsive--border-width--base: var(--pf-t--global--border--width--divider--default);
|
|
20914
20927
|
--pf-v6-c-table__tbody--after--border-width--base: var(--pf-t--global--border--width--extra-strong);
|