@patternfly/patternfly 5.1.0-prerelease.14 → 5.1.0-prerelease.16

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.
@@ -2,7 +2,9 @@
2
2
  id: Tooltip
3
3
  section: components
4
4
  cssPrefix: pf-v5-c-tooltip
5
- ---## Examples
5
+ ---import "./Tooltip.css"
6
+
7
+ ## Examples
6
8
 
7
9
  ### Top
8
10
 
@@ -133,8 +135,8 @@ A tooltip is used to provide contextual information for another component on hov
133
135
  | `.pf-v5-c-tooltip` | `<div>` | Creates a tooltip. Always use with a modifier class that positions the tooltip relative to the element it describes. **Required**|
134
136
  | `.pf-v5-c-tooltip__arrow` | `<div>` | Creates an arrow pointing towards the element the tooltip describes. **Required** |
135
137
  | `.pf-v5-c-tooltip__content` | `<div>` | Creates the body of the tooltip. **Required** |
136
- | `.pf-m-left{-top/bottom}` | `.pf-v5-c-tooltip` | Positions the tooltip to the left (or left top/left bottom) of the element. |
137
- | `.pf-m-right{-top/bottom}` | `.pf-v5-c-tooltip` | Positions the tooltip to the right (or right top/right bottom) of the element. |
138
- | `.pf-m-top{-left/right}` | `.pf-v5-c-tooltip` | Positions the tooltip to the top (or top left/top right) of the element. |
139
- | `.pf-m-bottom{-left/right}` | `.pf-v5-c-tooltip` | Positions the tooltip to the bottom (or bottom left/bottom right) of the element. |
140
- | `.pf-m-text-align-left` | `.pf-v5-c-tooltip__content` | Modifies tooltip content to text align left. |
138
+ | `.pf-m-left{-top/bottom}`, `.pf-m-inline-start{-block-start/block-end}` | `.pf-v5-c-tooltip` | Positions the tooltip to the left (or left top/left bottom) of the element. |
139
+ | `.pf-m-right{-top/bottom}`, `.pf-m-inline-end{-block-start/block-end}` | `.pf-v5-c-tooltip` | Positions the tooltip to the right (or right top/right bottom) of the element. |
140
+ | `.pf-m-top{-left/right}`, `.pf-m-block-start{-inline-start/inline-end}` | `.pf-v5-c-tooltip` | Positions the tooltip to the top (or top left/top right) of the element. |
141
+ | `.pf-m-bottom{-left/right}`, `.pf-m-block-start{-inline-start/inline-end}` | `.pf-v5-c-tooltip` | Positions the tooltip to the bottom (or bottom left/bottom right) of the element. |
142
+ | `.pf-m-text-align-left`, `.pf-m-text-align-start` | `.pf-v5-c-tooltip__content` | Modifies tooltip content to text align left. |
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@patternfly/patternfly",
3
3
  "description": "Assets, source, tooling, and content for PatternFly 4",
4
- "version": "5.1.0-prerelease.14",
4
+ "version": "5.1.0-prerelease.16",
5
5
  "keywords": [],
6
6
  "license": "MIT",
7
7
  "scripts": {
@@ -45,7 +45,7 @@
45
45
  "@commitlint/config-conventional": "^17.6.7",
46
46
  "@fortawesome/fontawesome": "^1.1.8",
47
47
  "@octokit/rest": "^20.0.1",
48
- "@patternfly/documentation-framework": "5.1.10",
48
+ "@patternfly/documentation-framework": "5.1.11",
49
49
  "@patternfly/patternfly-a11y": "4.3.1",
50
50
  "@patternfly/react-code-editor": "5.0.0",
51
51
  "@patternfly/react-core": "5.0.0",
@@ -10129,6 +10129,9 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
10129
10129
  transition: var(--pf-v5-c-data-list__toggle-icon--Transition);
10130
10130
  transform: rotate(var(--pf-v5-c-data-list__toggle-icon--Rotate));
10131
10131
  }
10132
+ :where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-data-list__toggle-icon {
10133
+ scale: -1 1;
10134
+ }
10132
10135
 
10133
10136
  .pf-v5-c-data-list__item-content {
10134
10137
  display: grid;
@@ -22443,37 +22446,85 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab
22443
22446
  --pf-v5-c-popover--MinWidth: auto;
22444
22447
  --pf-v5-c-popover--MaxWidth: none;
22445
22448
  }
