@patternfly/patternfly 5.0.0-alpha.64 → 5.0.0-alpha.66

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.
Files changed (78) hide show
  1. package/base/_globals.scss +1 -1
  2. package/base/_themes.scss +2 -2
  3. package/base/_variables.scss +1 -1
  4. package/base/themes/dark/_variables.scss +1 -1
  5. package/components/AboutModalBox/about-modal-box.css +2 -2
  6. package/components/Accordion/accordion.css +1 -1
  7. package/components/Alert/alert.css +1 -1
  8. package/components/AppLauncher/app-launcher.css +1 -1
  9. package/components/Badge/badge.css +1 -1
  10. package/components/Banner/banner.css +3 -3
  11. package/components/Button/button.css +2 -2
  12. package/components/CalendarMonth/calendar-month.css +3 -3
  13. package/components/Card/card.css +2 -2
  14. package/components/Chip/chip.css +1 -1
  15. package/components/ClipboardCopy/clipboard-copy.css +3 -3
  16. package/components/CodeEditor/code-editor.css +1 -1
  17. package/components/ContextSelector/context-selector.css +5 -5
  18. package/components/DataList/data-list.css +1 -1
  19. package/components/DatePicker/date-picker.css +1 -1
  20. package/components/DragDrop/drag-drop.css +1 -1
  21. package/components/Drawer/drawer.css +2 -2
  22. package/components/Dropdown/dropdown.css +3 -3
  23. package/components/DualListSelector/dual-list-selector.css +1 -1
  24. package/components/Form/form.css +1 -1
  25. package/components/FormControl/form-control.css +3 -3
  26. package/components/HelperText/helper-text.css +1 -1
  27. package/components/Hint/hint.css +1 -1
  28. package/components/InputGroup/input-group.css +2 -2
  29. package/components/Label/label.css +1 -1
  30. package/components/LogViewer/log-viewer.css +2 -2
  31. package/components/Login/login.css +5 -5
  32. package/components/Masthead/masthead.css +5 -3
  33. package/components/Masthead/masthead.scss +2 -0
  34. package/components/Menu/menu.css +1 -1
  35. package/components/MenuToggle/menu-toggle.css +2 -2
  36. package/components/ModalBox/modal-box.css +1 -1
  37. package/components/Nav/nav.css +6 -6
  38. package/components/NotificationBadge/notification-badge.css +1 -1
  39. package/components/NotificationDrawer/notification-drawer.css +1 -1
  40. package/components/OptionsMenu/options-menu.css +2 -2
  41. package/components/Page/page.css +14 -14
  42. package/components/Pagination/pagination.css +1 -1
  43. package/components/Panel/panel.css +1 -1
  44. package/components/Popover/popover.css +1 -1
  45. package/components/Progress/progress.css +1 -1
  46. package/components/Select/select.css +2 -2
  47. package/components/SimpleList/simple-list.css +1 -1
  48. package/components/Skeleton/skeleton.css +1 -1
  49. package/components/Switch/switch.css +1 -1
  50. package/components/Table/table.css +2 -2
  51. package/components/Tabs/tabs.css +1 -1
  52. package/components/TextInputGroup/text-input-group.css +1 -1
  53. package/components/Tile/tile.css +1 -1
  54. package/components/ToggleGroup/toggle-group.css +1 -1
  55. package/components/Toolbar/toolbar.css +49 -15
  56. package/components/Toolbar/toolbar.scss +54 -18
  57. package/components/Tooltip/tooltip.css +1 -1
  58. package/components/TreeView/tree-view.css +1 -1
  59. package/components/Wizard/wizard.css +3 -3
  60. package/docs/components/Toolbar/examples/Toolbar.md +4 -2
  61. package/package.json +1 -1
  62. package/patternfly-addons.css +78 -78
  63. package/patternfly-base-no-globals-theme-dark-unversioned.css +5234 -0
  64. package/patternfly-base-no-globals-theme-dark-unversioned.scss +11 -0
  65. package/patternfly-base-theme-dark-unversioned.css +5351 -0
  66. package/patternfly-base-theme-dark-unversioned.scss +5 -0
  67. package/patternfly-charts-theme-dark-unversioned.css +70 -0
  68. package/patternfly-charts-theme-dark-unversioned.scss +8 -0
  69. package/patternfly-no-globals.css +355 -319
  70. package/patternfly-theme-dark-unversioned.css +34476 -0
  71. package/patternfly-theme-dark-unversioned.scss +6 -0
  72. package/patternfly.css +355 -319
  73. package/patternfly.min.css +1 -1
  74. package/patternfly.min.css.map +1 -1
  75. package/sass-utilities/_init.scss +20 -0
  76. package/sass-utilities/mixins.scss +2 -2
  77. package/utilities/BackgroundColor/BackgroundColor.css +30 -30
  78. package/utilities/Text/text.css +48 -48
@@ -142,6 +142,6 @@
142
142
  // stylelint-disable no-invalid-position-at-import-rule
143
143
  @import "./themes/dark/globals";
144
144
 
