@patternfly/patternfly 5.1.0-prerelease.22 → 5.1.0-prerelease.23

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 (43) hide show
  1. package/base/_common.scss +1 -2
  2. package/base/patternfly-common.css +2 -3
  3. package/base/patternfly-variables.css +1 -1
  4. package/components/Accordion/accordion.css +1 -1
  5. package/components/Alert/alert.css +1 -1
  6. package/components/BackgroundImage/background-image.css +1 -1
  7. package/components/Breadcrumb/breadcrumb.css +1 -1
  8. package/components/CalendarMonth/calendar-month.css +1 -1
  9. package/components/Card/card.css +1 -1
  10. package/components/ClipboardCopy/clipboard-copy.css +1 -1
  11. package/components/DataList/data-list.css +1 -1
  12. package/components/Drawer/drawer.css +13 -13
  13. package/components/DualListSelector/dual-list-selector.css +2 -2
  14. package/components/ExpandableSection/expandable-section.css +1 -1
  15. package/components/Form/form.css +1 -1
  16. package/components/JumpLinks/jump-links.css +1 -1
  17. package/components/Menu/menu.css +3 -3
  18. package/components/Nav/nav.css +5 -5
  19. package/components/NotificationDrawer/notification-drawer.css +1 -1
  20. package/components/Page/page.css +1 -1
  21. package/components/Pagination/pagination.css +1 -1
  22. package/components/Popover/popover.css +4 -4
  23. package/components/Skeleton/skeleton.css +1 -1
  24. package/components/Slider/slider.css +6 -6
  25. package/components/Switch/switch.css +1 -1
  26. package/components/Table/table-tree-view.css +1 -1
  27. package/components/Table/table.css +1 -1
  28. package/components/Tabs/tabs.css +3 -3
  29. package/components/Tooltip/tooltip.css +4 -4
  30. package/components/TreeView/tree-view.css +2 -2
  31. package/components/Truncate/truncate.css +3 -3
  32. package/components/Wizard/wizard.css +3 -3
  33. package/package.json +2 -2
  34. package/patternfly-base-no-globals-theme-dark-unversioned.css +3 -4
  35. package/patternfly-base-no-globals.css +3 -4
  36. package/patternfly-base-theme-dark-unversioned.css +3 -4
  37. package/patternfly-base.css +3 -4
  38. package/patternfly-no-globals.css +69 -70
  39. package/patternfly-theme-dark-unversioned.css +69 -70
  40. package/patternfly.css +69 -70
  41. package/patternfly.min.css +1 -1
  42. package/patternfly.min.css.map +1 -1
  43. package/sass-utilities/mixins.scss +2 -2
@@ -324,14 +324,14 @@
324
324
  // background: red;
325
325
  // }
326
326
  @mixin pf-v5-rtl {
327
- @at-root :where(.ws-dir-rtl, .#{$pf-prefix}m-dir-rtl, [dir="rtl"]) #{&} {
327
+ @at-root :where(.#{$pf-prefix}m-dir-rtl, [dir="rtl"]) #{&} {
328
328
  @content;
329
329
  }
330
330
  }
331
331
 
332
332
  // Used to create the LTR selector for LTR specific styles
333
333
  @mixin pf-v5-ltr {
334
- @at-root :where(.ws-dir-ltr, .#{$pf-prefix}m-dir-ltr, [dir="ltr"]) #{&} {
334
+ @at-root :where(.#{$pf-prefix}m-dir-ltr, [dir="ltr"]) #{&} {
335
335
  @content;
336
336
  }
337
337
  }