@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.
Files changed (76) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/css/components/AboutModalBox/about-modal-box.css +7 -7
  3. package/css/components/Alert/alert.css +3 -3
  4. package/css/components/Banner/banner.css +14 -14
  5. package/css/components/Banner/banner.d.ts +5 -5
  6. package/css/components/Banner/banner.js +5 -5
  7. package/css/components/Banner/banner.mjs +5 -5
  8. package/css/components/CalendarMonth/calendar-month.css +1 -1
  9. package/css/components/Card/card.css +12 -10
  10. package/css/components/Card/card.d.ts +1 -0
  11. package/css/components/Card/card.js +1 -0
  12. package/css/components/Card/card.mjs +1 -0
  13. package/css/components/Chip/chip.css +1 -1
  14. package/css/components/ChipGroup/chip-group.css +4 -4
  15. package/css/components/Content/content.css +5 -5
  16. package/css/components/DataList/data-list-grid.css +7 -7
  17. package/css/components/DataList/data-list.css +10 -10
  18. package/css/components/DatePicker/date-picker.css +0 -8
  19. package/css/components/DatePicker/date-picker.d.ts +0 -1
  20. package/css/components/DatePicker/date-picker.js +0 -1
  21. package/css/components/DatePicker/date-picker.mjs +0 -1
  22. package/css/components/DescriptionList/description-list.css +7 -7
  23. package/css/components/Divider/divider.css +2 -2
  24. package/css/components/Drawer/drawer.css +2 -2
  25. package/css/components/DualListSelector/dual-list-selector.css +1 -1
  26. package/css/components/EmptyState/empty-state.css +2 -2
  27. package/css/components/Form/form.css +12 -12
  28. package/css/components/FormControl/form-control.css +2 -5
  29. package/css/components/HelperText/helper-text.css +4 -0
  30. package/css/components/HelperText/helper-text.d.ts +1 -0
  31. package/css/components/HelperText/helper-text.js +1 -0
  32. package/css/components/HelperText/helper-text.mjs +1 -0
  33. package/css/components/Hint/hint.css +2 -2
  34. package/css/components/InputGroup/input-group.css +61 -85
  35. package/css/components/InputGroup/input-group.d.ts +4 -2
  36. package/css/components/InputGroup/input-group.js +4 -2
  37. package/css/components/InputGroup/input-group.mjs +4 -2
  38. package/css/components/Label/label.css +6 -6
  39. package/css/components/LabelGroup/label-group.css +2 -2
  40. package/css/components/Login/login.css +10 -10
  41. package/css/components/Masthead/masthead.css +4 -4
  42. package/css/components/Menu/menu.css +6 -6
  43. package/css/components/MenuToggle/menu-toggle.css +1 -1
  44. package/css/components/MultipleFileUpload/multiple-file-upload.css +6 -6
  45. package/css/components/Nav/nav.css +1 -1
  46. package/css/components/NotificationDrawer/notification-drawer.css +3 -3
  47. package/css/components/OptionsMenu/options-menu.css +0 -5
  48. package/css/components/Page/page.css +11 -11
  49. package/css/components/Popover/popover.css +2 -0
  50. package/css/components/Progress/progress.css +10 -10
  51. package/css/components/ProgressStepper/progress-stepper.css +5 -5
  52. package/css/components/SearchInput/search-input.css +2 -2
  53. package/css/components/Select/select.css +1 -1
  54. package/css/components/Sidebar/sidebar.css +69 -26
  55. package/css/components/Sidebar/sidebar.d.ts +2 -0
  56. package/css/components/Sidebar/sidebar.js +2 -0
  57. package/css/components/Sidebar/sidebar.mjs +2 -0
  58. package/css/components/SimpleList/simple-list.css +1 -1
  59. package/css/components/Spinner/spinner.css +4 -4
  60. package/css/components/Table/table-scrollable.css +31 -26
  61. package/css/components/Table/table-scrollable.d.ts +3 -2
  62. package/css/components/Table/table-scrollable.js +3 -2
  63. package/css/components/Table/table-scrollable.mjs +3 -2
  64. package/css/components/Table/table.css +3 -2
  65. package/css/components/TextInputGroup/text-input-group.css +2 -2
  66. package/css/components/Tile/tile.css +1 -1
  67. package/css/components/Timestamp/timestamp.css +3 -3
  68. package/css/components/Toolbar/toolbar.css +13 -6
  69. package/css/components/Wizard/wizard.css +14 -1
  70. package/css/components/Wizard/wizard.d.ts +1 -0
  71. package/css/components/Wizard/wizard.js +1 -0
  72. package/css/components/Wizard/wizard.mjs +1 -0
  73. package/css/docs/components/Table/examples/Table.css +4 -0
  74. package/css/layouts/Gallery/gallery.css +1 -1
  75. package/css/layouts/Grid/grid.css +2 -2
  76. package/package.json +3 -3
@@ -235,6 +235,7 @@
235
235
  position: relative;
236
236
  display: flex;
237
237
  flex-basis: var(--pf-c-masthead__main--FlexBasis);
238
+ grid-column: var(--pf-c-masthead__main--GridColumn);
238
239
  align-items: center;
239
240
  align-self: stretch;
240
241
  order: var(--pf-c-masthead__main--Order);
@@ -242,7 +243,6 @@
242
243
  padding-top: var(--pf-c-masthead__main--PaddingTop);
243
244
  padding-bottom: var(--pf-c-masthead__main--PaddingBottom);
244
245
  margin-right: var(--pf-c-masthead__main--MarginRight);
245
- grid-column: var(--pf-c-masthead__main--GridColumn);
246
246
  }