22446
- .pf-v5-c-popover.pf-m-top .pf-v5-c-popover__arrow, .pf-v5-c-popover.pf-m-top-left .pf-v5-c-popover__arrow, .pf-v5-c-popover.pf-m-top-right .pf-v5-c-popover__arrow {
22449
+ .pf-v5-c-popover:is(.pf-m-top,
22450
+ .pf-m-top-left,
22451
+ .pf-m-top-right,
22452
+ .pf-m-block-start,
22453
+ .pf-m-block-start-inline-start,
22454
+ .pf-m-block-start-inline-end) .pf-v5-c-popover__arrow {
22447
22455
  inset-block-end: 0;
22448
22456
  inset-inline-start: 50%;
22449
22457
  transform: translateX(var(--pf-v5-c-popover__arrow--m-top--TranslateX)) translateY(var(--pf-v5-c-popover__arrow--m-top--TranslateY)) rotate(var(--pf-v5-c-popover__arrow--m-top--Rotate));
22450
22458
  }
22451
- .pf-v5-c-popover.pf-m-bottom .pf-v5-c-popover__arrow, .pf-v5-c-popover.pf-m-bottom-left .pf-v5-c-popover__arrow, .pf-v5-c-popover.pf-m-bottom-right .pf-v5-c-popover__arrow {
22459
+ :where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-popover:is(.pf-m-top, .pf-m-top-left, .pf-m-top-right, .pf-m-block-start, .pf-m-block-start-inline-start, .pf-m-block-start-inline-end) .pf-v5-c-popover__arrow {
22460
+ transform: translateX(calc(var(--pf-v5-c-popover__arrow--m-top--TranslateX) * var(--pf-v5-global--inverse--multiplier))) translateY(var(--pf-v5-c-popover__arrow--m-top--TranslateY)) rotate(var(--pf-v5-c-popover__arrow--m-top--Rotate));
22461
+ }
22462
+
22463
+ .pf-v5-c-popover:is(.pf-m-bottom,
22464
+ .pf-m-bottom-left,
22465
+ .pf-m-bottom-right,
22466
+ .pf-m-block-end,
22467
+ .pf-m-block-end-inline-start,
22468
+ .pf-m-block-end-inline-end) .pf-v5-c-popover__arrow {
22452
22469
  inset-block-start: 0;
22453
22470
  inset-inline-start: 50%;
22454
22471
  transform: translateX(var(--pf-v5-c-popover__arrow--m-bottom--TranslateX)) translateY(var(--pf-v5-c-popover__arrow--m-bottom--TranslateY)) rotate(var(--pf-v5-c-popover__arrow--m-bottom--Rotate));
22455
22472
  }
22456
- .pf-v5-c-popover.pf-m-left .pf-v5-c-popover__arrow, .pf-v5-c-popover.pf-m-left-top .pf-v5-c-popover__arrow, .pf-v5-c-popover.pf-m-left-bottom .pf-v5-c-popover__arrow {
22473
+ :where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-popover:is(.pf-m-bottom, .pf-m-bottom-left, .pf-m-bottom-right, .pf-m-block-end, .pf-m-block-end-inline-start, .pf-m-block-end-inline-end) .pf-v5-c-popover__arrow {
22474
+ transform: translateX(calc(var(--pf-v5-c-popover__arrow--m-bottom--TranslateX) * var(--pf-v5-global--inverse--multiplier))) translateY(var(--pf-v5-c-popover__arrow--m-bottom--TranslateY)) rotate(var(--pf-v5-c-popover__arrow--m-bottom--Rotate));
22475
+ }
22476
+
22477
+ .pf-v5-c-popover:is(.pf-m-left,
22478
+ .pf-m-left-top,
22479
+ .pf-m-left-bottom,
22480
+ .pf-m-inline-start,
22481
+ .pf-m-inline-start-block-start,
22482
+ .pf-m-inline-start-block-end) .pf-v5-c-popover__arrow {
22457
22483
  inset-block-start: 50%;
22458
22484
  inset-inline-end: 0;
22459
22485
  transform: translateX(var(--pf-v5-c-popover__arrow--m-left--TranslateX)) translateY(var(--pf-v5-c-popover__arrow--m-left--TranslateY)) rotate(var(--pf-v5-c-popover__arrow--m-left--Rotate));
22460
22486
  }
22461
- .pf-v5-c-popover.pf-m-right .pf-v5-c-popover__arrow, .pf-v5-c-popover.pf-m-right-top .pf-v5-c-popover__arrow, .pf-v5-c-popover.pf-m-right-bottom .pf-v5-c-popover__arrow {
22487
+ :where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-popover:is(.pf-m-left, .pf-m-left-top, .pf-m-left-bottom, .pf-m-inline-start, .pf-m-inline-start-block-start, .pf-m-inline-start-block-end) .pf-v5-c-popover__arrow {
22488
+ transform: translateX(calc(var(--pf-v5-c-popover__arrow--m-left--TranslateX) * var(--pf-v5-global--inverse--multiplier))) translateY(var(--pf-v5-c-popover__arrow--m-left--TranslateY)) rotate(var(--pf-v5-c-popover__arrow--m-left--Rotate));
22489
+ }
22490
+
22491
+ .pf-v5-c-popover:is(.pf-m-right,
22492
+ .pf-m-right-top,
22493
+ .pf-m-right-bottom,
22494
+ .pf-m-inline-end,
22495
+ .pf-m-inline-end-block-start,
22496
+ .pf-m-inline-end-block-end) .pf-v5-c-popover__arrow {
22462
22497
  inset-block-start: 50%;
22463
22498
  inset-inline-start: 0;
22464
22499
  transform: translateX(var(--pf-v5-c-popover__arrow--m-right--TranslateX)) translateY(var(--pf-v5-c-popover__arrow--m-right--TranslateY)) rotate(var(--pf-v5-c-popover__arrow--m-right--Rotate));
22465
22500
  }
22466
- .pf-v5-c-popover.pf-m-left-top .pf-v5-c-popover__arrow, .pf-v5-c-popover.pf-m-right-top .pf-v5-c-popover__arrow {
22501
+ :where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-popover:is(.pf-m-right, .pf-m-right-top, .pf-m-right-bottom, .pf-m-inline-end, .pf-m-inline-end-block-start, .pf-m-inline-end-block-end) .pf-v5-c-popover__arrow {
22502
+ transform: translateX(calc(var(--pf-v5-c-popover__arrow--m-right--TranslateX) * var(--pf-v5-global--inverse--multiplier))) translateY(var(--pf-v5-c-popover__arrow--m-right--TranslateY)) rotate(var(--pf-v5-c-popover__arrow--m-right--Rotate));
22503
+ }
22504
+
22505
+ .pf-v5-c-popover:is(.pf-m-left-top,
22506
+ .pf-m-right-top,
22507
+ .pf-m-inline-start-block-start,
22508
+ .pf-m-inline-end-block-start) .pf-v5-c-popover__arrow {
22467
22509
  inset-block-start: var(--pf-v5-c-popover__arrow--Height);
22468
22510
  }
22469
- .pf-v5-c-popover.pf-m-left-bottom .pf-v5-c-popover__arrow, .pf-v5-c-popover.pf-m-right-bottom .pf-v5-c-popover__arrow {
22511
+ .pf-v5-c-popover:is(.pf-m-left-bottom,
22512
+ .pf-m-right-bottom,
22513
+ .pf-m-inline-start-block-end,
22514
+ .pf-m-inline-end-block-end) .pf-v5-c-popover__arrow {
22470
22515
  inset-block-start: auto;
22471
22516
  inset-block-end: 0;
22472
22517
  }
22473
- .pf-v5-c-popover.pf-m-top-left .pf-v5-c-popover__arrow, .pf-v5-c-popover.pf-m-bottom-left .pf-v5-c-popover__arrow {
22518
+ .pf-v5-c-popover:is(.pf-m-top-left,
22519
+ .pf-m-bottom-left,
22520
+ .pf-m-block-start-inline-start,
22521
+ .pf-m-block-end-inline-start) .pf-v5-c-popover__arrow {
22474
22522
  inset-inline-start: var(--pf-v5-c-popover__arrow--Width);
22475
22523
  }
22476
- .pf-v5-c-popover.pf-m-top-right .pf-v5-c-popover__arrow, .pf-v5-c-popover.pf-m-bottom-right .pf-v5-c-popover__arrow {
22524
+ .pf-v5-c-popover:is(.pf-m-top-right,
22525
+ .pf-m-bottom-right,
22526
+ .pf-m-block-start-inline-end,
22527
+ .pf-m-block-end-inline-end) .pf-v5-c-popover__arrow {
22477
22528
  inset-inline-start: auto;
22478
22529
  inset-inline-end: 0;
22479
22530
  }
@@ -30144,37 +30195,85 @@ svg.pf-v5-c-spinner.pf-m-xl {
30144
30195
  max-width: var(--pf-v5-c-tooltip--MaxWidth);
30145
30196
  box-shadow: var(--pf-v5-c-tooltip--BoxShadow);
30146
30197
  }
30147
- .pf-v5-c-tooltip.pf-m-top .pf-v5-c-tooltip__arrow, .pf-v5-c-tooltip.pf-m-top-left .pf-v5-c-tooltip__arrow, .pf-v5-c-tooltip.pf-m-top-right .pf-v5-c-tooltip__arrow {
30198
+ .pf-v5-c-tooltip:is(.pf-m-top,
30199
+ .pf-m-top-left,
30200
+ .pf-m-top-right,
30201
+ .pf-m-block-start,
30202
+ .pf-m-block-start-inline-start,
30203
+ .pf-m-block-start-inline-end) .pf-v5-c-tooltip__arrow {
30148
30204
  inset-block-end: 0;
30149
30205
  inset-inline-start: 50%;
30150
30206
  transform: translateX(var(--pf-v5-c-tooltip__arrow--m-top--TranslateX)) translateY(var(--pf-v5-c-tooltip__arrow--m-top--TranslateY)) rotate(var(--pf-v5-c-tooltip__arrow--m-top--Rotate));
30151
30207
  }
30152
- .pf-v5-c-tooltip.pf-m-bottom .pf-v5-c-tooltip__arrow, .pf-v5-c-tooltip.pf-m-bottom-left .pf-v5-c-tooltip__arrow, .pf-v5-c-tooltip.pf-m-bottom-right .pf-v5-c-tooltip__arrow {
30208
+ :where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-tooltip:is(.pf-m-top, .pf-m-top-left, .pf-m-top-right, .pf-m-block-start, .pf-m-block-start-inline-start, .pf-m-block-start-inline-end) .pf-v5-c-tooltip__arrow {
30209
+ transform: translateX(calc(var(--pf-v5-c-tooltip__arrow--m-top--TranslateX) * var(--pf-v5-global--inverse--multiplier))) translateY(var(--pf-v5-c-tooltip__arrow--m-top--TranslateY)) rotate(var(--pf-v5-c-tooltip__arrow--m-top--Rotate));
30210
+ }
30211
+
30212
+ .pf-v5-c-tooltip:is(.pf-m-bottom,
30213
+ .pf-m-bottom-left,
30214
+ .pf-m-bottom-right,
30215
+ .pf-m-block-end,
30216
+ .pf-m-block-end-inline-start,
30217
+ .pf-m-block-end-inline-end) .pf-v5-c-tooltip__arrow {
30153
30218
  inset-block-start: 0;
30154
30219
  inset-inline-start: 50%;
30155
30220
  transform: translateX(var(--pf-v5-c-tooltip__arrow--m-bottom--TranslateX)) translateY(var(--pf-v5-c-tooltip__arrow--m-bottom--TranslateY)) rotate(var(--pf-v5-c-tooltip__arrow--m-bottom--Rotate));
30156
30221
  }
30157
- .pf-v5-c-tooltip.pf-m-left .pf-v5-c-tooltip__arrow, .pf-v5-c-tooltip.pf-m-left-top .pf-v5-c-tooltip__arrow, .pf-v5-c-tooltip.pf-m-left-bottom .pf-v5-c-tooltip__arrow {
30222
+ :where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-tooltip:is(.pf-m-bottom, .pf-m-bottom-left, .pf-m-bottom-right, .pf-m-block-end, .pf-m-block-end-inline-start, .pf-m-block-end-inline-end) .pf-v5-c-tooltip__arrow {
30223
+ transform: translateX(calc(var(--pf-v5-c-tooltip__arrow--m-bottom--TranslateX) * var(--pf-v5-global--inverse--multiplier))) translateY(var(--pf-v5-c-tooltip__arrow--m-bottom--TranslateY)) rotate(var(--pf-v5-c-tooltip__arrow--m-bottom--Rotate));
30224
+ }
30225
+
30226
+ .pf-v5-c-tooltip:is(.pf-m-left,
30227
+ .pf-m-left-top,
30228
+ .pf-m-left-bottom,
30229
+ .pf-m-inline-start,
30230
+ .pf-m-inline-start-block-start,
30231
+ .pf-m-inline-start-block-end) .pf-v5-c-tooltip__arrow {
30158
30232
  inset-block-start: 50%;
30159
30233
  inset-inline-end: 0;
30160
30234
  transform: translateX(var(--pf-v5-c-tooltip__arrow--m-left--TranslateX)) translateY(var(--pf-v5-c-tooltip__arrow--m-left--TranslateY)) rotate(var(--pf-v5-c-tooltip__arrow--m-left--Rotate));
30161
30235
  }
30162
- .pf-v5-c-tooltip.pf-m-right .pf-v5-c-tooltip__arrow, .pf-v5-c-tooltip.pf-m-right-top .pf-v5-c-tooltip__arrow, .pf-v5-c-tooltip.pf-m-right-bottom .pf-v5-c-tooltip__arrow {
30236
+ :where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-tooltip:is(.pf-m-left, .pf-m-left-top, .pf-m-left-bottom, .pf-m-inline-start, .pf-m-inline-start-block-start, .pf-m-inline-start-block-end) .pf-v5-c-tooltip__arrow {
30237
+ transform: translateX(calc(var(--pf-v5-c-tooltip__arrow--m-left--TranslateX) * var(--pf-v5-global--inverse--multiplier))) translateY(var(--pf-v5-c-tooltip__arrow--m-left--TranslateY)) rotate(var(--pf-v5-c-tooltip__arrow--m-left--Rotate));
30238
+ }
30239
+
30240
+ .pf-v5-c-tooltip:is(.pf-m-right,
30241
+ .pf-m-right-top,
30242
+ .pf-m-right-bottom,
30243
+ .pf-m-inline-end,
30244
+ .pf-m-inline-end-block-start,
30245
+ .pf-m-inline-end-block-end) .pf-v5-c-tooltip__arrow {
30163
30246
  inset-block-start: 50%;
30164
30247
  inset-inline-start: 0;
30165
30248
  transform: translateX(var(--pf-v5-c-tooltip__arrow--m-right--TranslateX)) translateY(var(--pf-v5-c-tooltip__arrow--m-right--TranslateY)) rotate(var(--pf-v5-c-tooltip__arrow--m-right--Rotate));
30166
30249
  }
30167
- .pf-v5-c-tooltip.pf-m-left-top .pf-v5-c-tooltip__arrow, .pf-v5-c-tooltip.pf-m-right-top .pf-v5-c-tooltip__arrow {
30250
+ :where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-tooltip:is(.pf-m-right, .pf-m-right-top, .pf-m-right-bottom, .pf-m-inline-end, .pf-m-inline-end-block-start, .pf-m-inline-end-block-end) .pf-v5-c-tooltip__arrow {
30251
+ transform: translateX(calc(var(--pf-v5-c-tooltip__arrow--m-right--TranslateX) * var(--pf-v5-global--inverse--multiplier))) translateY(var(--pf-v5-c-tooltip__arrow--m-right--TranslateY)) rotate(var(--pf-v5-c-tooltip__arrow--m-right--Rotate));
30252
+ }
30253
+
30254
+ .pf-v5-c-tooltip:is(.pf-m-left-top,
30255
+ .pf-m-right-top,
30256
+ .pf-m-inline-start-block-start,
30257
+ .pf-m-inline-end-block-start) .pf-v5-c-tooltip__arrow {
30168
30258
  inset-block-start: var(--pf-v5-c-tooltip__arrow--Height);
30169
30259
  }
30170
- .pf-v5-c-tooltip.pf-m-left-bottom .pf-v5-c-tooltip__arrow, .pf-v5-c-tooltip.pf-m-right-bottom .pf-v5-c-tooltip__arrow {
30260
+ .pf-v5-c-tooltip:is(.pf-m-left-bottom,
30261
+ .pf-m-right-bottom,
30262
+ .pf-m-inline-start-block-end,
30263
+ .pf-m-inline-end-block-end) .pf-v5-c-tooltip__arrow {
30171
30264
  inset-block-start: auto;
30172
30265
  inset-block-end: 0;
30173
30266
  }
30174
- .pf-v5-c-tooltip.pf-m-top-left .pf-v5-c-tooltip__arrow, .pf-v5-c-tooltip.pf-m-bottom-left .pf-v5-c-tooltip__arrow {
30267
+ .pf-v5-c-tooltip:is(.pf-m-top-left,
30268
+ .pf-m-bottom-left,
30269
+ .pf-m-block-start-block-start,
30270
+ .pf-m-block-end-block-start) .pf-v5-c-tooltip__arrow {
30175
30271
  inset-inline-start: var(--pf-v5-c-tooltip__arrow--Width);
30176
30272
  }
30177
- .pf-v5-c-tooltip.pf-m-top-right .pf-v5-c-tooltip__arrow, .pf-v5-c-tooltip.pf-m-bottom-right .pf-v5-c-tooltip__arrow {
30273
+ .pf-v5-c-tooltip:is(.pf-m-top-right,
30274
+ .pf-m-bottom-right,
30275
+ .pf-m-block-start-block-end,
30276
+ .pf-m-block-end-block-end) .pf-v5-c-tooltip__arrow {
30178
30277
  inset-inline-start: auto;
30179
30278
  inset-inline-end: 0;
30180
30279
  }
@@ -30191,7 +30290,7 @@ svg.pf-v5-c-spinner.pf-m-xl {
30191
30290
  word-break: break-word;
30192
30291
  background-color: var(--pf-v5-c-tooltip__content--BackgroundColor);
30193
30292
  }
30194
- .pf-v5-c-tooltip__content.pf-m-text-align-left {
30293
+ .pf-v5-c-tooltip__content:is(.pf-m-text-align-left, .pf-m-text-align-start) {
30195
30294
  text-align: start;
30196
30295
  }
30197
30296
 
@@ -30517,6 +30616,9 @@ svg.pf-v5-c-spinner.pf-m-xl {
30517
30616
  transition: var(--pf-v5-c-tree-view__node-toggle-icon--Transition);
30518
30617
  transform: rotate(var(--pf-v5-c-tree-view__node-toggle-icon--Rotate));
30519
30618
  }
30619
+ :where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-tree-view__node-toggle-icon {
30620
+ scale: -1 1;
30621
+ }
30520
30622
 
30521
30623
  .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item {
30522
30624
  --pf-v5-c-tree-view__node-toggle-icon--Rotate: var(--pf-v5-c-tree-view__node-toggle-icon--base--Rotate);
@@ -30606,6 +30708,9 @@ svg.pf-v5-c-spinner.pf-m-xl {
30606
30708
  border: 0;
30607
30709
  transform: translateX(var(--pf-v5-c-tree-view__list-item__list-item__node-toggle--TranslateX));
30608
30710
  }
30711
+ :where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-tree-view__node-toggle {
30712
+ transform: translateX(calc(var(--pf-v5-c-tree-view__list-item__list-item__node-toggle--TranslateX) * var(--pf-v5-global--inverse--multiplier)));
30713
+ }
30609
30714
 
30610
30715
  .pf-v5-c-tree-view__node-title.pf-m-truncate,
30611
30716
  .pf-v5-c-tree-view__node-text.pf-m-truncate {
@@ -10246,6 +10246,9 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
10246
10246
  transition: var(--pf-v5-c-data-list__toggle-icon--Transition);
10247
10247
  transform: rotate(var(--pf-v5-c-data-list__toggle-icon--Rotate));
10248
10248
  }
10249
+ :where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-data-list__toggle-icon {
10250
+ scale: -1 1;
10251
+ }
10249
10252
 
10250
10253
  .pf-v5-c-data-list__item-content {
10251
10254
  display: grid;
@@ -22560,37 +22563,85 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab
22560
22563
  --pf-v5-c-popover--MinWidth: auto;
22561
22564
  --pf-v5-c-popover--MaxWidth: none;
22562
22565
  }
22563
- .pf-v5-c-popover.pf-m-top .pf-v5-c-popover__arrow, .pf-v5-c-popover.pf-m-top-left .pf-v5-c-popover__arrow, .pf-v5-c-popover.pf-m-top-right .pf-v5-c-popover__arrow {
22566
+ .pf-v5-c-popover:is(.pf-m-top,
22567
+ .pf-m-top-left,
22568
+ .pf-m-top-right,
22569
+ .pf-m-block-start,
22570
+ .pf-m-block-start-inline-start,
22571
+ .pf-m-block-start-inline-end) .pf-v5-c-popover__arrow {
22564
22572
  inset-block-end: 0;
22565
22573
  inset-inline-start: 50%;
22566
22574
  transform: translateX(var(--pf-v5-c-popover__arrow--m-top--TranslateX)) translateY(var(--pf-v5-c-popover__arrow--m-top--TranslateY)) rotate(var(--pf-v5-c-popover__arrow--m-top--Rotate));
22567
22575
  }
22568
- .pf-v5-c-popover.pf-m-bottom .pf-v5-c-popover__arrow, .pf-v5-c-popover.pf-m-bottom-left .pf-v5-c-popover__arrow, .pf-v5-c-popover.pf-m-bottom-right .pf-v5-c-popover__arrow {
22576
+ :where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-popover:is(.pf-m-top, .pf-m-top-left, .pf-m-top-right, .pf-m-block-start, .pf-m-block-start-inline-start, .pf-m-block-start-inline-end) .pf-v5-c-popover__arrow {
22577
+ transform: translateX(calc(var(--pf-v5-c-popover__arrow--m-top--TranslateX) * var(--pf-v5-global--inverse--multiplier))) translateY(var(--pf-v5-c-popover__arrow--m-top--TranslateY)) rotate(var(--pf-v5-c-popover__arrow--m-top--Rotate));
22578
+ }
22579
+
22580
+ .pf-v5-c-popover:is(.pf-m-bottom,
22581
+ .pf-m-bottom-left,
22582
+ .pf-m-bottom-right,
22583
+ .pf-m-block-end,
22584
+ .pf-m-block-end-inline-start,
22585
+ .pf-m-block-end-inline-end) .pf-v5-c-popover__arrow {
22569
22586
  inset-block-start: 0;
22570
22587
  inset-inline-start: 50%;
22571
22588
  transform: translateX(var(--pf-v5-c-popover__arrow--m-bottom--TranslateX)) translateY(var(--pf-v5-c-popover__arrow--m-bottom--TranslateY)) rotate(var(--pf-v5-c-popover__arrow--m-bottom--Rotate));
22572
22589
  }
22573
- .pf-v5-c-popover.pf-m-left .pf-v5-c-popover__arrow, .pf-v5-c-popover.pf-m-left-top .pf-v5-c-popover__arrow, .pf-v5-c-popover.pf-m-left-bottom .pf-v5-c-popover__arrow {
22590
+ :where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-popover:is(.pf-m-bottom, .pf-m-bottom-left, .pf-m-bottom-right, .pf-m-block-end, .pf-m-block-end-inline-start, .pf-m-block-end-inline-end) .pf-v5-c-popover__arrow {
22591
+ transform: translateX(calc(var(--pf-v5-c-popover__arrow--m-bottom--TranslateX) * var(--pf-v5-global--inverse--multiplier))) translateY(var(--pf-v5-c-popover__arrow--m-bottom--TranslateY)) rotate(var(--pf-v5-c-popover__arrow--m-bottom--Rotate));
22592
+ }
22593
+
22594
+ .pf-v5-c-popover:is(.pf-m-left,
22595
+ .pf-m-left-top,
22596
+ .pf-m-left-bottom,
22597
+ .pf-m-inline-start,
22598
+ .pf-m-inline-start-block-start,
22599
+ .pf-m-inline-start-block-end) .pf-v5-c-popover__arrow {
22574
22600
  inset-block-start: 50%;
22575
22601
  inset-inline-end: 0;
22576
22602
  transform: translateX(var(--pf-v5-c-popover__arrow--m-left--TranslateX)) translateY(var(--pf-v5-c-popover__arrow--m-left--TranslateY)) rotate(var(--pf-v5-c-popover__arrow--m-left--Rotate));
22577
22603
  }
22578
- .pf-v5-c-popover.pf-m-right .pf-v5-c-popover__arrow, .pf-v5-c-popover.pf-m-right-top .pf-v5-c-popover__arrow, .pf-v5-c-popover.pf-m-right-bottom .pf-v5-c-popover__arrow {
22604
+ :where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-popover:is(.pf-m-left, .pf-m-left-top, .pf-m-left-bottom, .pf-m-inline-start, .pf-m-inline-start-block-start, .pf-m-inline-start-block-end) .pf-v5-c-popover__arrow {
22605
+ transform: translateX(calc(var(--pf-v5-c-popover__arrow--m-left--TranslateX) * var(--pf-v5-global--inverse--multiplier))) translateY(var(--pf-v5-c-popover__arrow--m-left--TranslateY)) rotate(var(--pf-v5-c-popover__arrow--m-left--Rotate));
22606
+ }
22607
+
22608
+ .pf-v5-c-popover:is(.pf-m-right,
22609
+ .pf-m-right-top,
22610
+ .pf-m-right-bottom,
22611
+ .pf-m-inline-end,
22612
+ .pf-m-inline-end-block-start,
22613
+ .pf-m-inline-end-block-end) .pf-v5-c-popover__arrow {
22579
22614
  inset-block-start: 50%;
22580
22615
  inset-inline-start: 0;
22581
22616
  transform: translateX(var(--pf-v5-c-popover__arrow--m-right--TranslateX)) translateY(var(--pf-v5-c-popover__arrow--m-right--TranslateY)) rotate(var(--pf-v5-c-popover__arrow--m-right--Rotate));
22582
22617
  }
22583
- .pf-v5-c-popover.pf-m-left-top .pf-v5-c-popover__arrow, .pf-v5-c-popover.pf-m-right-top .pf-v5-c-popover__arrow {
22618
+ :where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-popover:is(.pf-m-right, .pf-m-right-top, .pf-m-right-bottom, .pf-m-inline-end, .pf-m-inline-end-block-start, .pf-m-inline-end-block-end) .pf-v5-c-popover__arrow {
22619
+ transform: translateX(calc(var(--pf-v5-c-popover__arrow--m-right--TranslateX) * var(--pf-v5-global--inverse--multiplier))) translateY(var(--pf-v5-c-popover__arrow--m-right--TranslateY)) rotate(var(--pf-v5-c-popover__arrow--m-right--Rotate));
22620
+ }
22621
+
22622
+ .pf-v5-c-popover:is(.pf-m-left-top,
22623
+ .pf-m-right-top,
22624
+ .pf-m-inline-start-block-start,
22625
+ .pf-m-inline-end-block-start) .pf-v5-c-popover__arrow {
22584
22626
  inset-block-start: var(--pf-v5-c-popover__arrow--Height);
22585
22627
  }
22586
- .pf-v5-c-popover.pf-m-left-bottom .pf-v5-c-popover__arrow, .pf-v5-c-popover.pf-m-right-bottom .pf-v5-c-popover__arrow {
22628
+ .pf-v5-c-popover:is(.pf-m-left-bottom,
22629
+ .pf-m-right-bottom,
22630
+ .pf-m-inline-start-block-end,
22631
+ .pf-m-inline-end-block-end) .pf-v5-c-popover__arrow {
22587
22632
  inset-block-start: auto;
22588
22633
  inset-block-end: 0;
22589
22634
  }
22590
- .pf-v5-c-popover.pf-m-top-left .pf-v5-c-popover__arrow, .pf-v5-c-popover.pf-m-bottom-left .pf-v5-c-popover__arrow {
22635
+ .pf-v5-c-popover:is(.pf-m-top-left,
22636
+ .pf-m-bottom-left,
22637
+ .pf-m-block-start-inline-start,
22638
+ .pf-m-block-end-inline-start) .pf-v5-c-popover__arrow {
22591
22639
  inset-inline-start: var(--pf-v5-c-popover__arrow--Width);
22592
22640
  }
22593
- .pf-v5-c-popover.pf-m-top-right .pf-v5-c-popover__arrow, .pf-v5-c-popover.pf-m-bottom-right .pf-v5-c-popover__arrow {
22641
+ .pf-v5-c-popover:is(.pf-m-top-right,
22642
+ .pf-m-bottom-right,
22643
+ .pf-m-block-start-inline-end,
22644
+ .pf-m-block-end-inline-end) .pf-v5-c-popover__arrow {
22594
22645
  inset-inline-start: auto;
22595
22646
  inset-inline-end: 0;
22596
22647
  }
@@ -30261,37 +30312,85 @@ svg.pf-v5-c-spinner.pf-m-xl {
30261
30312
  max-width: var(--pf-v5-c-tooltip--MaxWidth);
30262
30313
  box-shadow: var(--pf-v5-c-tooltip--BoxShadow);
30263
30314
  }
30264
- .pf-v5-c-tooltip.pf-m-top .pf-v5-c-tooltip__arrow, .pf-v5-c-tooltip.pf-m-top-left .pf-v5-c-tooltip__arrow, .pf-v5-c-tooltip.pf-m-top-right .pf-v5-c-tooltip__arrow {
30315
+ .pf-v5-c-tooltip:is(.pf-m-top,
30316
+ .pf-m-top-left,
30317
+ .pf-m-top-right,
30318
+ .pf-m-block-start,
30319
+ .pf-m-block-start-inline-start,
30320
+ .pf-m-block-start-inline-end) .pf-v5-c-tooltip__arrow {
30265
30321
  inset-block-end: 0;
30266
30322
  inset-inline-start: 50%;
30267
30323
  transform: translateX(var(--pf-v5-c-tooltip__arrow--m-top--TranslateX)) translateY(var(--pf-v5-c-tooltip__arrow--m-top--TranslateY)) rotate(var(--pf-v5-c-tooltip__arrow--m-top--Rotate));
30268
30324
  }
30269
- .pf-v5-c-tooltip.pf-m-bottom .pf-v5-c-tooltip__arrow, .pf-v5-c-tooltip.pf-m-bottom-left .pf-v5-c-tooltip__arrow, .pf-v5-c-tooltip.pf-m-bottom-right .pf-v5-c-tooltip__arrow {
30325
+ :where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-tooltip:is(.pf-m-top, .pf-m-top-left, .pf-m-top-right, .pf-m-block-start, .pf-m-block-start-inline-start, .pf-m-block-start-inline-end) .pf-v5-c-tooltip__arrow {
30326
+ transform: translateX(calc(var(--pf-v5-c-tooltip__arrow--m-top--TranslateX) * var(--pf-v5-global--inverse--multiplier))) translateY(var(--pf-v5-c-tooltip__arrow--m-top--TranslateY)) rotate(var(--pf-v5-c-tooltip__arrow--m-top--Rotate));
30327
+ }
30328
+
30329
+ .pf-v5-c-tooltip:is(.pf-m-bottom,
30330
+ .pf-m-bottom-left,
30331
+ .pf-m-bottom-right,
30332
+ .pf-m-block-end,
30333
+ .pf-m-block-end-inline-start,
30334
+ .pf-m-block-end-inline-end) .pf-v5-c-tooltip__arrow {
30270
30335
  inset-block-start: 0;
30271
30336
  inset-inline-start: 50%;
30272
30337
  transform: translateX(var(--pf-v5-c-tooltip__arrow--m-bottom--TranslateX)) translateY(var(--pf-v5-c-tooltip__arrow--m-bottom--TranslateY)) rotate(var(--pf-v5-c-tooltip__arrow--m-bottom--Rotate));
30273
30338
  }
30274
- .pf-v5-c-tooltip.pf-m-left .pf-v5-c-tooltip__arrow, .pf-v5-c-tooltip.pf-m-left-top .pf-v5-c-tooltip__arrow, .pf-v5-c-tooltip.pf-m-left-bottom .pf-v5-c-tooltip__arrow {
30339
+ :where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-tooltip:is(.pf-m-bottom, .pf-m-bottom-left, .pf-m-bottom-right, .pf-m-block-end, .pf-m-block-end-inline-start, .pf-m-block-end-inline-end) .pf-v5-c-tooltip__arrow {
30340
+ transform: translateX(calc(var(--pf-v5-c-tooltip__arrow--m-bottom--TranslateX) * var(--pf-v5-global--inverse--multiplier))) translateY(var(--pf-v5-c-tooltip__arrow--m-bottom--TranslateY)) rotate(var(--pf-v5-c-tooltip__arrow--m-bottom--Rotate));
30341
+ }
30342
+
30343
+ .pf-v5-c-tooltip:is(.pf-m-left,
30344
+ .pf-m-left-top,
30345
+ .pf-m-left-bottom,
30346
+ .pf-m-inline-start,
30347
+ .pf-m-inline-start-block-start,
30348
+ .pf-m-inline-start-block-end) .pf-v5-c-tooltip__arrow {
30275
30349
  inset-block-start: 50%;
30276
30350
  inset-inline-end: 0;
30277
30351
  transform: translateX(var(--pf-v5-c-tooltip__arrow--m-left--TranslateX)) translateY(var(--pf-v5-c-tooltip__arrow--m-left--TranslateY)) rotate(var(--pf-v5-c-tooltip__arrow--m-left--Rotate));
30278
30352
  }
30279
- .pf-v5-c-tooltip.pf-m-right .pf-v5-c-tooltip__arrow, .pf-v5-c-tooltip.pf-m-right-top .pf-v5-c-tooltip__arrow, .pf-v5-c-tooltip.pf-m-right-bottom .pf-v5-c-tooltip__arrow {
30353
+ :where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-tooltip:is(.pf-m-left, .pf-m-left-top, .pf-m-left-bottom, .pf-m-inline-start, .pf-m-inline-start-block-start, .pf-m-inline-start-block-end) .pf-v5-c-tooltip__arrow {
30354
+ transform: translateX(calc(var(--pf-v5-c-tooltip__arrow--m-left--TranslateX) * var(--pf-v5-global--inverse--multiplier))) translateY(var(--pf-v5-c-tooltip__arrow--m-left--TranslateY)) rotate(var(--pf-v5-c-tooltip__arrow--m-left--Rotate));
30355
+ }
30356
+
30357
+ .pf-v5-c-tooltip:is(.pf-m-right,
30358
+ .pf-m-right-top,
30359
+ .pf-m-right-bottom,
30360
+ .pf-m-inline-end,
30361
+ .pf-m-inline-end-block-start,
30362
+ .pf-m-inline-end-block-end) .pf-v5-c-tooltip__arrow {
30280
30363
  inset-block-start: 50%;
30281
30364
  inset-inline-start: 0;
30282
30365
  transform: translateX(var(--pf-v5-c-tooltip__arrow--m-right--TranslateX)) translateY(var(--pf-v5-c-tooltip__arrow--m-right--TranslateY)) rotate(var(--pf-v5-c-tooltip__arrow--m-right--Rotate));
30283
30366
  }
30284
- .pf-v5-c-tooltip.pf-m-left-top .pf-v5-c-tooltip__arrow, .pf-v5-c-tooltip.pf-m-right-top .pf-v5-c-tooltip__arrow {
30367
+ :where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-tooltip:is(.pf-m-right, .pf-m-right-top, .pf-m-right-bottom, .pf-m-inline-end, .pf-m-inline-end-block-start, .pf-m-inline-end-block-end) .pf-v5-c-tooltip__arrow {
30368
+ transform: translateX(calc(var(--pf-v5-c-tooltip__arrow--m-right--TranslateX) * var(--pf-v5-global--inverse--multiplier))) translateY(var(--pf-v5-c-tooltip__arrow--m-right--TranslateY)) rotate(var(--pf-v5-c-tooltip__arrow--m-right--Rotate));
30369
+ }
30370
+
30371
+ .pf-v5-c-tooltip:is(.pf-m-left-top,
30372
+ .pf-m-right-top,
30373
+ .pf-m-inline-start-block-start,
30374
+ .pf-m-inline-end-block-start) .pf-v5-c-tooltip__arrow {
30285
30375
  inset-block-start: var(--pf-v5-c-tooltip__arrow--Height);
30286
30376
  }
30287
- .pf-v5-c-tooltip.pf-m-left-bottom .pf-v5-c-tooltip__arrow, .pf-v5-c-tooltip.pf-m-right-bottom .pf-v5-c-tooltip__arrow {
30377
+ .pf-v5-c-tooltip:is(.pf-m-left-bottom,
30378
+ .pf-m-right-bottom,
30379
+ .pf-m-inline-start-block-end,
30380
+ .pf-m-inline-end-block-end) .pf-v5-c-tooltip__arrow {
30288
30381
  inset-block-start: auto;
30289
30382
  inset-block-end: 0;
30290
30383
  }
30291
- .pf-v5-c-tooltip.pf-m-top-left .pf-v5-c-tooltip__arrow, .pf-v5-c-tooltip.pf-m-bottom-left .pf-v5-c-tooltip__arrow {
30384
+ .pf-v5-c-tooltip:is(.pf-m-top-left,
30385
+ .pf-m-bottom-left,
30386
+ .pf-m-block-start-block-start,
30387
+ .pf-m-block-end-block-start) .pf-v5-c-tooltip__arrow {
30292
30388
  inset-inline-start: var(--pf-v5-c-tooltip__arrow--Width);
30293
30389
  }
30294
- .pf-v5-c-tooltip.pf-m-top-right .pf-v5-c-tooltip__arrow, .pf-v5-c-tooltip.pf-m-bottom-right .pf-v5-c-tooltip__arrow {
30390
+ .pf-v5-c-tooltip:is(.pf-m-top-right,
30391
+ .pf-m-bottom-right,
30392
+ .pf-m-block-start-block-end,
30393
+ .pf-m-block-end-block-end) .pf-v5-c-tooltip__arrow {
30295
30394
  inset-inline-start: auto;
30296
30395
  inset-inline-end: 0;
30297
30396
  }
@@ -30308,7 +30407,7 @@ svg.pf-v5-c-spinner.pf-m-xl {
30308
30407
  word-break: break-word;
30309
30408
  background-color: var(--pf-v5-c-tooltip__content--BackgroundColor);
30310
30409
  }
30311
- .pf-v5-c-tooltip__content.pf-m-text-align-left {
30410
+ .pf-v5-c-tooltip__content:is(.pf-m-text-align-left, .pf-m-text-align-start) {
30312
30411
  text-align: start;
30313
30412
  }
30314
30413
 
@@ -30634,6 +30733,9 @@ svg.pf-v5-c-spinner.pf-m-xl {
30634
30733
  transition: var(--pf-v5-c-tree-view__node-toggle-icon--Transition);
30635
30734
  transform: rotate(var(--pf-v5-c-tree-view__node-toggle-icon--Rotate));
30636
30735
  }
30736
+ :where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-tree-view__node-toggle-icon {
30737
+ scale: -1 1;
30738
+ }
30637
30739
 
30638
30740
  .pf-v5-c-tree-view__list-item .pf-v5-c-tree-view__list-item {
30639
30741
  --pf-v5-c-tree-view__node-toggle-icon--Rotate: var(--pf-v5-c-tree-view__node-toggle-icon--base--Rotate);
@@ -30723,6 +30825,9 @@ svg.pf-v5-c-spinner.pf-m-xl {
30723
30825
  border: 0;
30724
30826
  transform: translateX(var(--pf-v5-c-tree-view__list-item__list-item__node-toggle--TranslateX));
30725
30827
  }
30828
+ :where(.ws-dir-rtl, .pf-v5-m-dir-rtl, [dir=rtl]) .pf-v5-c-tree-view__node-toggle {
30829
+ transform: translateX(calc(var(--pf-v5-c-tree-view__list-item__list-item__node-toggle--TranslateX) * var(--pf-v5-global--inverse--multiplier)));
30830
+ }
30726
30831
 
30727
30832
  .pf-v5-c-tree-view__node-title.pf-m-truncate,
30728
30833
  .pf-v5-c-tree-view__node-text.pf-m-truncate {