@patternfly/patternfly 6.2.0-prerelease.25 → 6.2.0-prerelease.27
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.
- package/base/patternfly-variables.css +1 -1
- package/base/patternfly-variables.scss +1 -1
- package/components/Nav/nav.css +12 -15
- package/components/Nav/nav.scss +12 -15
- package/components/_index.css +12 -15
- package/package.json +2 -2
- package/patternfly-base-no-globals.css +1 -1
- package/patternfly-base.css +1 -1
- package/patternfly-no-globals.css +13 -16
- package/patternfly.css +13 -16
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/sass-utilities/mixins.scss +8 -4
|
@@ -370,15 +370,19 @@
|
|
|
370
370
|
// [dir="rtl"] {
|
|
371
371
|
// background: red;
|
|
372
372
|
// }
|
|
373
|
-
@mixin pf-v6-rtl {
|
|
374
|
-
|
|
373
|
+
@mixin pf-v6-rtl($hasWhere: true) {
|
|
374
|
+
$sel: if($hasWhere,':where',':is');
|
|
375
|
+
|
|
376
|
+
@at-root #{$sel}(.#{$pf-prefix}m-dir-rtl, [dir="rtl"]) #{&} {
|
|
375
377
|
@content;
|
|
376
378
|
}
|
|
377
379
|
}
|
|
378
380
|
|
|
379
381
|
// Used to create the LTR selector for LTR specific styles
|
|
380
|
-
@mixin pf-v6-ltr {
|
|
381
|
-
|
|
382
|
+
@mixin pf-v6-ltr($hasWhere: true) {
|
|
383
|
+
$sel: if($hasWhere,':where',':is');
|
|
384
|
+
|
|
385
|
+
@at-root #{$sel}(.#{$pf-prefix}m-dir-ltr, [dir="ltr"]) #{&} {
|
|
382
386
|
@content;
|
|
383
387
|
}
|
|
384
388
|
}
|