@patternfly/patternfly 6.0.0-alpha.34 → 6.0.0-alpha.38

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 (46) hide show
  1. package/CODE_OF_CONDUCT.md +1 -2
  2. package/assets/images/PF-HorizontalLogo-Color.svg +29 -0
  3. package/assets/images/PF-HorizontalLogo-Reverse.svg +28 -0
  4. package/assets/images/PF-IconLogo-color.svg +17 -0
  5. package/components/Backdrop/backdrop.css +6 -2
  6. package/components/Backdrop/backdrop.scss +5 -2
  7. package/components/Banner/banner.css +4 -0
  8. package/components/Banner/banner.scss +5 -0
  9. package/components/Card/card.css +3 -0
  10. package/components/Card/card.scss +8 -0
  11. package/components/Form/form.css +6 -0
  12. package/components/Form/form.scss +4 -1
  13. package/components/MenuToggle/menu-toggle.css +1 -0
  14. package/components/MenuToggle/menu-toggle.scss +2 -0
  15. package/components/Popover/popover.css +0 -2
  16. package/components/Popover/popover.scss +2 -2
  17. package/components/SimpleList/simple-list.css +35 -52
  18. package/components/SimpleList/simple-list.scss +41 -51
  19. package/components/Table/table.scss +1 -0
  20. package/components/Tooltip/tooltip.css +0 -2
  21. package/components/Tooltip/tooltip.scss +3 -3
  22. package/components/Truncate/truncate.css +4 -0
  23. package/components/Truncate/truncate.scss +3 -0
  24. package/docs/components/Accordion/examples/Accordion.md +6 -6
  25. package/docs/components/Alert/examples/Alert.md +2 -2
  26. package/docs/components/Brand/examples/Brand.md +9 -33
  27. package/docs/components/Breadcrumb/examples/Breadcrumb.md +1 -1
  28. package/docs/components/Card/examples/Card.md +18 -20
  29. package/docs/components/Check/examples/Check.md +1 -0
  30. package/docs/components/Content/examples/Content.md +5 -5
  31. package/docs/components/InlineEdit/examples/InlineEdit.md +3 -1
  32. package/docs/components/Label/examples/Label.md +11 -11
  33. package/docs/components/Nav/examples/Navigation.css +18 -2
  34. package/docs/components/Nav/examples/Navigation.md +1 -1
  35. package/docs/components/Radio/examples/Radio.md +1 -1
  36. package/docs/components/SimpleList/examples/SimpleList.md +3 -3
  37. package/docs/components/Table/examples/Table.md +8 -8
  38. package/docs/components/Truncate/examples/Truncate.css +2 -2
  39. package/docs/layouts/Flex/examples/Flex.md +11 -11
  40. package/package.json +32 -32
  41. package/patternfly-no-globals.css +59 -62
  42. package/patternfly-theme-dark-unversioned.css +59 -62
  43. package/patternfly.css +59 -62
  44. package/patternfly.min.css +1 -1
  45. package/patternfly.min.css.map +1 -1
  46. package/components/SimpleList/themes/dark/simple-list.scss +0 -14
@@ -1,14 +0,0 @@
1
- @import "../../../../sass-utilities/themes/dark/all";
2
-
3
- @mixin pf-v5-theme-dark-simple-list() {
4
- .#{$simple-list} {
5
- --#{$simple-list}__item-link--m-current--Color: var(--#{$pf-global}--active-color--100);
6
- --#{$simple-list}__item-link--m-current--BackgroundColor: var(--#{$pf-global}--BackgroundColor--400);
7
- --#{$simple-list}__item-link--hover--Color: var(--#{$pf-global}--Color--100);
8
- --#{$simple-list}__item-link--hover--BackgroundColor: var(--#{$pf-global}--BackgroundColor--400);
9
- --#{$simple-list}__item-link--focus--Color: var(--#{$pf-global}--Color--100);
10
- --#{$simple-list}__item-link--focus--BackgroundColor: var(--#{$pf-global}--BackgroundColor--400);
11
- --#{$simple-list}__item-link--active--Color: var(--#{$pf-global}--Color--100);
12
- --#{$simple-list}__item-link--active--BackgroundColor: var(--#{$pf-global}--BackgroundColor--400);
13
- }
14
- }