@patternfly/react-styles 5.0.0-alpha.4 → 5.0.0-alpha.5
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +4 -0
- package/css/components/AboutModalBox/about-modal-box.css +7 -7
- package/css/components/Alert/alert.css +3 -3
- package/css/components/Banner/banner.css +14 -14
- package/css/components/Banner/banner.d.ts +5 -5
- package/css/components/Banner/banner.js +5 -5
- package/css/components/Banner/banner.mjs +5 -5
- package/css/components/CalendarMonth/calendar-month.css +1 -1
- package/css/components/Card/card.css +12 -10
- package/css/components/Card/card.d.ts +1 -0
- package/css/components/Card/card.js +1 -0
- package/css/components/Card/card.mjs +1 -0
- package/css/components/Chip/chip.css +1 -1
- package/css/components/ChipGroup/chip-group.css +4 -4
- package/css/components/Content/content.css +5 -5
- package/css/components/DataList/data-list-grid.css +7 -7
- package/css/components/DataList/data-list.css +10 -10
- package/css/components/DatePicker/date-picker.css +0 -8
- package/css/components/DatePicker/date-picker.d.ts +0 -1
- package/css/components/DatePicker/date-picker.js +0 -1
- package/css/components/DatePicker/date-picker.mjs +0 -1
- package/css/components/DescriptionList/description-list.css +7 -7
- package/css/components/Divider/divider.css +2 -2
- package/css/components/Drawer/drawer.css +2 -2
- package/css/components/DualListSelector/dual-list-selector.css +1 -1
- package/css/components/EmptyState/empty-state.css +2 -2
- package/css/components/Form/form.css +12 -12
- package/css/components/FormControl/form-control.css +2 -5
- package/css/components/HelperText/helper-text.css +4 -0
- package/css/components/HelperText/helper-text.d.ts +1 -0
- package/css/components/HelperText/helper-text.js +1 -0
- package/css/components/HelperText/helper-text.mjs +1 -0
- package/css/components/Hint/hint.css +2 -2
- package/css/components/InputGroup/input-group.css +61 -85
- package/css/components/InputGroup/input-group.d.ts +4 -2
- package/css/components/InputGroup/input-group.js +4 -2
- package/css/components/InputGroup/input-group.mjs +4 -2
- package/css/components/Label/label.css +6 -6
- package/css/components/LabelGroup/label-group.css +2 -2
- package/css/components/Login/login.css +10 -10
- package/css/components/Masthead/masthead.css +4 -4
- package/css/components/Menu/menu.css +6 -6
- package/css/components/MenuToggle/menu-toggle.css +1 -1
- package/css/components/MultipleFileUpload/multiple-file-upload.css +6 -6
- package/css/components/Nav/nav.css +1 -1
- package/css/components/NotificationDrawer/notification-drawer.css +3 -3
- package/css/components/OptionsMenu/options-menu.css +0 -5
- package/css/components/Page/page.css +11 -11
- package/css/components/Popover/popover.css +2 -0
- package/css/components/Progress/progress.css +10 -10
- package/css/components/ProgressStepper/progress-stepper.css +5 -5
- package/css/components/SearchInput/search-input.css +2 -2
- package/css/components/Select/select.css +1 -1
- package/css/components/Sidebar/sidebar.css +69 -26
- package/css/components/Sidebar/sidebar.d.ts +2 -0
- package/css/components/Sidebar/sidebar.js +2 -0
- package/css/components/Sidebar/sidebar.mjs +2 -0
- package/css/components/SimpleList/simple-list.css +1 -1
- package/css/components/Spinner/spinner.css +4 -4
- package/css/components/Table/table-scrollable.css +31 -26
- package/css/components/Table/table-scrollable.d.ts +3 -2
- package/css/components/Table/table-scrollable.js +3 -2
- package/css/components/Table/table-scrollable.mjs +3 -2
- package/css/components/Table/table.css +3 -2
- package/css/components/TextInputGroup/text-input-group.css +2 -2
- package/css/components/Tile/tile.css +1 -1
- package/css/components/Timestamp/timestamp.css +3 -3
- package/css/components/Toolbar/toolbar.css +13 -6
- package/css/components/Wizard/wizard.css +14 -1
- package/css/components/Wizard/wizard.d.ts +1 -0
- package/css/components/Wizard/wizard.js +1 -0
- package/css/components/Wizard/wizard.mjs +1 -0
- package/css/docs/components/Table/examples/Table.css +4 -0
- package/css/layouts/Gallery/gallery.css +1 -1
- package/css/layouts/Grid/grid.css +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,10 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
# 5.0.0-alpha.5 (2023-03-18)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
9
|
+
|
6
10
|
# 5.0.0-alpha.4 (2023-03-02)
|
7
11
|
|
8
12
|
### Bug Fixes
|
@@ -80,8 +80,8 @@
|
|
80
80
|
color: var(--pf-global--Color--100);
|
81
81
|
position: relative;
|
82
82
|
display: grid;
|
83
|
-
grid-template-rows: max-content max-content auto;
|
84
83
|
grid-template-areas: "brand close" "header header" "content content";
|
84
|
+
grid-template-rows: max-content max-content auto;
|
85
85
|
width: var(--pf-c-about-modal-box--Width);
|
86
86
|
height: var(--pf-c-about-modal-box--Height);
|
87
87
|
overflow-x: hidden;
|
@@ -127,22 +127,22 @@
|
|
127
127
|
}
|
128
128
|
@media only screen and (min-width: 576px) {
|
129
129
|
.pf-c-about-modal-box {
|
130
|
-
grid-template-columns: var(--pf-c-about-modal-box--sm--grid-template-columns);
|
131
130
|
grid-template-areas: "brand hero" "header hero" "content hero";
|
131
|
+
grid-template-columns: var(--pf-c-about-modal-box--sm--grid-template-columns);
|
132
132
|
}
|
133
133
|
}
|
134
134
|
@media only screen and (min-width: 992px) {
|
135
135
|
.pf-c-about-modal-box {
|
136
136
|
--pf-c-about-modal-box--Height: var(--pf-c-about-modal-box--lg--Height);
|
137
137
|
--pf-c-about-modal-box--Width: var(--pf-c-about-modal-box--lg--Width);
|
138
|
-
grid-template-columns: var(--pf-c-about-modal-box--lg--grid-template-columns);
|
139
138
|
grid-template-rows: max-content max-content auto;
|
139
|
+
grid-template-columns: var(--pf-c-about-modal-box--lg--grid-template-columns);
|
140
140
|
}
|
141
141
|
}
|
142
142
|
|
143
143
|
.pf-c-about-modal-box__brand {
|
144
|
-
grid-area: brand;
|
145
144
|
display: flex;
|
145
|
+
grid-area: brand;
|
146
146
|
padding: var(--pf-c-about-modal-box__brand--PaddingTop) var(--pf-c-about-modal-box__brand--PaddingRight) var(--pf-c-about-modal-box__brand--PaddingBottom) var(--pf-c-about-modal-box__brand--PaddingLeft);
|
147
147
|
}
|
148
148
|
|
@@ -151,9 +151,9 @@
|
|
151
151
|
}
|
152
152
|
|
153
153
|
.pf-c-about-modal-box__header {
|
154
|
-
grid-area: header;
|
155
154
|
display: flex;
|
156
155
|
flex-direction: column;
|
156
|
+
grid-area: header;
|
157
157
|
padding-right: var(--pf-c-about-modal-box__header--PaddingRight);
|
158
158
|
padding-bottom: var(--pf-c-about-modal-box__header--PaddingBottom);
|
159
159
|
padding-left: var(--pf-c-about-modal-box__header--PaddingLeft);
|
@@ -184,10 +184,10 @@
|
|
184
184
|
}
|
185
185
|
|
186
186
|
.pf-c-about-modal-box__close {
|
187
|
-
grid-area: close;
|
188
187
|
position: sticky;
|
189
188
|
top: 0;
|
190
189
|
display: flex;
|
190
|
+
grid-area: close;
|
191
191
|
align-items: flex-start;
|
192
192
|
justify-content: flex-end;
|
193
193
|
padding-top: var(--pf-c-about-modal-box__close--PaddingTop);
|
@@ -226,12 +226,12 @@
|
|
226
226
|
@media only screen and (min-width: 576px) {
|
227
227
|
.pf-c-about-modal-box__hero {
|
228
228
|
display: block;
|
229
|
+
grid-area: hero;
|
229
230
|
background-image: var(--pf-c-about-modal-box__hero--sm--BackgroundImage);
|
230
231
|
background-repeat: no-repeat;
|
231
232
|
background-attachment: fixed;
|
232
233
|
background-position: var(--pf-c-about-modal-box__hero--sm--BackgroundPosition);
|
233
234
|
background-size: var(--pf-c-about-modal-box__hero--sm--BackgroundSize);
|
234
|
-
grid-area: hero;
|
235
235
|
}
|
236
236
|
}
|
237
237
|
|
@@ -80,13 +80,13 @@
|
|
80
80
|
color: var(--pf-global--Color--100);
|
81
81
|
position: relative;
|
82
82
|
display: grid;
|
83
|
+
grid-template-areas: var(--pf-c-alert--GridTemplateAreas);
|
84
|
+
grid-template-columns: var(--pf-c-alert--GridTemplateColumns);
|
83
85
|
padding: var(--pf-c-alert--PaddingTop) var(--pf-c-alert--PaddingRight) var(--pf-c-alert--PaddingBottom) var(--pf-c-alert--PaddingLeft);
|
84
86
|
font-size: var(--pf-c-alert__FontSize);
|
85
87
|
background-color: var(--pf-c-alert--BackgroundColor);
|
86
88
|
border-top: var(--pf-c-alert--BorderTopWidth) solid var(--pf-c-alert--BorderTopColor);
|
87
89
|
box-shadow: var(--pf-c-alert--BoxShadow);
|
88
|
-
grid-template-columns: var(--pf-c-alert--GridTemplateColumns);
|
89
|
-
grid-template-areas: var(--pf-c-alert--GridTemplateAreas);
|
90
90
|
}
|
91
91
|
.pf-c-alert.pf-m-success {
|
92
92
|
--pf-c-alert--BorderTopColor: var(--pf-c-alert--m-success--BorderTopColor);
|
@@ -147,8 +147,8 @@
|
|
147
147
|
}
|
148
148
|
|
149
149
|
.pf-c-alert__icon {
|
150
|
-
grid-area: icon;
|
151
150
|
display: flex;
|
151
|
+
grid-area: icon;
|
152
152
|
margin-top: var(--pf-c-alert__icon--MarginTop);
|
153
153
|
margin-right: var(--pf-c-alert__icon--MarginRight);
|
154
154
|
font-size: var(--pf-c-alert__icon--FontSize);
|
@@ -1,4 +1,4 @@
|
|
1
|
-
.pf-c-banner.pf-m-
|
1
|
+
.pf-c-banner.pf-m-gold, .pf-c-banner.pf-m-blue {
|
2
2
|
--pf-global--Color--100: var(--pf-global--Color--dark-100);
|
3
3
|
--pf-global--Color--200: var(--pf-global--Color--dark-200);
|
4
4
|
--pf-global--BorderColor--100: var(--pf-global--BorderColor--dark-100);
|
@@ -55,18 +55,18 @@
|
|
55
55
|
--pf-c-banner--link--hover--FontWeight: var(--pf-global--FontWeight--bold);
|
56
56
|
--pf-c-banner--link--disabled--Color: var(--pf-c-banner--Color);
|
57
57
|
--pf-c-banner--link--disabled--TextDecoration: none;
|
58
|
-
--pf-c-banner--m-
|
59
|
-
--pf-c-banner--m-
|
60
|
-
--pf-c-banner--m-
|
61
|
-
--pf-c-banner--m-
|
58
|
+
--pf-c-banner--m-blue--BackgroundColor: var(--pf-global--palette--blue-200);
|
59
|
+
--pf-c-banner--m-red--BackgroundColor: var(--pf-global--palette--red-100);
|
60
|
+
--pf-c-banner--m-green--BackgroundColor: var(--pf-global--palette--green-500);
|
61
|
+
--pf-c-banner--m-gold--BackgroundColor: var(--pf-global--palette--gold-400);
|
62
62
|
--pf-c-banner--m-sticky--ZIndex: var(--pf-global--ZIndex--md);
|
63
63
|
--pf-c-banner--m-sticky--BoxShadow: var(--pf-global--BoxShadow--md-bottom);
|
64
64
|
color: var(--pf-global--Color--100);
|
65
65
|
overflow: hidden;
|
66
66
|
text-overflow: ellipsis;
|
67
67
|
white-space: nowrap;
|
68
|
-
padding: var(--pf-c-banner--PaddingTop) var(--pf-c-banner--PaddingRight) var(--pf-c-banner--PaddingBottom) var(--pf-c-banner--PaddingLeft);
|
69
68
|
flex-shrink: 0;
|
69
|
+
padding: var(--pf-c-banner--PaddingTop) var(--pf-c-banner--PaddingRight) var(--pf-c-banner--PaddingBottom) var(--pf-c-banner--PaddingLeft);
|
70
70
|
font-size: var(--pf-c-banner--FontSize);
|
71
71
|
color: var(--pf-c-banner--Color);
|
72
72
|
white-space: nowrap;
|
@@ -78,19 +78,19 @@
|
|
78
78
|
--pf-c-banner--PaddingLeft: var(--pf-c-banner--md--PaddingLeft);
|
79
79
|
}
|
80
80
|
}
|
81
|
-
.pf-c-banner.pf-m-
|
81
|
+
.pf-c-banner.pf-m-blue {
|
82
82
|
color: var(--pf-global--Color--100);
|
83
|
-
--pf-c-banner--BackgroundColor: var(--pf-c-banner--m-
|
83
|
+
--pf-c-banner--BackgroundColor: var(--pf-c-banner--m-blue--BackgroundColor);
|
84
84
|
}
|
85
|
-
.pf-c-banner.pf-m-
|
86
|
-
--pf-c-banner--BackgroundColor: var(--pf-c-banner--m-
|
85
|
+
.pf-c-banner.pf-m-red {
|
86
|
+
--pf-c-banner--BackgroundColor: var(--pf-c-banner--m-red--BackgroundColor);
|
87
87
|
}
|
88
|
-
.pf-c-banner.pf-m-
|
89
|
-
--pf-c-banner--BackgroundColor: var(--pf-c-banner--m-
|
88
|
+
.pf-c-banner.pf-m-green {
|
89
|
+
--pf-c-banner--BackgroundColor: var(--pf-c-banner--m-green--BackgroundColor);
|
90
90
|
}
|
91
|
-
.pf-c-banner.pf-m-
|
91
|
+
.pf-c-banner.pf-m-gold {
|
92
92
|
color: var(--pf-global--Color--100);
|
93
|
-
--pf-c-banner--BackgroundColor: var(--pf-c-banner--m-
|
93
|
+
--pf-c-banner--BackgroundColor: var(--pf-c-banner--m-gold--BackgroundColor);
|
94
94
|
}
|
95
95
|
.pf-c-banner.pf-m-sticky {
|
96
96
|
position: sticky;
|
@@ -4,17 +4,17 @@ declare const _default: {
|
|
4
4
|
"button": "pf-c-button",
|
5
5
|
"card": "pf-c-card",
|
6
6
|
"modifiers": {
|
7
|
-
"warning": "pf-m-warning",
|
8
7
|
"gold": "pf-m-gold",
|
9
|
-
"info": "pf-m-info",
|
10
8
|
"blue": "pf-m-blue",
|
11
|
-
"danger": "pf-m-danger",
|
12
9
|
"red": "pf-m-red",
|
13
|
-
"success": "pf-m-success",
|
14
10
|
"green": "pf-m-green",
|
15
11
|
"sticky": "pf-m-sticky",
|
16
12
|
"disabled": "pf-m-disabled",
|
17
|
-
"inline": "pf-m-inline"
|
13
|
+
"inline": "pf-m-inline",
|
14
|
+
"info": "pf-m-info",
|
15
|
+
"danger": "pf-m-danger",
|
16
|
+
"success": "pf-m-success",
|
17
|
+
"warning": "pf-m-warning"
|
18
18
|
},
|
19
19
|
"themeDark": "pf-theme-dark"
|
20
20
|
};
|
@@ -6,17 +6,17 @@ exports.default = {
|
|
6
6
|
"button": "pf-c-button",
|
7
7
|
"card": "pf-c-card",
|
8
8
|
"modifiers": {
|
9
|
-
"warning": "pf-m-warning",
|
10
9
|
"gold": "pf-m-gold",
|
11
|
-
"info": "pf-m-info",
|
12
10
|
"blue": "pf-m-blue",
|
13
|
-
"danger": "pf-m-danger",
|
14
11
|
"red": "pf-m-red",
|
15
|
-
"success": "pf-m-success",
|
16
12
|
"green": "pf-m-green",
|
17
13
|
"sticky": "pf-m-sticky",
|
18
14
|
"disabled": "pf-m-disabled",
|
19
|
-
"inline": "pf-m-inline"
|
15
|
+
"inline": "pf-m-inline",
|
16
|
+
"info": "pf-m-info",
|
17
|
+
"danger": "pf-m-danger",
|
18
|
+
"success": "pf-m-success",
|
19
|
+
"warning": "pf-m-warning"
|
20
20
|
},
|
21
21
|
"themeDark": "pf-theme-dark"
|
22
22
|
};
|
@@ -4,17 +4,17 @@ export default {
|
|
4
4
|
"button": "pf-c-button",
|
5
5
|
"card": "pf-c-card",
|
6
6
|
"modifiers": {
|
7
|
-
"warning": "pf-m-warning",
|
8
7
|
"gold": "pf-m-gold",
|
9
|
-
"info": "pf-m-info",
|
10
8
|
"blue": "pf-m-blue",
|
11
|
-
"danger": "pf-m-danger",
|
12
9
|
"red": "pf-m-red",
|
13
|
-
"success": "pf-m-success",
|
14
10
|
"green": "pf-m-green",
|
15
11
|
"sticky": "pf-m-sticky",
|
16
12
|
"disabled": "pf-m-disabled",
|
17
|
-
"inline": "pf-m-inline"
|
13
|
+
"inline": "pf-m-inline",
|
14
|
+
"info": "pf-m-info",
|
15
|
+
"danger": "pf-m-danger",
|
16
|
+
"success": "pf-m-success",
|
17
|
+
"warning": "pf-m-warning"
|
18
18
|
},
|
19
19
|
"themeDark": "pf-theme-dark"
|
20
20
|
};
|
@@ -193,9 +193,9 @@
|
|
193
193
|
box-shadow: var(--pf-c-calendar-month__date--focus--BoxShadow);
|
194
194
|
}
|
195
195
|
.pf-c-calendar-month__date:disabled {
|
196
|
-
pointer-events: none;
|
197
196
|
--pf-c-calendar-month__date--Color: var(--pf-c-calendar-month__date--disabled--Color);
|
198
197
|
--pf-c-calendar-month__date--hover--focus--BorderColor: transparent;
|
198
|
+
pointer-events: none;
|
199
199
|
}
|
200
200
|
|
201
201
|
:where(.pf-theme-dark) .pf-c-calendar-month {
|
@@ -6,10 +6,11 @@
|
|
6
6
|
--pf-c-card--child--PaddingBottom: var(--pf-global--spacer--lg);
|
7
7
|
--pf-c-card--child--PaddingLeft: var(--pf-global--spacer--lg);
|
8
8
|
--pf-c-card--c-divider--child--PaddingTop: var(--pf-global--spacer--lg);
|
9
|
-
--pf-c-card__title--FontFamily: var(--pf-global--FontFamily--heading--sans-serif);
|
10
|
-
--pf-c-card__title--FontSize: var(--pf-global--FontSize--md);
|
11
|
-
--pf-c-card__title--FontWeight: var(--pf-global--FontWeight--bold);
|
12
9
|
--pf-c-card__title--not--last-child--PaddingBottom: var(--pf-global--spacer--md);
|
10
|
+
--pf-c-card__title-text--FontFamily: var(--pf-global--FontFamily--heading--sans-serif);
|
11
|
+
--pf-c-card__title-text--FontSize: var(--pf-global--FontSize--md);
|
12
|
+
--pf-c-card__title-text--FontWeight: var(--pf-global--FontWeight--normal);
|
13
|
+
--pf-c-card__title-text--LineHeight: var(--pf-global--LineHeight--md);
|
13
14
|
--pf-c-card__body--FontSize: var(--pf-global--FontSize--md);
|
14
15
|
--pf-c-card__footer--FontSize: var(--pf-global--FontSize--md);
|
15
16
|
--pf-c-card__actions--PaddingLeft: var(--pf-global--spacer--md);
|
@@ -71,7 +72,7 @@
|
|
71
72
|
--pf-c-card--m-compact--child--PaddingLeft: var(--pf-global--spacer--md);
|
72
73
|
--pf-c-card--m-compact--c-divider--child--PaddingTop: var(--pf-global--spacer--md);
|
73
74
|
--pf-c-card--m-compact__title--not--last-child--PaddingBottom: var(--pf-global--spacer--sm);
|
74
|
-
--pf-c-card--m-display-lg__title--FontSize: var(--pf-global--FontSize--xl);
|
75
|
+
--pf-c-card--m-display-lg__title-text--FontSize: var(--pf-global--FontSize--xl);
|
75
76
|
--pf-c-card--m-display-lg--first-child--PaddingTop: var(--pf-global--spacer--xl);
|
76
77
|
--pf-c-card--m-display-lg--child--PaddingRight: var(--pf-global--spacer--xl);
|
77
78
|
--pf-c-card--m-display-lg--child--PaddingBottom: var(--pf-global--spacer--xl);
|
@@ -183,7 +184,7 @@
|
|
183
184
|
--pf-c-card__title--not--last-child--PaddingBottom: var(--pf-c-card--m-compact__title--not--last-child--PaddingBottom);
|
184
185
|
}
|
185
186
|
.pf-c-card.pf-m-display-lg {
|
186
|
-
--pf-c-card__title--FontSize: var(--pf-c-card--m-display-lg__title--FontSize);
|
187
|
+
--pf-c-card__title-text--FontSize: var(--pf-c-card--m-display-lg__title-text--FontSize);
|
187
188
|
--pf-c-card--first-child--PaddingTop: var(--pf-c-card--m-display-lg--first-child--PaddingTop);
|
188
189
|
--pf-c-card--child--PaddingRight: var(--pf-c-card--m-display-lg--child--PaddingRight);
|
189
190
|
--pf-c-card--child--PaddingBottom: var(--pf-c-card--m-display-lg--child--PaddingBottom);
|
@@ -249,20 +250,21 @@
|
|
249
250
|
transition: var(--pf-c-card__header-toggle-icon--Transition);
|
250
251
|
}
|
251
252
|
|
252
|
-
.pf-c-card__title {
|
253
|
-
font-family: var(--pf-c-card__title--FontFamily);
|
254
|
-
font-size: var(--pf-c-card__title--FontSize);
|
255
|
-
font-weight: var(--pf-c-card__title--FontWeight);
|
253
|
+
.pf-c-card__title-text {
|
254
|
+
font-family: var(--pf-c-card__title-text--FontFamily);
|
255
|
+
font-size: var(--pf-c-card__title-text--FontSize);
|
256
|
+
font-weight: var(--pf-c-card__title-text--FontWeight);
|
257
|
+
line-height: var(--pf-c-card__title-text--LineHeight);
|
256
258
|
}
|
257
259
|
|
258
260
|
.pf-c-card__actions {
|
259
261
|
display: flex;
|
262
|
+
gap: var(--pf-c-card__actions--Gap);
|
260
263
|
align-items: center;
|
261
264
|
align-self: flex-start;
|
262
265
|
order: 1;
|
263
266
|
padding-left: var(--pf-c-card__actions--PaddingLeft);
|
264
267
|
margin: var(--pf-c-card__actions--MarginTop) 0 var(--pf-c-card__actions--MarginBottom) auto;
|
265
|
-
gap: var(--pf-c-card__actions--Gap);
|
266
268
|
}
|
267
269
|
.pf-c-card__actions + .pf-c-card__title,
|
268
270
|
.pf-c-card__actions + .pf-c-card__body,
|
@@ -11,6 +11,7 @@ declare const _default: {
|
|
11
11
|
"cardHeaderToggleIcon": "pf-c-card__header-toggle-icon",
|
12
12
|
"cardSrInput": "pf-c-card__sr-input",
|
13
13
|
"cardTitle": "pf-c-card__title",
|
14
|
+
"cardTitleText": "pf-c-card__title-text",
|
14
15
|
"divider": "pf-c-divider",
|
15
16
|
"modifiers": {
|
16
17
|
"hoverable": "pf-m-hoverable",
|
@@ -13,6 +13,7 @@ exports.default = {
|
|
13
13
|
"cardHeaderToggleIcon": "pf-c-card__header-toggle-icon",
|
14
14
|
"cardSrInput": "pf-c-card__sr-input",
|
15
15
|
"cardTitle": "pf-c-card__title",
|
16
|
+
"cardTitleText": "pf-c-card__title-text",
|
16
17
|
"divider": "pf-c-divider",
|
17
18
|
"modifiers": {
|
18
19
|
"hoverable": "pf-m-hoverable",
|
@@ -11,6 +11,7 @@ export default {
|
|
11
11
|
"cardHeaderToggleIcon": "pf-c-card__header-toggle-icon",
|
12
12
|
"cardSrInput": "pf-c-card__sr-input",
|
13
13
|
"cardTitle": "pf-c-card__title",
|
14
|
+
"cardTitleText": "pf-c-card__title-text",
|
14
15
|
"divider": "pf-c-divider",
|
15
16
|
"modifiers": {
|
16
17
|
"hoverable": "pf-m-hoverable",
|
@@ -30,13 +30,13 @@
|
|
30
30
|
--pf-c-chip-group__label--MaxWidth: 18ch;
|
31
31
|
--pf-c-chip-group__close--MarginTop: calc(var(--pf-global--spacer--xs) * -1);
|
32
32
|
--pf-c-chip-group__close--MarginBottom: calc(var(--pf-global--spacer--xs) * -1);
|
33
|
+
row-gap: var(--pf-c-chip-group--RowGap);
|
34
|
+
column-gap: var(--pf-c-chip-group--ColumnGap);
|
33
35
|
max-width: 100%;
|
34
36
|
padding-top: var(--pf-c-chip-group--PaddingTop);
|
35
37
|
padding-right: var(--pf-c-chip-group--PaddingRight);
|
36
38
|
padding-bottom: var(--pf-c-chip-group--PaddingBottom);
|
37
39
|
padding-left: var(--pf-c-chip-group--PaddingLeft);
|
38
|
-
row-gap: var(--pf-c-chip-group--RowGap);
|
39
|
-
column-gap: var(--pf-c-chip-group--ColumnGap);
|
40
40
|
}
|
41
41
|
.pf-c-chip-group.pf-m-category {
|
42
42
|
--pf-c-chip-group--PaddingTop: var(--pf-c-chip-group--m-category--PaddingTop);
|
@@ -51,10 +51,10 @@
|
|
51
51
|
display: flex;
|
52
52
|
flex: 1;
|
53
53
|
flex-wrap: wrap;
|
54
|
-
align-items: baseline;
|
55
|
-
min-width: 0;
|
56
54
|
row-gap: var(--pf-c-chip-group__main--RowGap);
|
57
55
|
column-gap: var(--pf-c-chip-group__main--ColumnGap);
|
56
|
+
align-items: baseline;
|
57
|
+
min-width: 0;
|
58
58
|
}
|
59
59
|
|
60
60
|
.pf-c-chip-group,
|
@@ -199,12 +199,12 @@
|
|
199
199
|
margin-left: var(--pf-c-content--ol--MarginLeft);
|
200
200
|
}
|
201
201
|
.pf-c-content ol ul {
|
202
|
-
margin-top: var(--pf-c-content--ul--nested--MarginTop);
|
203
202
|
--pf-c-content--ul--MarginLeft: var(--pf-c-content--ul--nested--MarginLeft);
|
203
|
+
margin-top: var(--pf-c-content--ul--nested--MarginTop);
|
204
204
|
}
|
205
205
|
.pf-c-content ol ol {
|
206
|
-
margin-top: var(--pf-c-content--ol--nested--MarginTop);
|
207
206
|
--pf-c-content--ol--MarginLeft: var(--pf-c-content--ol--nested--MarginLeft);
|
207
|
+
margin-top: var(--pf-c-content--ol--nested--MarginTop);
|
208
208
|
}
|
209
209
|
.pf-c-content ul {
|
210
210
|
padding-left: var(--pf-c-content--ul--PaddingLeft);
|
@@ -212,12 +212,12 @@
|
|
212
212
|
list-style: var(--pf-c-content--ul--ListStyle);
|
213
213
|
}
|
214
214
|
.pf-c-content ul ul {
|
215
|
-
margin-top: var(--pf-c-content--ul--nested--MarginTop);
|
216
215
|
--pf-c-content--ul--MarginLeft: var(--pf-c-content--ul--nested--MarginLeft);
|
216
|
+
margin-top: var(--pf-c-content--ul--nested--MarginTop);
|
217
217
|
}
|
218
218
|
.pf-c-content ul ol {
|
219
|
-
margin-top: var(--pf-c-content--ol--nested--MarginTop);
|
220
219
|
--pf-c-content--ol--MarginLeft: var(--pf-c-content--ol--nested--MarginLeft);
|
220
|
+
margin-top: var(--pf-c-content--ol--nested--MarginTop);
|
221
221
|
}
|
222
222
|
.pf-c-content dl {
|
223
223
|
display: grid;
|
@@ -226,8 +226,8 @@
|
|
226
226
|
@media screen and (min-width: 576px) {
|
227
227
|
.pf-c-content dl {
|
228
228
|
grid-template: auto/auto 1fr;
|
229
|
-
grid-column-gap: var(--pf-c-content--dl--ColumnGap);
|
230
229
|
grid-row-gap: var(--pf-c-content--dl--RowGap);
|
230
|
+
grid-column-gap: var(--pf-c-content--dl--ColumnGap);
|
231
231
|
}
|
232
232
|
}
|
233
233
|
.pf-c-content dt {
|
@@ -21,8 +21,8 @@
|
|
21
21
|
@media screen and (min-width: 768px) {
|
22
22
|
.pf-c-data-list:not([class*=pf-m-grid]) .pf-c-data-list__item-content {
|
23
23
|
display: flex;
|
24
|
-
flex-wrap: wrap;
|
25
24
|
flex-grow: 1;
|
25
|
+
flex-wrap: wrap;
|
26
26
|
padding-bottom: var(--pf-c-data-list__item-content--md--PaddingBottom);
|
27
27
|
}
|
28
28
|
}
|
@@ -83,8 +83,8 @@
|
|
83
83
|
@media screen and (min-width: 0) {
|
84
84
|
.pf-c-data-list.pf-m-grid-none .pf-c-data-list__item-content {
|
85
85
|
display: flex;
|
86
|
-
flex-wrap: wrap;
|
87
86
|
flex-grow: 1;
|
87
|
+
flex-wrap: wrap;
|
88
88
|
padding-bottom: var(--pf-c-data-list__item-content--md--PaddingBottom);
|
89
89
|
}
|
90
90
|
}
|
@@ -145,8 +145,8 @@
|
|
145
145
|
@media screen and (min-width: 576px) {
|
146
146
|
.pf-c-data-list.pf-m-grid-sm .pf-c-data-list__item-content {
|
147
147
|
display: flex;
|
148
|
-
flex-wrap: wrap;
|
149
148
|
flex-grow: 1;
|
149
|
+
flex-wrap: wrap;
|
150
150
|
padding-bottom: var(--pf-c-data-list__item-content--md--PaddingBottom);
|
151
151
|
}
|
152
152
|
}
|
@@ -207,8 +207,8 @@
|
|
207
207
|
@media screen and (min-width: 768px) {
|
208
208
|
.pf-c-data-list.pf-m-grid-md .pf-c-data-list__item-content {
|
209
209
|
display: flex;
|
210
|
-
flex-wrap: wrap;
|
211
210
|
flex-grow: 1;
|
211
|
+
flex-wrap: wrap;
|
212
212
|
padding-bottom: var(--pf-c-data-list__item-content--md--PaddingBottom);
|
213
213
|
}
|
214
214
|
}
|
@@ -269,8 +269,8 @@
|
|
269
269
|
@media screen and (min-width: 992px) {
|
270
270
|
.pf-c-data-list.pf-m-grid-lg .pf-c-data-list__item-content {
|
271
271
|
display: flex;
|
272
|
-
flex-wrap: wrap;
|
273
272
|
flex-grow: 1;
|
273
|
+
flex-wrap: wrap;
|
274
274
|
padding-bottom: var(--pf-c-data-list__item-content--md--PaddingBottom);
|
275
275
|
}
|
276
276
|
}
|
@@ -331,8 +331,8 @@
|
|
331
331
|
@media screen and (min-width: 1200px) {
|
332
332
|
.pf-c-data-list.pf-m-grid-xl .pf-c-data-list__item-content {
|
333
333
|
display: flex;
|
334
|
-
flex-wrap: wrap;
|
335
334
|
flex-grow: 1;
|
335
|
+
flex-wrap: wrap;
|
336
336
|
padding-bottom: var(--pf-c-data-list__item-content--md--PaddingBottom);
|
337
337
|
}
|
338
338
|
}
|
@@ -393,8 +393,8 @@
|
|
393
393
|
@media screen and (min-width: 1450px) {
|
394
394
|
.pf-c-data-list.pf-m-grid-2xl .pf-c-data-list__item-content {
|
395
395
|
display: flex;
|
396
|
-
flex-wrap: wrap;
|
397
396
|
flex-grow: 1;
|
397
|
+
flex-wrap: wrap;
|
398
398
|
padding-bottom: var(--pf-c-data-list__item-content--md--PaddingBottom);
|
399
399
|
}
|
400
400
|
}
|
@@ -80,8 +80,8 @@
|
|
80
80
|
@media screen and (min-width: 768px) {
|
81
81
|
.pf-c-data-list:not([class*=pf-m-grid]) .pf-c-data-list__item-content {
|
82
82
|
display: flex;
|
83
|
-
flex-wrap: wrap;
|
84
83
|
flex-grow: 1;
|
84
|
+
flex-wrap: wrap;
|
85
85
|
padding-bottom: var(--pf-c-data-list__item-content--md--PaddingBottom);
|
86
86
|
}
|
87
87
|
}
|
@@ -142,8 +142,8 @@
|
|
142
142
|
@media screen and (min-width: 0) {
|
143
143
|
.pf-c-data-list.pf-m-grid-none .pf-c-data-list__item-content {
|
144
144
|
display: flex;
|
145
|
-
flex-wrap: wrap;
|
146
145
|
flex-grow: 1;
|
146
|
+
flex-wrap: wrap;
|
147
147
|
padding-bottom: var(--pf-c-data-list__item-content--md--PaddingBottom);
|
148
148
|
}
|
149
149
|
}
|
@@ -204,8 +204,8 @@
|
|
204
204
|
@media screen and (min-width: 576px) {
|
205
205
|
.pf-c-data-list.pf-m-grid-sm .pf-c-data-list__item-content {
|
206
206
|
display: flex;
|
207
|
-
flex-wrap: wrap;
|
208
207
|
flex-grow: 1;
|
208
|
+
flex-wrap: wrap;
|
209
209
|
padding-bottom: var(--pf-c-data-list__item-content--md--PaddingBottom);
|
210
210
|
}
|
211
211
|
}
|
@@ -266,8 +266,8 @@
|
|
266
266
|
@media screen and (min-width: 768px) {
|
267
267
|
.pf-c-data-list.pf-m-grid-md .pf-c-data-list__item-content {
|
268
268
|
display: flex;
|
269
|
-
flex-wrap: wrap;
|
270
269
|
flex-grow: 1;
|
270
|
+
flex-wrap: wrap;
|
271
271
|
padding-bottom: var(--pf-c-data-list__item-content--md--PaddingBottom);
|
272
272
|
}
|
273
273
|
}
|
@@ -328,8 +328,8 @@
|
|
328
328
|
@media screen and (min-width: 992px) {
|
329
329
|
.pf-c-data-list.pf-m-grid-lg .pf-c-data-list__item-content {
|
330
330
|
display: flex;
|
331
|
-
flex-wrap: wrap;
|
332
331
|
flex-grow: 1;
|
332
|
+
flex-wrap: wrap;
|
333
333
|
padding-bottom: var(--pf-c-data-list__item-content--md--PaddingBottom);
|
334
334
|
}
|
335
335
|
}
|
@@ -390,8 +390,8 @@
|
|
390
390
|
@media screen and (min-width: 1200px) {
|
391
391
|
.pf-c-data-list.pf-m-grid-xl .pf-c-data-list__item-content {
|
392
392
|
display: flex;
|
393
|
-
flex-wrap: wrap;
|
394
393
|
flex-grow: 1;
|
394
|
+
flex-wrap: wrap;
|
395
395
|
padding-bottom: var(--pf-c-data-list__item-content--md--PaddingBottom);
|
396
396
|
}
|
397
397
|
}
|
@@ -452,8 +452,8 @@
|
|
452
452
|
@media screen and (min-width: 1450px) {
|
453
453
|
.pf-c-data-list.pf-m-grid-2xl .pf-c-data-list__item-content {
|
454
454
|
display: flex;
|
455
|
-
flex-wrap: wrap;
|
456
455
|
flex-grow: 1;
|
456
|
+
flex-wrap: wrap;
|
457
457
|
padding-bottom: var(--pf-c-data-list__item-content--md--PaddingBottom);
|
458
458
|
}
|
459
459
|
}
|
@@ -813,8 +813,8 @@
|
|
813
813
|
|
814
814
|
.pf-c-data-list__item-action {
|
815
815
|
--pf-hidden-visible--visible--Display: var(--pf-c-data-list__item-action--Display);
|
816
|
-
align-items: flex-start;
|
817
816
|
align-content: flex-start;
|
817
|
+
align-items: flex-start;
|
818
818
|
padding-top: var(--pf-c-data-list__item-action--PaddingTop);
|
819
819
|
padding-bottom: var(--pf-c-data-list__item-action--PaddingBottom);
|
820
820
|
margin-left: var(--pf-c-data-list__item-action--MarginLeft);
|
@@ -840,8 +840,8 @@
|
|
840
840
|
|
841
841
|
.pf-c-data-list__item-content {
|
842
842
|
display: grid;
|
843
|
-
width: 100%;
|
844
843
|
grid-template-columns: auto 1fr;
|
844
|
+
width: 100%;
|
845
845
|
}
|
846
846
|
|
847
847
|
.pf-c-data-list__cell {
|
@@ -857,8 +857,8 @@
|
|
857
857
|
}
|
858
858
|
.pf-c-data-list__cell.pf-m-icon {
|
859
859
|
flex-grow: 0;
|
860
|
-
margin-right: var(--pf-c-data-list__cell--m-icon--MarginRight);
|
861
860
|
grid-column: 1/2;
|
861
|
+
margin-right: var(--pf-c-data-list__cell--m-icon--MarginRight);
|
862
862
|
}
|
863
863
|
.pf-c-data-list__cell.pf-m-icon + .pf-c-data-list__cell {
|
864
864
|
grid-column: 2/3;
|
@@ -2,9 +2,6 @@
|
|
2
2
|
--pf-c-date-picker--m-top__calendar--Top: 0;
|
3
3
|
--pf-c-date-picker--m-top__calendar--TranslateY: calc(-100% - var(--pf-global--spacer--xs));
|
4
4
|
--pf-c-date-picker__helper-text--MarginTop: var(--pf-global--spacer--xs);
|
5
|
-
--pf-c-date-picker__helper-text--FontSize: var(--pf-global--FontSize--sm);
|
6
|
-
--pf-c-date-picker__helper-text--Color: var(--pf-global--Color--100);
|
7
|
-
--pf-c-date-picker__helper-text--m-error--Color: var(--pf-global--danger-color--100);
|
8
5
|
--pf-c-date-picker__input--c-form-control--Width: calc(var(--pf-c-date-picker__input--c-form-control--width-chars) * 1ch + var(--pf-c-date-picker__input--c-form-control--width-base));
|
9
6
|
--pf-c-date-picker__input--c-form-control--width-base: calc(var(--pf-global--spacer--xl) + var(--pf-global--spacer--sm));
|
10
7
|
--pf-c-date-picker__input--c-form-control--width-chars: 10;
|
@@ -22,11 +19,6 @@
|
|
22
19
|
|
23
20
|
.pf-c-date-picker__helper-text {
|
24
21
|
margin-top: var(--pf-c-date-picker__helper-text--MarginTop);
|
25
|
-
font-size: var(--pf-c-date-picker__helper-text--FontSize);
|
26
|
-
color: var(--pf-c-date-picker__helper-text--Color);
|
27
|
-
}
|
28
|
-
.pf-c-date-picker__helper-text.pf-m-error {
|
29
|
-
--pf-c-date-picker__helper-text--Color: var(--pf-c-date-picker__helper-text--m-error--Color);
|
30
22
|
}
|
31
23
|
|
32
24
|
.pf-c-date-picker__input .pf-c-form-control {
|