145
- @include pf-v5-theme-dark($pf-v5-theme-dark-prefix: ":root") {
145
+ @include pf-v5-theme-dark {
146
146
  @include pf-v5-theme-dark-globals;
147
147
  }
package/base/_themes.scss CHANGED
@@ -1,4 +1,4 @@
1
- .pf-v5-t-dark {
1
+ #{$pf-v5--theme-dark--placeholder--class} {
2
2
  @extend %pf-v5-t-dark;
3
3
 
4
4
  &.pf-m-transparent {
@@ -22,7 +22,7 @@
22
22
  }
23
23
  }
24
24
 
25
- .pf-v5-t-light {
25
+ #{$pf-v5--theme-light--placeholder--class} {
26
26
  @extend %pf-v5-t-light;
27
27
 
28
28
  &.pf-m-transparent {
@@ -290,6 +290,6 @@
290
290
  // stylelint-disable no-invalid-position-at-import-rule
291
291
  @import "./themes/dark/variables";
292
292
 
293
- @include pf-v5-theme-dark($pf-v5-theme-dark-prefix: ":root") {
293
+ @include pf-v5-theme-dark {
294
294
  @include pf-v5-theme-dark-variables;
295
295
  }
@@ -1,6 +1,6 @@
1
1
  @import "../../../sass-utilities/themes/dark/all";
2
2
 
3
- @mixin pf-v5-theme-dark-variables() {
3
+ @mixin pf-v5-theme-dark-variables {
4
4
  // palette changes
5
5
  --#{$pf-global}--palette--black-50: #{$pf-v5-color-black-50};
6
6
  --#{$pf-global}--palette--black-100: #{$pf-v5-color-black-100};
@@ -204,7 +204,7 @@
204
204
  --pf-v5-c-about-modal-box__close--c-button--BackgroundColor: var(--pf-v5-c-about-modal-box__close--c-button--hover--BackgroundColor);
205
205
  }
206
206
 
207
- :where(.pf-v5-theme-dark) .pf-v5-c-about-modal-box {
207
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-about-modal-box {
208
208
  --pf-v5-global--Color--100: #e0e0e0;
209
209
  --pf-v5-global--Color--200: #aaabac;
210
210
  --pf-v5-global--BorderColor--100: #444548;
@@ -214,6 +214,6 @@
214
214
  --pf-v5-global--BackgroundColor--100: #1b1d21;
215
215
  }
216
216
 
217
- :where(.pf-v5-theme-dark) .pf-v5-c-about-modal-box {
217
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-about-modal-box {
218
218
  color: var(--pf-v5-global--Color--100);
219
219
  }
@@ -221,7 +221,7 @@
221
221
  --pf-v5-c-accordion__expandable-content-body--PaddingTop: var(--pf-v5-c-accordion__expandable-content-body--expandable-content-body--PaddingTop);
222
222
  }
223
223
 
224
- :where(.pf-v5-theme-dark) .pf-v5-c-accordion {
224
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-accordion {
225
225
  --pf-v5-c-accordion__toggle--hover--BackgroundColor: var(--pf-v5-global--BackgroundColor--300);
226
226
  --pf-v5-c-accordion__toggle--focus--BackgroundColor: var(--pf-v5-global--BackgroundColor--300);
227
227
  --pf-v5-c-accordion__toggle--active--BackgroundColor: var(--pf-v5-global--BackgroundColor--300);
@@ -208,7 +208,7 @@
208
208
  margin-right: var(--pf-v5-c-alert__action-group__c-button--not-last-child--MarginRight);
209
209
  }
210
210
 
211
- :where(.pf-v5-theme-dark) .pf-v5-c-alert {
211
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-alert {
212
212
  --pf-v5-c-alert--BackgroundColor: var(--pf-v5-global--BackgroundColor--300);
213
213
  --pf-v5-c-alert--m-custom__title--Color: var(--pf-v5-global--custom-color--200);
214
214
  --pf-v5-c-alert--m-success__title--Color: var(--pf-v5-global--success-color--100);
@@ -224,7 +224,7 @@
224
224
  color: var(--pf-v5-c-app-launcher__group-title--Color);
225
225
  }
226
226
 
227
- :where(.pf-v5-theme-dark) .pf-v5-c-app-launcher {
227
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-app-launcher {
228
228
  --pf-v5-c-app-launcher__menu--BackgroundColor: var(--pf-v5-global--BackgroundColor--300);
229
229
  --pf-v5-c-app-launcher__menu--Top: 100%;
230
230
  --pf-v5-c-app-launcher__menu-item--hover--BackgroundColor: var(--pf-v5-global--BackgroundColor--400);
@@ -30,7 +30,7 @@
30
30
  --pf-v5-c-badge--BackgroundColor: var(--pf-v5-c-badge--m-unread--BackgroundColor);
31
31
  }
32
32
 
33
- :where(.pf-v5-theme-dark) .pf-v5-c-badge {
33
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-badge {
34
34
  --pf-v5-c-badge--m-read--BackgroundColor: var(--pf-v5-global--palette--black-500);
35
35
  --pf-v5-c-badge--m-unread--Color: var(--pf-v5-global--primary-color--400);
36
36
  --pf-v5-c-badge--m-unread--BackgroundColor: var(--pf-v5-global--primary-color--300);
@@ -103,7 +103,7 @@
103
103
  cursor: not-allowed;
104
104
  }
105
105
 
106
- :where(.pf-v5-theme-dark) .pf-v5-c-banner {
106
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-banner {
107
107
  --pf-v5-global--Color--100: #e0e0e0;
108
108
  --pf-v5-global--Color--200: #aaabac;
109
109
  --pf-v5-global--BorderColor--100: #444548;
@@ -113,9 +113,9 @@
113
113
  --pf-v5-global--BackgroundColor--100: #1b1d21;
114
114
  }
115
115
 
116
- :where(.pf-v5-theme-dark) .pf-v5-c-banner {
116
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-banner {
117
117
  color: var(false);
118
118
  }
119
- :where(.pf-v5-theme-dark) .pf-v5-c-banner.pf-m-blue, :where(.pf-v5-theme-dark) .pf-v5-c-banner.pf-m-red, :where(.pf-v5-theme-dark) .pf-v5-c-banner.pf-m-green, :where(.pf-v5-theme-dark) .pf-v5-c-banner.pf-m-gold {
119
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-banner.pf-m-blue, :root:where(.pf-v5-theme-dark) .pf-v5-c-banner.pf-m-red, :root:where(.pf-v5-theme-dark) .pf-v5-c-banner.pf-m-green, :root:where(.pf-v5-theme-dark) .pf-v5-c-banner.pf-m-gold {
120
120
  --pf-v5-c-banner--Color: var(--pf-v5-global--palette--black-900);
121
121
  }
@@ -503,7 +503,7 @@
503
503
  margin-left: var(--pf-v5-c-button__count--MarginLeft);
504
504
  }
505
505
 
506
- :where(.pf-v5-theme-dark) .pf-v5-c-button {
506
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-button {
507
507
  --pf-v5-c-button--disabled--Color: var(--pf-v5-global--disabled-color--300);
508
508
  --pf-v5-c-button--m-primary--BackgroundColor: var(--pf-v5-global--primary-color--300);
509
509
  --pf-v5-c-button--m-primary--Color: var(--pf-v5-global--primary-color--400);
@@ -543,7 +543,7 @@
543
543
  --pf-v5-c-button--m-control--disabled--BackgroundColor: var(--pf-v5-global--disabled-color--200);
544
544
  --pf-v5-c-button--m-primary__c-badge--BorderColor: var(--pf-v5-global--Color--100);
545
545
  }
546
- :where(.pf-v5-theme-dark) .pf-v5-c-button.pf-m-control:disabled::after {
546
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-button.pf-m-control:disabled::after {
547
547
  border: 0;
548
548
  border-bottom: var(--pf-v5-global--BorderWidth--sm) solid var(--pf-v5-global--palette--black-700);
549
549
  }
@@ -196,7 +196,7 @@
196
196
  pointer-events: none;
197
197
  }
198
198
 
199
- :where(.pf-v5-theme-dark) .pf-v5-c-calendar-month {
199
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-calendar-month {
200
200
  --pf-v5-c-calendar-month__dates-cell--m-current__date--BackgroundColor: var(--pf-v5-global--palette--black-500);
201
201
  --pf-v5-c-calendar-month__dates-cell--m-selected__date--BackgroundColor: var(--pf-v5-global--primary-color--300);
202
202
  --pf-v5-c-calendar-month__dates-cell--m-selected__date--Color: var(--pf-v5-global--primary-color--400);
@@ -209,11 +209,11 @@
209
209
  --pf-v5-c-calendar-month__date--focus--BackgroundColor: var(--pf-v5-global--BackgroundColor--200);
210
210
  --pf-v5-c-calendar-month__date--focus--after--BorderColor: transparent;
211
211
  }
212
- :where(.pf-v5-theme-dark) .pf-v5-c-calendar-month__date:hover, :where(.pf-v5-theme-dark) .pf-v5-c-calendar-month__date.pf-m-hover {
212
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-calendar-month__date:hover, :root:where(.pf-v5-theme-dark) .pf-v5-c-calendar-month__date.pf-m-hover {
213
213
  --pf-v5-c-calendar-month__date--after--BorderColor: var(--pf-v5-global--BorderColor--100);
214
214
  --pf-v5-c-calendar-month__date--after--BorderWidth: var(--pf-v5-global--BorderWidth--sm);
215
215
  }
216
- :where(.pf-v5-theme-dark) .pf-v5-c-calendar-month__date:focus, :where(.pf-v5-theme-dark) .pf-v5-c-calendar-month__date.pf-m-focus {
216
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-calendar-month__date:focus, :root:where(.pf-v5-theme-dark) .pf-v5-c-calendar-month__date.pf-m-focus {
217
217
  --pf-v5-c-calendar-month__date--after--BorderColor: var(--pf-v5-global--active-color--100);
218
218
  --pf-v5-c-calendar-month__date--after--BorderWidth: var(--pf-v5-global--BorderWidth--sm);
219
219
  --pf-v5-c-calendar-month__date--BackgroundColor: var(--pf-v5-global--primary-color--300);
@@ -388,8 +388,8 @@
388
388
  border: var(--pf-v5-c-card__input--focus--BorderWidth) solid var(--pf-v5-c-card__input--focus--BorderColor);
389
389
  }
390
390
 
391
- :where(.pf-v5-theme-dark) .pf-v5-c-card,
392
- :where(.pf-v5-theme-dark) .pf-v5-c-card.pf-m-non-selectable-raised {
391
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-card,
392
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-card.pf-m-non-selectable-raised {
393
393
  --pf-v5-c-card--BoxShadow: var(--pf-v5-global--BoxShadow--md);
394
394
  --pf-v5-c-card--m-hoverable-raised--hover--BoxShadow: var(--pf-v5-global--BoxShadow--lg);
395
395
  --pf-v5-c-card--m-selectable-raised--hover--BoxShadow: var(--pf-v5-global--BoxShadow--lg);
@@ -106,7 +106,7 @@
106
106
  line-height: 1;
107
107
  }
108
108
 
109
- :where(.pf-v5-theme-dark) .pf-v5-c-chip {
109
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-chip {
110
110
  --pf-v5-c-chip--BackgroundColor: var(--pf-v5-global--BackgroundColor--100);
111
111
  --pf-v5-c-chip--before--BorderColor: var(--pf-v5-global--BorderColor--100);
112
112
  --pf-v5-c-chip--m-draggable--BackgroundColor: var(--pf-v5-global--palette--black-600);
@@ -88,13 +88,13 @@
88
88
  --pf-v5-c-button--PaddingLeft: var(--pf-v5-c-clipboard-copy__actions-item--button--PaddingLeft);
89
89
  }
90
90
 
91
- :where(.pf-v5-theme-dark) .pf-v5-c-clipboard-copy {
91
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-clipboard-copy {
92
92
  --pf-v5-c-clipboard-copy__expandable-content--BackgroundColor: var(--pf-v5-global--BackgroundColor--400);
93
93
  }
94
- :where(.pf-v5-theme-dark) .pf-v5-c-clipboard-copy__group > * + * {
94
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-clipboard-copy__group > * + * {
95
95
  margin-left: 0;
96
96
  border-left: 1px solid var(--pf-v5-global--palette--black-700) !important;
97
97
  }
98
- :where(.pf-v5-theme-dark) .pf-v5-c-clipboard-copy__expandable-content {
98
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-clipboard-copy__expandable-content {
99
99
  border: 0;
100
100
  }
@@ -135,6 +135,6 @@
135
135
  margin-left: var(--pf-v5-c-code-editor__tab-icon--text--MarginLeft);
136
136
  }
137
137
 
138
- :where(.pf-v5-theme-dark) .pf-v5-c-code-editor__controls > * + * {
138
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-code-editor__controls > * + * {
139
139
  border-left: 1px solid var(--pf-v5-global--palette--black-700);
140
140
  }
@@ -301,19 +301,19 @@
301
301
  pointer-events: none;
302
302
  }
303
303
 
304
- :where(.pf-v5-theme-dark) .pf-v5-c-context-selector {
304
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-context-selector {
305
305
  --pf-v5-c-context-selector__menu--Top: 100%;
306
306
  --pf-v5-c-context-selector__menu-list-item--hover--BackgroundColor: var(--pf-v5-global--BackgroundColor--400);
307
307
  }
308
- :where(.pf-v5-theme-dark) .pf-v5-c-context-selector__toggle {
308
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-context-selector__toggle {
309
309
  background: var(--pf-v5-global--BackgroundColor--400);
310
310
  }
311
- :where(.pf-v5-theme-dark) .pf-v5-c-context-selector__toggle.pf-m-plain {
311
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-context-selector__toggle.pf-m-plain {
312
312
  background: transparent;
313
313
  }
314
- :where(.pf-v5-theme-dark) .pf-v5-c-context-selector__menu {
314
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-context-selector__menu {
315
315
  background: var(--pf-v5-global--BackgroundColor--300);
316
316
  }
317
- :where(.pf-v5-theme-dark) .pf-v5-c-context-selector__menu-footer {
317
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-context-selector__menu-footer {
318
318
  border-top: 1px solid var(--pf-v5-global--BorderColor--300);
319
319
  }
@@ -899,7 +899,7 @@
899
899
  padding: 0;
900
900
  }
901
901
 
902
- :where(.pf-v5-theme-dark) .pf-v5-c-data-list {
902
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-data-list {
903
903
  --pf-v5-c-data-list--BorderTopColor: var(--pf-v5-global--BorderColor--100);
904
904
  --pf-v5-c-data-list--sm--BorderTopColor: var(--pf-v5-global--BorderColor--100);
905
905
  --pf-v5-c-data-list__item--BorderBottomColor: var(--pf-v5-global--BorderColor--100);
@@ -53,7 +53,7 @@
53
53
  min-width: min-content;
54
54
  }
55
55
 
56
- :where(.pf-v5-theme-dark) .pf-v5-c-date-picker {
56
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-date-picker {
57
57
  --pf-v5-c-date-picker__calendar--BackgroundColor: var(--pf-v5-global--BackgroundColor--300);
58
58
  --pf-v5-c-date-picker__calendar--Top: 100%;
59
59
  }
@@ -66,6 +66,6 @@
66
66
  --pf-v5-c-droppable--m-dragging--after--BorderColor: var(--pf-v5-c-droppable--m-drag-outside--after--BorderColor);
67
67
  }
68
68
 
69
- :where(.pf-v5-theme-dark) .pf-v5-c-droppable {
69
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-droppable {
70
70
  --pf-v5-c-droppable--m-dragging--before--Opacity: .2;
71
71
  }
@@ -773,10 +773,10 @@
773
773
  display: none;
774
774
  }
775
775
  }
776
- :where(.pf-v5-theme-dark) .pf-v5-c-drawer {
776
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-drawer {
777
777
  --pf-v5-c-drawer__panel--BackgroundColor: var(--pf-v5-global--BackgroundColor--400);
778
778
  --pf-v5-c-drawer__splitter--BackgroundColor: transparent;
779
779
  }
780
- :where(.pf-v5-theme-dark) .pf-v5-c-drawer.pf-m-inline, :where(.pf-v5-theme-dark) .pf-v5-c-drawer.pf-m-static {
780
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-drawer.pf-m-inline, :root:where(.pf-v5-theme-dark) .pf-v5-c-drawer.pf-m-static {
781
781
  --pf-v5-c-drawer__panel--BackgroundColor: var(--pf-v5-global--BackgroundColor--100);
782
782
  }
@@ -647,7 +647,7 @@
647
647
  color: var(--pf-v5-c-dropdown__group-title--Color);
648
648
  }
649
649
 
650
- :where(.pf-v5-theme-dark) .pf-v5-c-dropdown {
650
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-dropdown {
651
651
  --pf-v5-c-dropdown__toggle--BackgroundColor: var(--pf-v5-global--BackgroundColor--400);
652
652
  --pf-v5-c-dropdown__toggle--before--BorderTopColor: transparent;
653
653
  --pf-v5-c-dropdown__toggle--before--BorderRightColor: transparent;
@@ -662,9 +662,9 @@
662
662
  --pf-v5-c-dropdown--m-top__menu--TranslateY: -100%;
663
663
  --pf-v5-c-dropdown__menu-item--hover--BackgroundColor: var(--pf-v5-global--BackgroundColor--400);
664
664
  }
665
- :where(.pf-v5-theme-dark) .pf-v5-c-dropdown__toggle:not(.pf-m-plain):disabled, :where(.pf-v5-theme-dark) .pf-v5-c-dropdown__toggle:not(.pf-m-plain).pf-m-disabled {
665
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-dropdown__toggle:not(.pf-m-plain):disabled, :root:where(.pf-v5-theme-dark) .pf-v5-c-dropdown__toggle:not(.pf-m-plain).pf-m-disabled {
666
666
  color: var(--pf-v5-global--palette--black-100);
667
667
  }
668
- :where(.pf-v5-theme-dark) .pf-v5-c-dropdown__toggle.pf-m-plain {
668
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-dropdown__toggle.pf-m-plain {
669
669
  background: transparent;
670
670
  }
@@ -297,7 +297,7 @@
297
297
  --pf-v5-c-dual-list-selector__list__list__item-toggle--Left: var(--pf-v5-c-dual-list-selector__item--PaddingLeft);
298
298
  }
299
299
 
300
- :where(.pf-v5-theme-dark) .pf-v5-c-dual-list-selector {
300
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-dual-list-selector {
301
301
  --pf-v5-c-dual-list-selector__list-item-row--hover--BackgroundColor: var(--pf-v5-global--BackgroundColor--400);
302
302
  --pf-v5-c-dual-list-selector__list-item-row--focus-within--BackgroundColor: var(--pf-v5-global--BackgroundColor--400);
303
303
  --pf-v5-c-dual-list-selector__list-item-row--m-selected--BackgroundColor: var(--pf-v5-global--BackgroundColor--400);
@@ -504,6 +504,6 @@
504
504
  margin-bottom: var(--pf-v5-c-form__field-group-body__field-group--last-child--MarginBottom);
505
505
  }
506
506
 
507
- :where(.pf-v5-theme-dark) .pf-v5-c-form {
507
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-form {
508
508
  --pf-v5-c-form__helper-text--m-success--Color: var(--pf-v5-global--success-color--100);
509
509
  }
@@ -269,7 +269,7 @@
269
269
  pointer-events: none;
270
270
  }
271
271
 
272
- :where(.pf-v5-theme-dark) .pf-v5-c-form-control {
272
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-form-control {
273
273
  --pf-v5-c-form-control--BorderTopColor: transparent;
274
274
  --pf-v5-c-form-control--BorderRightColor: transparent;
275
275
  --pf-v5-c-form-control--BorderBottomColor: var(--pf-v5-global--BorderColor--400);
@@ -280,9 +280,9 @@
280
280
  --pf-v5-c-form-control--readonly--BackgroundColor: var(--pf-v5-global--disabled-color--200);
281
281
  color: var(--pf-v5-global--Color--100);
282
282
  }
283
- :where(.pf-v5-theme-dark) .pf-v5-c-form-control::-webkit-calendar-picker-indicator {
283
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-form-control::-webkit-calendar-picker-indicator {
284
284
  filter: invert(1);
285
285
  }
286
- :where(.pf-v5-theme-dark) .pf-v5-c-form-control.pf-m-readonly {
286
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-form-control.pf-m-readonly {
287
287
  border-bottom-color: var(--pf-v5-global--palette--black-700);
288
288
  }
@@ -72,6 +72,6 @@
72
72
  color: var(--pf-v5-c-helper-text__item-text--Color);
73
73
  }
74
74
 
75
- :where(.pf-v5-theme-dark) .pf-v5-c-helper-text {
75
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-helper-text {
76
76
  --pf-v5-c-helper-text__item-text--m-success--Color: var(--pf-v5-global--success-color--100);
77
77
  }
@@ -59,7 +59,7 @@
59
59
  margin-right: var(--pf-v5-c-hint__footer--child--MarginRight);
60
60
  }
61
61
 
62
- :where(.pf-v5-theme-dark) .pf-v5-c-hint {
62
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-hint {
63
63
  --pf-v5-c-hint--BackgroundColor: var(--pf-v5-global--BackgroundColor--400);
64
64
  --pf-v5-c-hint--BorderColor: var(--pf-v5-global--BorderColor--300);
65
65
  }
@@ -67,7 +67,7 @@ label.pf-v5-c-input-group__text {
67
67
  cursor: pointer;
68
68
  }
69
69
 
70
- :where(.pf-v5-theme-dark) .pf-v5-c-input-group {
70
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-input-group {
71
71
  --pf-v5-c-input-group__item--BorderLeftWidth: var(--pf-v5-c-input-group__item--BorderWidth--base);
72
72
  --pf-v5-c-input-group__item--BorderLeftColor: var(--pf-v5-global--palette--black-700);
73
73
  --pf-v5-c-input-group__item--m-box--BackgroundColor: var(--pf-v5-global--BackgroundColor--400);
@@ -79,7 +79,7 @@ label.pf-v5-c-input-group__text {
79
79
  --pf-v5-c-input-group__item--m-disabled--BorderBottomColor: transparent;
80
80
  --pf-v5-c-input-group__item--m-disabled__text--Color: var(--pf-v5-global--disabled-color--300);
81
81
  }
82
- :where(.pf-v5-theme-dark) .pf-v5-c-input-group > * + * {
82
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-input-group > * + * {
83
83
  --pf-v5-c-input-group__item--m-box--BorderLeftColor: var(--pf-v5-c-input-group__item--BorderLeftColor);
84
84
  border-left: var(--pf-v5-c-input-group__item--BorderLeftWidth) solid var(--pf-v5-c-input-group__item--BorderLeftColor);
85
85
  }
@@ -405,7 +405,7 @@ button.pf-v5-c-label__content:focus {
405
405
  margin-bottom: var(--pf-v5-c-label__actions--c-button--MarginBottom);
406
406
  }
407
407
 
408
- :where(.pf-v5-theme-dark) .pf-v5-c-label {
408
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-label {
409
409
  --pf-v5-c-label--BackgroundColor: var(--pf-v5-global--BackgroundColor--300);
410
410
  --pf-v5-c-label--m-blue--BackgroundColor: var(--pf-v5-global--BackgroundColor--300);
411
411
  --pf-v5-c-label--m-green--BackgroundColor: var(--pf-v5-global--BackgroundColor--300);
@@ -183,7 +183,7 @@
183
183
  font-weight: var(--pf-v5-c-log-viewer__timestamp--FontWeight);
184
184
  }
185
185
 
186
- :where(.pf-v5-theme-dark) .pf-v5-c-log-viewer.pf-m-dark .pf-v5-c-log-viewer__main {
186
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-log-viewer.pf-m-dark .pf-v5-c-log-viewer__main {
187
187
  --pf-v5-global--Color--100: #e0e0e0;
188
188
  --pf-v5-global--Color--200: #aaabac;
189
189
  --pf-v5-global--BorderColor--100: #444548;
@@ -193,6 +193,6 @@
193
193
  --pf-v5-global--BackgroundColor--100: #1b1d21;
194
194
  }
195
195
 
196
- :where(.pf-v5-theme-dark) .pf-v5-c-log-viewer.pf-m-dark .pf-v5-c-log-viewer__main {
196
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-log-viewer.pf-m-dark .pf-v5-c-log-viewer__main {
197
197
  color: var(--pf-v5-global--Color--100);
198
198
  }
@@ -272,8 +272,8 @@
272
272
  padding-top: var(--pf-v5-c-login__footer--c-list--PaddingTop);
273
273
  }
274
274
 
275
- :where(.pf-v5-theme-dark) .pf-v5-c-login__header,
276
- :where(.pf-v5-theme-dark) .pf-v5-c-login__footer {
275
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-login__header,
276
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-login__footer {
277
277
  --pf-v5-global--Color--100: #e0e0e0;
278
278
  --pf-v5-global--Color--200: #aaabac;
279
279
  --pf-v5-global--BorderColor--100: #444548;
@@ -283,10 +283,10 @@
283
283
  --pf-v5-global--BackgroundColor--100: #1b1d21;
284
284
  }
285
285
 
286
- :where(.pf-v5-theme-dark) .pf-v5-c-login {
286
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-login {
287
287
  --pf-v5-c-login__main--BackgroundColor: var(--pf-v5-global--BackgroundColor--300);
288
288
  }
289
- :where(.pf-v5-theme-dark) .pf-v5-c-login__header,
290
- :where(.pf-v5-theme-dark) .pf-v5-c-login__footer {
289
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-login__header,
290
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-login__footer {
291
291
  color: var(--pf-v5-global--Color--100);
292
292
  }
@@ -89,6 +89,7 @@
89
89
  --pf-v5-c-masthead--c-menu-toggle--before--BorderLeftColor: var(--pf-v5-c-masthead--item-border-color--base);
90
90
  --pf-v5-c-masthead--c-menu-toggle--m-full-height--before--BorderTopColor: transparent;
91
91
  --pf-v5-c-masthead--c-menu-toggle--m-full-height--before--BorderBottomColor: transparent;
92
+ --pf-v5-c-masthead--c-toolbar--AlignItems--base: center;
92
93
  --pf-v5-c-masthead--c-toolbar__content--PaddingRight: 0;
93
94
  --pf-v5-c-masthead--c-toolbar__content--PaddingLeft: 0;
94
95
  --pf-v5-c-masthead--c-toolbar__expandable-content--PaddingTop: var(--pf-v5-global--spacer--md);
@@ -161,6 +162,7 @@
161
162
  --pf-v5-c-masthead__main--BorderBottomColor: var(--pf-v5-c-masthead--m-light-200__main--BorderBottomColor);
162
163
  }
163
164
  .pf-v5-c-masthead .pf-v5-c-toolbar {
165
+ --pf-v5-c-toolbar--AlignItems--base: var(--pf-v5-c-masthead--c-toolbar--AlignItems--base);
164
166
  --pf-v5-c-toolbar__content--PaddingRight: var(--pf-v5-c-masthead--c-toolbar__content--PaddingRight);
165
167
  --pf-v5-c-toolbar__content--PaddingLeft: var(--pf-v5-c-masthead--c-toolbar__content--PaddingLeft);
166
168
  --pf-v5-c-toolbar__expandable-content--PaddingTop: var(--pf-v5-c-masthead--c-toolbar__expandable-content--PaddingTop);
@@ -638,7 +640,7 @@
638
640
  }
639
641
  }
640
642
 
641
- :where(.pf-v5-theme-dark) .pf-v5-c-masthead {
643
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-masthead {
642
644
  --pf-v5-global--Color--100: #e0e0e0;
643
645
  --pf-v5-global--Color--200: #aaabac;
644
646
  --pf-v5-global--BorderColor--100: #444548;
@@ -648,10 +650,10 @@
648
650
  --pf-v5-global--BackgroundColor--100: #1b1d21;
649
651
  }
650
652
 
651
- :where(.pf-v5-theme-dark) .pf-v5-c-masthead {
653
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-masthead {
652
654
  --pf-v5-c-masthead--BackgroundColor: var(--pf-v5-global--palette--black-1000);
653
655
  color: var(--pf-v5-global--Color--100);
654
656
  }
655
- :where(.pf-v5-theme-dark) .pf-v5-c-masthead .pf-v5-c-toolbar {
657
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-masthead .pf-v5-c-toolbar {
656
658
  --pf-v5-c-toolbar--BackgroundColor: var(--pf-v5-global--palette--black-1000);
657
659
  }
@@ -139,6 +139,7 @@ $pf-v5-c-masthead--inset-map: build-spacer-map("none", "sm", "md", "lg", "xl", "
139
139
  --#{$masthead}--c-menu-toggle--m-full-height--before--BorderBottomColor: transparent;
140
140
 
141
141
  // Toolbar
142
+ --#{$masthead}--c-toolbar--AlignItems--base: center;
142
143
  --#{$masthead}--c-toolbar__content--PaddingRight: 0;
143
144
  --#{$masthead}--c-toolbar__content--PaddingLeft: 0;
144
145
  --#{$masthead}--c-toolbar__expandable-content--PaddingTop: var(--#{$pf-global}--spacer--md);
@@ -189,6 +190,7 @@ $pf-v5-c-masthead--inset-map: build-spacer-map("none", "sm", "md", "lg", "xl", "
189
190
  }
190
191
 
191
192
  .#{$toolbar} {
193
+ --#{$toolbar}--AlignItems--base: var(--#{$masthead}--c-toolbar--AlignItems--base);
192
194
  --#{$toolbar}__content--PaddingRight: var(--#{$masthead}--c-toolbar__content--PaddingRight);
193
195
  --#{$toolbar}__content--PaddingLeft: var(--#{$masthead}--c-toolbar__content--PaddingLeft);
194
196
  --#{$toolbar}__expandable-content--PaddingTop: var(--#{$masthead}--c-toolbar__expandable-content--PaddingTop);
@@ -621,7 +621,7 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
621
621
  border-top: var(--pf-v5-c-menu__footer--after--BorderTopWidth) solid var(--pf-v5-c-menu__footer--after--BorderTopColor);
622
622
  }
623
623
 
624
- :where(.pf-v5-theme-dark) .pf-v5-c-menu {
624
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-menu {
625
625
  --pf-v5-c-menu--BackgroundColor: var(--pf-v5-global--BackgroundColor--300);
626
626
  --pf-v5-c-menu__list-item--hover--BackgroundColor: var(--pf-v5-global--BackgroundColor--400);
627
627
  --pf-v5-c-menu__list-item--focus-within--BackgroundColor: var(--pf-v5-global--BackgroundColor--400);
@@ -397,7 +397,7 @@
397
397
  color: var(--pf-v5-c-menu-toggle__toggle-icon--Color, inherit);
398
398
  }
399
399
 
400
- :where(.pf-v5-theme-dark) .pf-v5-c-menu-toggle {
400
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-menu-toggle {
401
401
  --pf-v5-c-menu-toggle--BackgroundColor: var(--pf-v5-global--BackgroundColor--400);
402
402
  --pf-v5-c-menu-toggle--hover--BackgroundColor: var(--pf-v5-global--BackgroundColor--400);
403
403
  --pf-v5-c-menu-toggle--active--BackgroundColor: var(--pf-v5-global--BackgroundColor--400);
@@ -415,6 +415,6 @@
415
415
  --pf-v5-c-menu-toggle--m-split-button--child--disabled--Color: var(--pf-v5-global--disabled-color--300);
416
416
  --pf-v5-c-menu-toggle--m-split-button--child--disabled--BackgroundColor: var(--pf-v5-global--disabled-color--200);
417
417
  }
418
- :where(.pf-v5-theme-dark) .pf-v5-c-menu-toggle.pf-m-plain {
418
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-menu-toggle.pf-m-plain {
419
419
  background: transparent;
420
420
  }
@@ -182,6 +182,6 @@
182
182
  }
183
183
  }
184
184
 
185
- :where(.pf-v5-theme-dark) .pf-v5-c-modal-box {
185
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-modal-box {
186
186
  --pf-v5-c-modal-box--BackgroundColor: var(--pf-v5-global--BackgroundColor--300);
187
187
  }
@@ -940,7 +940,7 @@
940
940
  left: 0;
941
941
  }
942
942
 
943
- :where(.pf-v5-theme-dark) .pf-v5-c-nav {
943
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-nav {
944
944
  --pf-v5-c-nav__item--item__link--after--Top: -1px;
945
945
  --pf-v5-c-nav__item--before--BorderColor: var(--pf-v5-global--BorderColor--100);
946
946
  --pf-v5-c-nav__link--hover--BackgroundColor: var(--pf-v5-global--BackgroundColor--300);
@@ -958,18 +958,18 @@
958
958
  --pf-v5-c-nav__link--active--before--BorderBottomWidth: 0;
959
959
  --pf-v5-c-nav__link--m-current--before--BorderBottomWidth: 0;
960
960
  }
961
- :where(.pf-v5-theme-dark) .pf-v5-c-nav__link::before {
961
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-nav__link::before {
962
962
  bottom: 0;
963
963
  }
964
- :where(.pf-v5-theme-dark) .pf-v5-c-nav__link::after {
964
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-nav__link::after {
965
965
  top: var(--pf-v5-c-nav__item--item__link--after--Top);
966
966
  }
967
- :where(.pf-v5-theme-dark) .pf-v5-c-nav__item + .pf-v5-c-nav__item {
967
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-nav__item + .pf-v5-c-nav__item {
968
968
  --pf-v5-c-nav__link--after--Top: var(--pf-v5-c-nav__item--item__link--after--Top);
969
969
  }
970
- :where(.pf-v5-theme-dark) .pf-v5-c-nav__subnav {
970
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-nav__subnav {
971
971
  --pf-v5-c-nav__item--item__link--after--Top: 0;
972
972
  }
973
- :where(.pf-v5-theme-dark) .pf-v5-c-nav__section {
973
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-nav__section {
974
974
  --pf-v5-c-nav__item--item__link--after--Top: 0;
975
975
  }
@@ -98,7 +98,7 @@
98
98
  margin-left: var(--pf-v5-c-notification-badge__count--MarginLeft);
99
99
  }
100
100
 
101
- :where(.pf-v5-theme-dark) .pf-v5-c-notification-badge {
101
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-notification-badge {
102
102
  --pf-v5-c-notification-badge--m-read--m-expanded--after--BackgroundColor: var(--pf-v5-global--BackgroundColor--400);
103
103
  --pf-v5-c-notification-badge--m-unread--Color: var(--pf-v5-global--primary-color--400);
104
104
  --pf-v5-c-notification-badge--m-unread--after--BackgroundColor: var(--pf-v5-global--primary-color--300);
@@ -262,7 +262,7 @@
262
262
  transform: rotate(var(--pf-v5-c-notification-drawer__group--m-expanded__group-toggle-icon--Rotate));
263
263
  }
264
264
 
265
- :where(.pf-v5-theme-dark) .pf-v5-c-notification-drawer {
265
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-notification-drawer {
266
266
  --pf-v5-c-notification-drawer--BackgroundColor: var(--pf-v5-global--BackgroundColor--300);
267
267
  --pf-v5-c-notification-drawer__header--BackgroundColor: var(--pf-v5-global--BackgroundColor--300);
268
268
  --pf-v5-c-notification-drawer__list-item--BackgroundColor: var(--pf-v5-global--BackgroundColor--300);
@@ -251,7 +251,7 @@
251
251
  color: var(--pf-v5-c-options-menu__group-title--Color);
252
252
  }
253
253
 
254
- :where(.pf-v5-theme-dark) .pf-v5-c-options-menu {
254
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-options-menu {
255
255
  --pf-v5-c-options-menu__toggle--BackgroundColor: var(--pf-v5-global--BackgroundColor--400);
256
256
  --pf-v5-c-options-menu__toggle--BorderTopColor: transparent;
257
257
  --pf-v5-c-options-menu__toggle--BorderRightColor: transparent;
@@ -262,6 +262,6 @@
262
262
  --pf-v5-c-options-menu__menu-item--hover--BackgroundColor: var(--pf-v5-global--BackgroundColor--400);
263
263
  --pf-v5-c-options-menu__menu--Top: 100%;
264
264
  }
265
- :where(.pf-v5-theme-dark) .pf-v5-c-options-menu__toggle.pf-m-plain {
265
+ :root:where(.pf-v5-theme-dark) .pf-v5-c-options-menu__toggle.pf-m-plain {
266
266
  background: transparent;
267
267
  }