247
247
  .pf-c-masthead__main::before {
248
248
  position: absolute;
@@ -259,6 +259,9 @@
259
259
  .pf-c-masthead__content {
260
260
  display: flex;
261
261
  flex-grow: 1;
262
+ flex-shrink: 1;
263
+ grid-column: var(--pf-c-masthead__content--GridColumn);
264
+ grid-column-end: -1;
262
265
  align-items: center;
263
266
  align-self: stretch;
264
267
  order: var(--pf-c-masthead__content--Order);
@@ -266,9 +269,6 @@
266
269
  padding-top: var(--pf-c-masthead__content--PaddingTop);
267
270
  padding-bottom: var(--pf-c-masthead__content--PaddingBottom);
268
271
  margin-left: var(--pf-c-masthead__content--MarginLeft);
269
- grid-column: var(--pf-c-masthead__content--GridColumn);
270
- grid-column-end: -1;
271
- flex-shrink: 1;
272
272
  }
273
273
  .pf-c-masthead__content:only-child {
274
274
  --pf-c-masthead__content--MarginLeft: 0;
@@ -182,12 +182,6 @@
182
182
  --pf-c-menu--m-scrollable__footer--BoxShadow: var(--pf-global--BoxShadow--sm-top);
183
183
  --pf-c-menu--m-scrollable__footer--after--BorderTopWidth: 0;
184
184
  --pf-c-menu--m-scrollable__footer--after--BorderBottomWidth: var(--pf-global--BorderWidth--sm);
185
- top: var(--pf-c-menu--Top);
186
- z-index: var(--pf-c-menu--ZIndex);
187
- width: var(--pf-c-menu--Width);
188
- min-width: var(--pf-c-menu--MinWidth);
189
- background-color: var(--pf-c-menu--BackgroundColor);
190
- box-shadow: var(--pf-c-menu--BoxShadow);
191
185
  --pf-c-menu--m-nav--BoxShadow: var(--pf-global--BoxShadow--lg);
192
186
  --pf-c-menu--m-nav--BackgroundColor: var(--pf-global--BackgroundColor--dark-300);
193
187
  --pf-c-menu--m-nav__list--PaddingTop: 0;
@@ -215,6 +209,12 @@
215
209
  --pf-c-menu--m-nav--c-menu--m-left--Right: calc(100% - var(--pf-c-menu--m-nav--c-menu--m-left--right-offset));
216
210
  --pf-c-menu--m-nav--c-menu--m-top--Bottom: calc(0 + var(--pf-c-menu--m-nav--c-menu--m-top--bottom-offset));
217
211
  --pf-c-menu--m-nav__list-item--first-child--c-menu--Top: 0;
212
+ top: var(--pf-c-menu--Top);
213
+ z-index: var(--pf-c-menu--ZIndex);
214
+ width: var(--pf-c-menu--Width);
215
+ min-width: var(--pf-c-menu--MinWidth);
216
+ background-color: var(--pf-c-menu--BackgroundColor);
217
+ box-shadow: var(--pf-c-menu--BoxShadow);
218
218
  }
219
219
  .pf-c-menu .pf-c-menu__content .pf-c-menu .pf-c-menu__content {
220
220
  overflow: visible;
@@ -368,8 +368,8 @@
368
368
 
369
369
  .pf-c-menu-toggle__icon {
370
370
  display: inline-flex;
371
- align-self: center;
372
371
  flex-shrink: 0;
372
+ align-self: center;
373
373
  margin-right: var(--pf-c-menu-toggle__icon--MarginRight);
374
374
  line-height: 1;
375
375
  }
@@ -62,8 +62,8 @@
62
62
  --pf-c-multiple-file-upload__status-item-progress-text--Color: var(--pf-global--primary-color--100);
63
63
  --pf-c-multiple-file-upload__status-item-progress-size--Color: var(--pf-global--Color--200);
64
64
  display: grid;
65
- gap: var(--pf-c-multiple-file-upload--Gap);
66
65
  grid-template-columns: var(--pf-c-multiple-file-upload--GridTemplateColumns);
66
+ gap: var(--pf-c-multiple-file-upload--Gap);
67
67
  }
68
68
  .pf-c-multiple-file-upload.pf-m-horizontal {
69
69
  --pf-c-multiple-file-upload--GridTemplateColumns: var(--pf-c-multiple-file-upload--m-horizontal--GridTemplateColumns);
@@ -89,21 +89,21 @@
89
89
 
90
90
  .pf-c-multiple-file-upload__main {
91
91
  display: grid;
92
+ grid-template-areas: var(--pf-c-multiple-file-upload__main--GridTemplateAreas);
93
+ grid-template-rows: var(--pf-c-multiple-file-upload__main--GridTemplateRows);
94
+ grid-template-columns: var(--pf-c-multiple-file-upload__main--GridTemplateColumns);
95
+ gap: var(--pf-c-multiple-file-upload__main--Gap);
92
96
  padding: var(--pf-c-multiple-file-upload__main--PaddingTop) var(--pf-c-multiple-file-upload__main--PaddingRight) var(--pf-c-multiple-file-upload__main--PaddingBottom) var(--pf-c-multiple-file-upload__main--PaddingLeft);
93
97
  text-align: var(--pf-c-multiple-file-upload__main--TextAlign);
94
98
  background-color: var(--pf-c-multiple-file-upload__main--BackgroundColor);
95
99
  border: var(--pf-c-multiple-file-upload__main--BorderWidth) var(--pf-c-multiple-file-upload__main--BorderStyle) var(--pf-c-multiple-file-upload__main--BorderColor);
96
- grid-template-columns: var(--pf-c-multiple-file-upload__main--GridTemplateColumns);
97
- grid-template-rows: var(--pf-c-multiple-file-upload__main--GridTemplateRows);
98
- grid-template-areas: var(--pf-c-multiple-file-upload__main--GridTemplateAreas);
99
- gap: var(--pf-c-multiple-file-upload__main--Gap);
100
100
  }
101
101
 
102
102
  .pf-c-multiple-file-upload__title {
103
103
  display: var(--pf-c-multiple-file-upload__title--Display);
104
+ grid-area: title;
104
105
  grid-template-columns: var(--pf-c-multiple-file-upload__title--GridTemplateColumns);
105
106
  gap: var(--pf-c-multiple-file-upload__title--Gap);
106
- grid-area: title;
107
107
  }
108
108
 
109
109
  .pf-c-multiple-file-upload__title-icon {
@@ -862,8 +862,8 @@
862
862
  --pf-c-nav__link--focus--after--BorderLeftWidth: var(--pf-c-nav__section__link--focus--after--BorderWidth);
863
863
  --pf-c-nav__link--active--after--BorderLeftWidth: var(--pf-c-nav__section__link--active--after--BorderWidth);
864
864
  --pf-c-nav__link--m-current--after--BorderLeftWidth: var(--pf-c-nav__section__link--m-current--after--BorderWidth);
865
- margin-top: var(--pf-c-nav__section--MarginTop);
866
865
  --pf-c-nav--c-divider--MarginBottom: 0;
866
+ margin-top: var(--pf-c-nav__section--MarginTop);
867
867
  }
868
868
  .pf-c-nav__section + .pf-c-nav__section {
869
869
  --pf-c-nav__section--MarginTop: var(--pf-c-nav__section--section--MarginTop);
@@ -169,9 +169,9 @@
169
169
 
170
170
  .pf-c-notification-drawer__list-item-header {
171
171
  display: flex;
172
- align-items: baseline;
173
- grid-column: 1/2;
174
172
  grid-row: 1/2;
173
+ grid-column: 1/2;
174
+ align-items: baseline;
175
175
  margin-bottom: var(--pf-c-notification-drawer__list-item-header--MarginBottom);
176
176
  }
177
177
 
@@ -192,8 +192,8 @@
192
192
  }
193
193
 
194
194
  .pf-c-notification-drawer__list-item-action {
195
- grid-column: 2/3;
196
195
  grid-row: 1/3;
196
+ grid-column: 2/3;
197
197
  }
198
198
 
199
199
  .pf-c-notification-drawer__list-item-description {
@@ -5,7 +5,6 @@
5
5
  --pf-c-options-menu__toggle--PaddingBottom: var(--pf-global--spacer--form-element);
6
6
  --pf-c-options-menu__toggle--PaddingLeft: var(--pf-global--spacer--sm);
7
7
  --pf-c-options-menu__toggle--MinWidth: 0;
8
- --pf-c-options-menu__toggle--LineHeight: var(--pf-global--LineHeight--md);
9
8
  --pf-c-options-menu__toggle--BorderWidth: var(--pf-global--BorderWidth--sm);
10
9
  --pf-c-options-menu__toggle--BorderTopColor: var(--pf-global--BorderColor--300);
11
10
  --pf-c-options-menu__toggle--BorderRightColor: var(--pf-global--BorderColor--300);
@@ -113,7 +112,6 @@
113
112
  min-width: var(--pf-c-options-menu__toggle--MinWidth);
114
113
  max-width: 100%;
115
114
  padding: var(--pf-c-options-menu__toggle--PaddingTop) var(--pf-c-options-menu__toggle--PaddingRight) var(--pf-c-options-menu__toggle--PaddingBottom) var(--pf-c-options-menu__toggle--PaddingLeft);
116
- line-height: var(--pf-c-options-menu__toggle--LineHeight);
117
115
  color: var(--pf-c-options-menu__toggle--Color);
118
116
  background-color: var(--pf-c-options-menu__toggle--BackgroundColor);
119
117
  border: none;
@@ -131,9 +129,6 @@
131
129
  display: inline-block;
132
130
  color: var(--pf-c-options-menu__toggle--m-plain--Color);
133
131
  }
134
- .pf-c-options-menu__toggle.pf-m-plain:not(.pf-m-text) .pf-c-options-menu__toggle-button-icon {
135
- line-height: var(--pf-c-options-menu__toggle--LineHeight);
136
- }
137
132
  .pf-c-options-menu__toggle.pf-m-plain:hover, .pf-c-options-menu__toggle.pf-m-plain:active, .pf-c-options-menu__toggle.pf-m-plain.pf-m-active, .pf-c-options-menu__toggle.pf-m-plain:focus, .pf-c-options-menu.pf-m-expanded > .pf-c-options-menu__toggle.pf-m-plain {
138
133
  --pf-c-options-menu__toggle--m-plain--Color: var(--pf-c-options-menu__toggle--m-plain--hover--Color);
139
134
  --pf-c-options-menu--m-plain__toggle-icon--Color: var(--pf-c-options-menu--m-plain--hover__toggle-icon--Color);
@@ -201,10 +201,10 @@
201
201
  --pf-c-page__main-wizard--BorderTopWidth: var(--pf-global--BorderWidth--sm);
202
202
  --pf-c-page__main-wizard--m-light-200--BackgroundColor: var(--pf-global--BackgroundColor--200);
203
203
  display: grid;
204
- height: 100%;
205
- grid-template-columns: 1fr;
206
- grid-template-rows: max-content 1fr;
207
204
  grid-template-areas: "header" "main";
205
+ grid-template-rows: max-content 1fr;
206
+ grid-template-columns: 1fr;
207
+ height: 100%;
208
208
  background-color: var(--pf-c-page--BackgroundColor);
209
209
  }
210
210
  @media (min-width: 1200px) {
@@ -251,8 +251,8 @@
251
251
  }
252
252
  @media (min-width: 1200px) {
253
253
  .pf-c-page {
254
- grid-template-columns: max-content 1fr;
255
254
  grid-template-areas: "header header" "nav main";
255
+ grid-template-columns: max-content 1fr;
256
256
  }
257
257
  }
258
258
  .pf-c-page.pf-m-full-height {
@@ -263,14 +263,14 @@
263
263
 
264
264
  .pf-c-page__header,
265
265
  .pf-c-page > .pf-c-masthead {
266
- grid-area: header;
267
266
  z-index: var(--pf-c-page__header--ZIndex);
267
+ grid-area: header;
268
268
  }
269
269
 
270
270
  .pf-c-page__header {
271
271
  color: var(--pf-global--Color--100);
272
- grid-template-columns: auto auto;
273
272
  display: grid;
273
+ grid-template-columns: auto auto;
274
274
  align-items: center;
275
275
  min-width: 0;
276
276
  min-height: var(--pf-c-page__header--MinHeight);
@@ -318,18 +318,18 @@
318
318
  }
319
319
 
320
320
  .pf-c-page__header-nav {
321
+ grid-row: 2/3;
322
+ grid-column: 1/-1;
321
323
  align-self: stretch;
322
324
  min-width: 0;
323
325
  padding-right: var(--pf-c-page__header-nav--PaddingRight);
324
326
  padding-left: var(--pf-c-page__header-nav--PaddingLeft);
325
327
  background-color: var(--pf-c-page__header-nav--BackgroundColor);
326
- grid-column: 1/-1;
327
- grid-row: 2/3;
328
328
  }
329
329
  @media screen and (min-width: 1200px) {
330
330
  .pf-c-page__header-nav {
331
- grid-column: 2/3;
332
331
  grid-row: 1/2;
332
+ grid-column: 2/3;
333
333
  }
334
334
  }
335
335
  .pf-c-page__header-nav .pf-c-nav {
@@ -395,10 +395,10 @@
395
395
  }
396
396
 
397
397
  .pf-c-page__sidebar {
398
+ z-index: var(--pf-c-page__sidebar--ZIndex);
398
399
  grid-area: nav;
399
400
  grid-row-start: 2;
400
401
  grid-column-start: 1;
401
- z-index: var(--pf-c-page__sidebar--ZIndex);
402
402
  width: var(--pf-c-page__sidebar--Width);
403
403
  overflow-x: hidden;
404
404
  overflow-y: auto;
@@ -678,8 +678,8 @@
678
678
 
679
679
  .pf-c-page__main,
680
680
  .pf-c-page__drawer {
681
- grid-area: main;
682
681
  z-index: var(--pf-c-page__main--ZIndex);
682
+ grid-area: main;
683
683
  overflow-x: hidden;
684
684
  overflow-y: auto;
685
685
  -webkit-overflow-scrolling: touch;
@@ -43,6 +43,7 @@
43
43
  --pf-c-popover__title-text--FontSize: var(--pf-global--FontSize--md);
44
44
  --pf-c-popover__title-icon--MarginRight: var(--pf-global--spacer--sm);
45
45
  --pf-c-popover__title-icon--Color: var(--pf-global--Color--100);
46
+ --pf-c-popover__title-icon--FontSize: var(--pf-global--FontSize--md);
46
47
  --pf-c-popover__footer--MarginTop: var(--pf-global--spacer--md);
47
48
  position: relative;
48
49
  min-width: var(--pf-c-popover--MinWidth);
@@ -150,6 +151,7 @@
150
151
 
151
152
  .pf-c-popover__title-icon {
152
153
  margin-right: var(--pf-c-popover__title-icon--MarginRight);
154
+ font-size: var(--pf-c-popover__title-icon--FontSize);
153
155
  color: var(--pf-c-popover__title-icon--Color);
154
156
  }
155
157
 
@@ -27,10 +27,10 @@
27
27
  --pf-c-progress--m-sm__measure--FontSize: var(--pf-global--FontSize--sm);
28
28
  --pf-c-progress--m-lg__bar--Height: var(--pf-global--spacer--lg);
29
29
  display: grid;
30
- align-items: end;
31
- grid-gap: var(--pf-c-progress--GridGap);
32
- grid-template-columns: auto auto;
33
30
  grid-template-rows: 1fr auto;
31
+ grid-template-columns: auto auto;
32
+ grid-gap: var(--pf-c-progress--GridGap);
33
+ align-items: end;
34
34
  }
35
35
  .pf-c-progress.pf-m-sm {
36
36
  --pf-c-progress__bar--Height: var(--pf-c-progress--m-sm__bar--Height);
@@ -59,8 +59,8 @@
59
59
  grid-column: 1/3;
60
60
  }
61
61
  .pf-c-progress.pf-m-outside .pf-c-progress__status {
62
- grid-column: 2/3;
63
62
  grid-row: 2/3;
63
+ grid-column: 2/3;
64
64
  align-self: center;
65
65
  }
66
66
  .pf-c-progress.pf-m-outside .pf-c-progress__measure {
@@ -108,8 +108,8 @@
108
108
  }
109
109
 
110
110
  .pf-c-progress__description {
111
- word-break: break-word;
112
111
  grid-column: 1/2;
112
+ word-break: break-word;
113
113
  }
114
114
  .pf-c-progress__description.pf-m-truncate {
115
115
  overflow: hidden;
@@ -119,13 +119,13 @@
119
119
 
120
120
  .pf-c-progress__status {
121
121
  display: flex;
122
+ grid-row: 1/2;
123
+ grid-column: 2/3;
124
+ gap: var(--pf-c-progress__status--Gap);
122
125
  align-items: flex-start;
123
126
  justify-content: flex-end;
124
- grid-column: 2/3;
125
- grid-row: 1/2;
126
127
  text-align: right;
127
128
  word-break: break-word;
128
- gap: var(--pf-c-progress__status--Gap);
129
129
  }
130
130
 
131
131
  .pf-c-progress__status-icon {
@@ -134,8 +134,8 @@
134
134
 
135
135
  .pf-c-progress__bar {
136
136
  position: relative;
137
- grid-column: 1/3;
138
137
  grid-row: 2/3;
138
+ grid-column: 1/3;
139
139
  align-self: center;
140
140
  height: var(--pf-c-progress__bar--Height);
141
141
  background-color: var(--pf-c-progress__bar--BackgroundColor);
@@ -160,8 +160,8 @@
160
160
  }
161
161
 
162
162
  .pf-c-progress__helper-text {
163
- grid-column: 1/3;
164
163
  grid-row: 3/4;
164
+ grid-column: 1/3;
165
165
  margin-top: var(--pf-c-progress__helper-text--MarginTop);
166
166
  }
167
167
 
@@ -114,10 +114,10 @@
114
114
  --pf-c-progress-stepper--m-center__step-main--before--Content: "";
115
115
  position: relative;
116
116
  display: grid;
117
- grid-auto-flow: var(--pf-c-progress-stepper--GridAutoFlow);
118
- grid-template-columns: var(--pf-c-progress-stepper--GridTemplateColumns);
119
117
  grid-template-rows: var(--pf-c-progress-stepper--GridTemplateRows);
118
+ grid-template-columns: var(--pf-c-progress-stepper--GridTemplateColumns);
120
119
  grid-auto-columns: 1fr;
120
+ grid-auto-flow: var(--pf-c-progress-stepper--GridAutoFlow);
121
121
  }
122
122
  @media screen and (min-width: 768px) {
123
123
  .pf-c-progress-stepper {
@@ -184,8 +184,8 @@
184
184
  grid-auto-flow: var(--pf-c-progress-stepper--m-compact--GridAutoFlow);
185
185
  }
186
186
  .pf-c-progress-stepper.pf-m-compact .pf-c-progress-stepper__step-connector {
187
- min-width: var(--pf-c-progress-stepper--m-compact__step-connector--MinWidth);
188
187
  grid-row: var(--pf-c-progress-stepper--m-compact__step-connector--GridRow);
188
+ min-width: var(--pf-c-progress-stepper--m-compact__step-connector--MinWidth);
189
189
  padding-bottom: var(--pf-c-progress-stepper--m-compact__step-connector--PaddingBottom);
190
190
  }
191
191
  .pf-c-progress-stepper.pf-m-compact .pf-c-progress-stepper__step-main {
@@ -302,11 +302,11 @@
302
302
  }
303
303
  .pf-c-progress-stepper__step-title.pf-m-help-text {
304
304
  text-decoration: underline;
305
- cursor: pointer;
305
+ text-decoration-thickness: var(--pf-c-progress-stepper__step-title--m-help-text--TextDecorationThickness);
306
306
  text-decoration-style: dashed;
307
307
  text-decoration-color: var(--pf-c-progress-stepper__step-title--m-help-text--TextDecorationColor);
308
- text-decoration-thickness: var(--pf-c-progress-stepper__step-title--m-help-text--TextDecorationThickness);
309
308
  text-underline-offset: var(--pf-c-progress-stepper__step-title--m-help-text--TextUnderlineOffset);
309
+ cursor: pointer;
310
310
  }
311
311
  .pf-c-progress-stepper__step-title.pf-m-help-text:hover {
312
312
  --pf-c-progress-stepper__step-title--Color: var(--pf-c-progress-stepper__step-title--m-help-text--hover--Color);
@@ -57,9 +57,9 @@
57
57
 
58
58
  .pf-c-search-input__text {
59
59
  display: grid;
60
- grid-template-columns: 1fr;
61
- grid-template-areas: "text-input";
62
60
  flex: 1;
61
+ grid-template-areas: "text-input";
62
+ grid-template-columns: 1fr;
63
63
  }
64
64
  .pf-c-search-input__text::before, .pf-c-search-input__text::after {
65
65
  position: absolute;
@@ -356,8 +356,8 @@
356
356
  .pf-c-select__toggle-typeahead {
357
357
  flex-basis: var(--pf-c-select__toggle-typeahead--FlexBasis);
358
358
  flex-grow: 1;
359
- min-width: var(--pf-c-select__toggle-typeahead--MinWidth);
360
359
  flex-shrink: 0;
360
+ min-width: var(--pf-c-select__toggle-typeahead--MinWidth);
361
361
  }
362
362
  .pf-c-select__toggle-typeahead.pf-c-form-control {
363
363
  background-color: var(--pf-c-select__toggle-typeahead--BackgroundColor);
@@ -1,26 +1,52 @@
1
1
  .pf-c-sidebar {
2
+ --pf-c-sidebar--inset: var(--pf-global--spacer--md);
3
+ --pf-c-sidebar--xl--inset: var(--pf-global--spacer--lg);
2
4
  --pf-c-sidebar--BackgroundColor: var(--pf-global--BackgroundColor--100);
5
+ --pf-c-sidebar--BorderWidth--base: var(--pf-global--BorderWidth--sm);
6
+ --pf-c-sidebar--BorderColor--base: var(--pf-global--BorderColor--100);
7
+ --pf-c-sidebar__panel--PaddingTop: 0;
8
+ --pf-c-sidebar__panel--PaddingRight: 0;
9
+ --pf-c-sidebar__panel--PaddingBottom: 0;
10
+ --pf-c-sidebar__panel--PaddingLeft: 0;
11
+ --pf-c-sidebar__panel--Order: -1;
12
+ --pf-c-sidebar__panel--m-padding--PaddingTop: var(--pf-c-sidebar--inset);
13
+ --pf-c-sidebar__panel--m-padding--PaddingRight: var(--pf-c-sidebar--inset);
14
+ --pf-c-sidebar__panel--m-padding--PaddingBottom: var(--pf-c-sidebar--inset);
15
+ --pf-c-sidebar__panel--m-padding--PaddingLeft: var(--pf-c-sidebar--inset);
16
+ --pf-c-sidebar__content--PaddingTop: 0;
17
+ --pf-c-sidebar__content--PaddingRight: 0;
18
+ --pf-c-sidebar__content--PaddingBottom: 0;
19
+ --pf-c-sidebar__content--PaddingLeft: 0;
20
+ --pf-c-sidebar__content--Order: 1;
21
+ --pf-c-sidebar__content--m-padding--PaddingTop: var(--pf-c-sidebar--inset);
22
+ --pf-c-sidebar__content--m-padding--PaddingRight: var(--pf-c-sidebar--inset);
23
+ --pf-c-sidebar__content--m-padding--PaddingBottom: var(--pf-c-sidebar--inset);
24
+ --pf-c-sidebar__content--m-padding--PaddingLeft: var(--pf-c-sidebar--inset);
3
25
  --pf-c-sidebar__main--FlexDirection: column;
4
26
  --pf-c-sidebar__main--md--FlexDirection: row;
5
27
  --pf-c-sidebar__main--AlignItems: stretch;
6
28
  --pf-c-sidebar__main--md--AlignItems: start;
7
29
  --pf-c-sidebar__main--child--MarginTop: 0;
8
- --pf-c-sidebar__main--child--MarginLeft: 0;
9
- --pf-c-sidebar--m-gutter__main--Gap: var(--pf-global--spacer--md);
10
- --pf-c-sidebar--m-gutter__main--xl--Gap: var(--pf-global--spacer--lg);
11
- --pf-c-sidebar--m-panel-right__panel--Order: 0;
30
+ --pf-c-sidebar--m-gutter__main--Gap: var(--pf-c-sidebar--inset);
31
+ --pf-c-sidebar__main--m-border--before--Display: none;
32
+ --pf-c-sidebar__main--m-border--before--md--Display: block;
33
+ --pf-c-sidebar__main--m-border--before--BorderWidth: var(--pf-c-sidebar--BorderWidth--base);
34
+ --pf-c-sidebar__main--m-border--before--BorderColor: var(--pf-c-sidebar--BorderColor--base);
35
+ --pf-c-sidebar--m-panel-right__panel--Order: -1;
12
36
  --pf-c-sidebar--m-panel-right__panel--md--Order: 1;
37
+ --pf-c-sidebar--m-panel-right__content--md--Order: -1;
13
38
  --pf-c-sidebar--m-stack__main--FlexDirection: column;
14
39
  --pf-c-sidebar--m-stack__main--AlignItems: stretch;
15
40
  --pf-c-sidebar--m-stack__panel--Position: sticky;
16
41
  --pf-c-sidebar--m-stack__panel--Top: 0;
17
42
  --pf-c-sidebar--m-stack__panel--BoxShadow: var(--pf-c-sidebar__panel--BoxShadow--base);
18
- --pf-c-sidebar--m-stack--m-panel-right__panel--Order: 0;
43
+ --pf-c-sidebar--m-stack--m-panel-right__panel--Order: -1;
19
44
  --pf-c-sidebar--m-split__main--AlignItems: start;
20
45
  --pf-c-sidebar--m-split__main--FlexDirection: row;
21
46
  --pf-c-sidebar--m-split__panel--Position: static;
22
47
  --pf-c-sidebar--m-split__panel--Top: auto;
23
48
  --pf-c-sidebar--m-split--m-panel-right__panel--Order: 1;
49
+ --pf-c-sidebar--m-split__main--m-border--before--Display: block;
24
50
  --pf-c-sidebar__panel--FlexBasis--base: auto;
25
51
  --pf-c-sidebar__panel--BoxShadow--base: 0 0.25rem 0.25rem -0.25rem rgba(3, 3, 3, 0.16);
26
52
  --pf-c-sidebar__panel--BoxShadow: var(--pf-c-sidebar__panel--BoxShadow--base);
@@ -34,7 +60,6 @@
34
60
  --pf-c-sidebar__panel--m-split--FlexBasis: 15.625rem;
35
61
  --pf-c-sidebar__panel--m-stack--FlexBasis: auto;
36
62
  --pf-c-sidebar__panel--ZIndex: var(--pf-global--ZIndex--xs);
37
- --pf-c-sidebar__panel--Order: 0;
38
63
  --pf-c-sidebar__panel--BackgroundColor: var(--pf-global--BackgroundColor--100);
39
64
  --pf-c-sidebar__content--BackgroundColor: var(--pf-global--BackgroundColor--100);
40
65
  --pf-c-sidebar__panel--m-sticky--Top: 0;
@@ -44,60 +69,50 @@
44
69
  @media (min-width: 768px) {
45
70
  .pf-c-sidebar {
46
71
  --pf-c-sidebar__main--FlexDirection: var(--pf-c-sidebar__main--md--FlexDirection);
72
+ --pf-c-sidebar__main--AlignItems: var(--pf-c-sidebar__main--md--AlignItems);
73
+ --pf-c-sidebar__main--m-border--before--Display: var(--pf-c-sidebar__main--m-border--before--md--Display);
47
74
  --pf-c-sidebar__panel--BoxShadow: none;
48
75
  --pf-c-sidebar__panel--FlexBasis: var(--pf-c-sidebar__panel--md--FlexBasis);
49
- --pf-c-sidebar__main--AlignItems: var(--pf-c-sidebar__main--md--AlignItems);
50
76
  --pf-c-sidebar__panel--Top: var(--pf-c-sidebar__panel--md--Top);
51
77
  --pf-c-sidebar__panel--Position: var(--pf-c-sidebar__panel--md--Position);
52
78
  }
53
79
  }
54
80
  @media (min-width: 1200px) {
55
81
  .pf-c-sidebar {
56
- --pf-c-sidebar--m-gutter__main--Gap: var(--pf-c-sidebar--m-gutter__main--xl--Gap);
82
+ --pf-c-sidebar--inset: var(--pf-c-sidebar--xl--inset);
57
83
  }
58
84
  }
59
- .pf-c-sidebar.pf-m-gutter {
60
- --pf-c-sidebar__main--child--MarginTop: var(--pf-c-sidebar--m-gutter__main--Gap);
61
- --pf-c-sidebar__main--child--MarginLeft: 0;
62
- }
63
- .pf-c-sidebar.pf-m-gutter > .pf-c-sidebar__main > * + * {
64
- margin-top: var(--pf-c-sidebar__main--child--MarginTop);
65
- margin-left: var(--pf-c-sidebar__main--child--MarginLeft);
66
- }
67
- @media (min-width: 768px) {
68
- .pf-c-sidebar.pf-m-gutter {
69
- --pf-c-sidebar__main--child--MarginTop: 0;
70
- --pf-c-sidebar__main--child--MarginLeft: var(--pf-c-sidebar--m-gutter__main--Gap);
71
- }
85
+ .pf-c-sidebar.pf-m-gutter > .pf-c-sidebar__main {
86
+ gap: var(--pf-c-sidebar--m-gutter__main--Gap);
72
87
  }
73
88
  .pf-c-sidebar.pf-m-panel-right {
74
89
  --pf-c-sidebar__panel--Order: var(--pf-c-sidebar--m-panel-right__panel--Order);
90
+ --pf-c-sidebar__content--Order: var(--pf-c-sidebar--m-panel-right__content--Order);
75
91
  }
76
92
  @media (min-width: 768px) {
77
93
  .pf-c-sidebar.pf-m-panel-right {
78
94
  --pf-c-sidebar--m-panel-right__panel--Order: var(--pf-c-sidebar--m-panel-right__panel--md--Order);
95
+ --pf-c-sidebar--m-panel-right__content--Order: var(--pf-c-sidebar--m-panel-right__content--md--Order);
79
96
  }
80
97
  }
81
98
  .pf-c-sidebar.pf-m-stack {
82
99
  --pf-c-sidebar__main--FlexDirection: var(--pf-c-sidebar--m-stack__main--FlexDirection);
83
100
  --pf-c-sidebar__main--AlignItems: var(--pf-c-sidebar--m-stack__main--AlignItems);
84
- --pf-c-sidebar__main--child--MarginTop: var(--pf-c-sidebar--m-gutter__main--Gap);
85
- --pf-c-sidebar__main--child--MarginLeft: 0;
86
101
  --pf-c-sidebar__panel--Position: var(--pf-c-sidebar--m-stack__panel--Position);
87
102
  --pf-c-sidebar__panel--Top: var(--pf-c-sidebar--m-stack__panel--Top);
88
103
  --pf-c-sidebar__panel--BoxShadow: var(--pf-c-sidebar--m-stack__panel--BoxShadow);
89
104
  --pf-c-sidebar__panel--FlexBasis: var(--pf-c-sidebar__panel--m-stack--FlexBasis);
105
+ --pf-c-sidebar__main--m-border--before--Display: none;
90
106
  --pf-c-sidebar--m-panel-right__panel--Order: var(--pf-c-sidebar--m-stack--m-panel-right__panel--Order);
91
107
  }
92
108
  .pf-c-sidebar.pf-m-split {
93
109
  --pf-c-sidebar__main--FlexDirection: var(--pf-c-sidebar--m-split__main--FlexDirection);
94
110
  --pf-c-sidebar__main--AlignItems: var(--pf-c-sidebar--m-split__main--AlignItems);
95
- --pf-c-sidebar__main--child--MarginTop: 0;
96
- --pf-c-sidebar__main--child--MarginLeft: var(--pf-c-sidebar--m-gutter__main--Gap);
97
111
  --pf-c-sidebar__panel--Position: var(--pf-c-sidebar--m-split__panel--Position);
98
112
  --pf-c-sidebar__panel--Top: var(--pf-c-sidebar--m-split__panel--Top);
99
113
  --pf-c-sidebar__panel--BoxShadow: none;
100
114
  --pf-c-sidebar__panel--FlexBasis: var(--pf-c-sidebar__panel--m-split--FlexBasis);
115
+ --pf-c-sidebar__main--m-border--before--Display: var(--pf-c-sidebar--m-split__main--m-border--before--Display);
101
116
  --pf-c-sidebar--m-panel-right__panel--Order: var(--pf-c-sidebar--m-split--m-panel-right__panel--Order);
102
117
  }
103
118
 
@@ -106,17 +121,31 @@
106
121
  flex-direction: var(--pf-c-sidebar__main--FlexDirection);
107
122
  align-items: var(--pf-c-sidebar__main--AlignItems);
108
123
  }
124
+ .pf-c-sidebar__main.pf-m-border::before {
125
+ display: var(--pf-c-sidebar__main--m-border--before--Display);
126
+ flex: 0 0 var(--pf-c-sidebar__main--m-border--before--BorderWidth);
127
+ align-self: stretch;
128
+ content: "";
129
+ background-color: var(--pf-c-sidebar__main--m-border--before--BorderColor);
130
+ }
109
131
 
110
132
  .pf-c-sidebar__panel {
111
133
  position: var(--pf-c-sidebar__panel--Position);
112
134
  top: var(--pf-c-sidebar__panel--Top);
113
135
  z-index: var(--pf-c-sidebar__panel--ZIndex);
114
- flex-shrink: 0;
115
136
  flex-basis: var(--pf-c-sidebar__panel--FlexBasis);
137
+ flex-shrink: 0;
116
138
  order: var(--pf-c-sidebar__panel--Order);
139
+ padding: var(--pf-c-sidebar__panel--PaddingTop) var(--pf-c-sidebar__panel--PaddingRight) var(--pf-c-sidebar__panel--PaddingBottom) var(--pf-c-sidebar__panel--PaddingLeft);
117
140
  background-color: var(--pf-c-sidebar__panel--BackgroundColor);
118
141
  box-shadow: var(--pf-c-sidebar__panel--BoxShadow);
119
142
  }
143
+ .pf-c-sidebar__panel.pf-m-padding {
144
+ --pf-c-sidebar__panel--PaddingTop: var(--pf-c-sidebar__panel--m-padding--PaddingTop);
145
+ --pf-c-sidebar__panel--PaddingRight: var(--pf-c-sidebar__panel--m-padding--PaddingRight);
146
+ --pf-c-sidebar__panel--PaddingBottom: var(--pf-c-sidebar__panel--m-padding--PaddingBottom);
147
+ --pf-c-sidebar__panel--PaddingLeft: var(--pf-c-sidebar__panel--m-padding--PaddingLeft);
148
+ }
120
149
  .pf-c-sidebar__panel.pf-m-sticky {
121
150
  --pf-c-sidebar__panel--Position: var(--pf-c-sidebar__panel--m-sticky--Position);
122
151
  --pf-c-sidebar__panel--Top: var(--pf-c-sidebar__panel--m-sticky--Top);
@@ -128,11 +157,25 @@
128
157
 
129
158
  .pf-c-sidebar__content {
130
159
  flex-grow: 1;
160
+ order: var(--pf-c-sidebar__content--Order);
161
+ padding: var(--pf-c-sidebar__content--PaddingTop) var(--pf-c-sidebar__content--PaddingRight) var(--pf-c-sidebar__content--PaddingBottom) var(--pf-c-sidebar__content--PaddingLeft);
131
162
  background-color: var(--pf-c-sidebar__content--BackgroundColor);
132
163
  }
164
+ .pf-c-sidebar__content.pf-m-padding {
165
+ --pf-c-sidebar__content--PaddingTop: var(--pf-c-sidebar__content--m-padding--PaddingTop);
166
+ --pf-c-sidebar__content--PaddingRight: var(--pf-c-sidebar__content--m-padding--PaddingRight);
167
+ --pf-c-sidebar__content--PaddingBottom: var(--pf-c-sidebar__content--m-padding--PaddingBottom);
168
+ --pf-c-sidebar__content--PaddingLeft: var(--pf-c-sidebar__content--m-padding--PaddingTop);
169
+ }
133
170
  .pf-c-sidebar__content.pf-m-no-background {
134
171
  --pf-c-sidebar__content--BackgroundColor: transparent;
135
172
  }
173
+ .pf-c-sidebar__content + .pf-c-sidebar__panel {
174
+ --pf-c-sidebar__panel--Order: 1;
175
+ }
176
+ :where(.pf-c-sidebar__content:first-child) {
177
+ --pf-c-sidebar__content--Order: -1;
178
+ }
136
179
 
137
180
  .pf-c-sidebar.pf-m-no-background,
138
181
  .pf-c-sidebar__panel.pf-m-no-background,
@@ -5,6 +5,8 @@ declare const _default: {
5
5
  "panelRight": "pf-m-panel-right",
6
6
  "stack": "pf-m-stack",
7
7
  "split": "pf-m-split",
8
+ "border": "pf-m-border",
9
+ "padding": "pf-m-padding",
8
10
  "sticky": "pf-m-sticky",
9
11
  "static": "pf-m-static",
10
12
  "noBackground": "pf-m-no-background",
@@ -7,6 +7,8 @@ exports.default = {
7
7
  "panelRight": "pf-m-panel-right",
8
8
  "stack": "pf-m-stack",
9
9
  "split": "pf-m-split",
10
+ "border": "pf-m-border",
11
+ "padding": "pf-m-padding",
10
12
  "sticky": "pf-m-sticky",
11
13
  "static": "pf-m-static",
12
14
  "noBackground": "pf-m-no-background",
@@ -5,6 +5,8 @@ export default {
5
5
  "panelRight": "pf-m-panel-right",
6
6
  "stack": "pf-m-stack",
7
7
  "split": "pf-m-split",
8
+ "border": "pf-m-border",
9
+ "padding": "pf-m-padding",
8
10
  "sticky": "pf-m-sticky",
9
11
  "static": "pf-m-static",
10
12
  "noBackground": "pf-m-no-background",
@@ -40,9 +40,9 @@
40
40
  border: none;
41
41
  }
42
42
  .pf-c-simple-list__item-link:hover {
43
- text-decoration: none;
44
43
  --pf-c-simple-list__item-link--BackgroundColor: var(--pf-c-simple-list__item-link--hover--BackgroundColor);
45
44
  --pf-c-simple-list__item-link--Color: var(--pf-c-simple-list__item-link--hover--Color);
45
+ text-decoration: none;
46
46
  }
47
47
  .pf-c-simple-list__item-link:focus {
48
48
  --pf-c-simple-list__item-link--FontWeight: var(--pf-c-simple-list__item-link--focus--FontWeight);
@@ -187,13 +187,13 @@ svg.pf-c-spinner.pf-m-xl {
187
187
  .pf-c-spinner__path {
188
188
  width: 100%;
189
189
  height: 100%;
190
- transform-origin: 50% 50%;
191
- animation: pf-c-spinner-animation-dash var(--pf-c-spinner--AnimationDuration) var(--pf-c-spinner__path--AnimationTimingFunction) infinite;
192
190
  stroke: var(--pf-c-spinner--Color);
193
- stroke-linecap: round;
194
191
  stroke-dasharray: 283;
195
192
  stroke-dashoffset: 280;
193
+ stroke-linecap: round;
196
194
  stroke-width: var(--pf-c-spinner--stroke-width);
195
+ transform-origin: 50% 50%;
196
+ animation: pf-c-spinner-animation-dash var(--pf-c-spinner--AnimationDuration) var(--pf-c-spinner__path--AnimationTimingFunction) infinite;
197
197
  }
198
198
 
199
199
  @keyframes pf-c-spinner-animation-rotate {
@@ -213,8 +213,8 @@ svg.pf-c-spinner.pf-m-xl {
213
213
  stroke-width: calc(var(--pf-c-spinner__path--StrokeWidth) - 4);
214
214
  }
215
215
  40% {
216
- stroke-dashoffset: 150;
217
216
  stroke-dasharray: 220;
217
+ stroke-dashoffset: 150;
218
218
  }
219
219
  100% {
220
220
  stroke-dashoffset: 280;