@patternfly/patternfly 6.5.0-prerelease.20 → 6.5.0-prerelease.22

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.
@@ -878,7 +878,7 @@ cssPrefix: pf-v6-c-drawer
878
878
  | `.pf-m-static{-on-[lg, xl, 2xl]}` | `.pf-v6-c-drawer` | Modifies the drawer panel state to always show both content and panel at optional [breakpoint](/tokens/all-patternfly-tokens). |
879
879
  | `.pf-m-inline{-on-[lg, xl, 2xl]}` | `.pf-v6-c-drawer` | Modifies the drawer so the content element and panel element are displayed side by side. `.pf-m-inline` used without a [breakpoint](/tokens/all-patternfly-tokens) will default to the `md` breakpoint. |
880
880
  | `.pf-m-pill` | `.pf-v6-c-drawer` | Modifies the drawer for pill styles. |
881
- | `.pf-m-no-glass` | `.pf-v6-c-drawer__panel.pf-m-pill` | Modifies the drawer panel remove glass styling when using glass theme. |
881
+ | `.pf-m-no-glass` | `.pf-v6-c-drawer__panel.pf-m-pill` | Modifies the drawer panel to remove glass styling when using glass theme. |
882
882
  | `.pf-m-no-border` | `.pf-v6-c-drawer__panel` | Modifies the drawer panel border treatment to disable all border treatment. |
883
883
  | `.pf-m-padding` | `.pf-v6-c-drawer__body` | Modifies the element to add padding. |
884
884
  | `.pf-m-no-padding` | `.pf-v6-c-drawer__body` | Modifies the element to remove padding. |
@@ -0,0 +1,25 @@
1
+ ---
2
+ id: 'Hero'
3
+ beta: true
4
+ section: components
5
+ cssPrefix: pf-v6-c-hero
6
+ ---## Examples
7
+
8
+ ### Basic
9
+
10
+ ```html isBeta
11
+ <div class="pf-v6-c-hero">
12
+ <div class="pf-v6-c-hero__body">Basic hero content</div>
13
+ </div>
14
+
15
+ ```
16
+
17
+ ## Documentation
18
+
19
+ ### Usage
20
+
21
+ | Class | Applied to | Outcome |
22
+ | -- | -- | -- |
23
+ | `.pf-v6-c-hero` | `<div>` | Initiates the hero. **Required** |
24
+ | `.pf-v6-c-hero__body` | `<div>` | Initiates the hero body. |
25
+ | `.pf-m-no-glass` | `.pf-v6-c-hero` | Modifies the hero to remove glass styling when using glass theme. |
@@ -457,11 +457,11 @@ wrapperTag: div
457
457
  <div class="pf-v6-c-compass__main">
458
458
  <div class="pf-v6-c-compass__main-header">
459
459
  <div class="pf-v6-c-compass__panel">
460
- <div class="pf-v6-l-flex pf-m-align-items-center">
461
- <div class="pf-v6-l-flex__item pf-m-grow">
460
+ <div class="pf-v6-c-compass__main-header-content">
461
+ <div class="pf-v6-c-compass__main-header-title">
462
462
  <h2 class="pf-v6-c-title pf-m-h1">Page title</h2>
463
463
  </div>
464
- <div class="pf-v6-l-flex__item">
464
+ <div class="pf-v6-c-compass__main-header-toolbar">
465
465
  <div class="pf-v6-c-action-list">
466
466
  <div class="pf-v6-c-action-list__group">
467
467
  <div class="pf-v6-c-action-list__item">
@@ -1667,31 +1667,33 @@ wrapperTag: div
1667
1667
  </div>
1668
1668
  </div>
1669
1669
  <div class="pf-v6-c-compass__main">
1670
- <div
1671
- class="pf-v6-c-compass__panel pf-v6-c-compass__hero"
1672
- style="
1673
- --pf-v6-c-compass__hero--gradient--stop-1--dark: #3d2785;
1674
- --pf-v6-c-compass__hero--gradient--stop-2--dark: #1b0d33;
1675
- --pf-v6-c-compass__hero--gradient--stop-3--dark: #000;
1676
- --pf-v6-c-compass__hero--BackgroundImage--light: url(/assets/images/compass--hero-bg.png);
1677
- --pf-v6-c-compass__hero--BackgroundImage--dark: url(/assets/images/compass--hero-bg.png);
1678
- "
1679
- >
1680
- <div class="pf-v6-c-compass__hero-body">
1681
- <div class="pf-v6-c-content">
1682
- <h1>Automation that does more</h1>
1683
- <p>Red&nbsp;Hat Ansible Automation Platform offers more capabilities, accessibility, and flexibility, so you can bring the power of automation to the teams, tasks, and environments that need it.</p>
1684
- <div class="pf-v6-c-action-list">
1685
- <div class="pf-v6-c-action-list__group">
1686
- <div class="pf-v6-c-action-list__item">
1687
- <button class="pf-v6-c-button pf-m-primary" type="button">
1688
- <span class="pf-v6-c-button__text">Upgrade today</span>
1689
- </button>
1690
- </div>
1691
- <div class="pf-v6-c-action-list__item">
1692
- <button class="pf-v6-c-button pf-m-secondary" type="button">
1693
- <span class="pf-v6-c-button__text">Talk to a Red Hatter</span>
1694
- </button>
1670
+ <div class="pf-v6-c-compass__hero">
1671
+ <div
1672
+ class="pf-v6-c-hero"
1673
+ style="
1674
+ --pf-v6-c-hero--gradient--stop-1--dark: #3d2785;
1675
+ --pf-v6-c-hero--gradient--stop-2--dark: #1b0d33;
1676
+ --pf-v6-c-hero--gradient--stop-3--dark: #000;
1677
+ --pf-v6-c-hero--BackgroundImage--light: url(/assets/images/compass--hero-bg.png);
1678
+ --pf-v6-c-hero--BackgroundImage--dark: url(/assets/images/compass--hero-bg.png);
1679
+ "
1680
+ >
1681
+ <div class="pf-v6-c-hero__body">
1682
+ <div class="pf-v6-c-content">
1683
+ <h1>Automation that does more</h1>
1684
+ <p>Red&nbsp;Hat Ansible Automation Platform offers more capabilities, accessibility, and flexibility, so you can bring the power of automation to the teams, tasks, and environments that need it.</p>
1685
+ <div class="pf-v6-c-action-list">
1686
+ <div class="pf-v6-c-action-list__group">
1687
+ <div class="pf-v6-c-action-list__item">
1688
+ <button class="pf-v6-c-button pf-m-primary" type="button">
1689
+ <span class="pf-v6-c-button__text">Upgrade today</span>
1690
+ </button>
1691
+ </div>
1692
+ <div class="pf-v6-c-action-list__item">
1693
+ <button class="pf-v6-c-button pf-m-secondary" type="button">
1694
+ <span class="pf-v6-c-button__text">Talk to a Red Hatter</span>
1695
+ </button>
1696
+ </div>
1695
1697
  </div>
1696
1698
  </div>
1697
1699
  </div>
@@ -3105,11 +3107,11 @@ wrapperTag: div
3105
3107
  <div class="pf-v6-c-compass__main">
3106
3108
  <div class="pf-v6-c-compass__main-header">
3107
3109
  <div class="pf-v6-c-compass__panel">
3108
- <div class="pf-v6-l-flex pf-m-align-items-center">
3109
- <div class="pf-v6-l-flex__item pf-m-grow">
3110
+ <div class="pf-v6-c-compass__main-header-content">
3111
+ <div class="pf-v6-c-compass__main-header-title">
3110
3112
  <h2 class="pf-v6-c-title pf-m-h1">Page title</h2>
3111
3113
  </div>
3112
- <div class="pf-v6-l-flex__item">
3114
+ <div class="pf-v6-c-compass__main-header-toolbar">
3113
3115
  <div class="pf-v6-c-action-list">
3114
3116
  <div class="pf-v6-c-action-list__group">
3115
3117
  <div class="pf-v6-c-action-list__item">
@@ -5000,11 +5002,11 @@ wrapperTag: div
5000
5002
  <div class="pf-v6-c-compass__main">
5001
5003
  <div class="pf-v6-c-compass__main-header">
5002
5004
  <div class="pf-v6-c-compass__panel">
5003
- <div class="pf-v6-l-flex pf-m-align-items-center">
5004
- <div class="pf-v6-l-flex__item pf-m-grow">
5005
+ <div class="pf-v6-c-compass__main-header-content">
5006
+ <div class="pf-v6-c-compass__main-header-title">
5005
5007
  <h2 class="pf-v6-c-title pf-m-h1">Page title</h2>
5006
5008
  </div>
5007
- <div class="pf-v6-l-flex__item">
5009
+ <div class="pf-v6-c-compass__main-header-toolbar">
5008
5010
  <div class="pf-v6-c-action-list">
5009
5011
  <div class="pf-v6-c-action-list__group">
5010
5012
  <div class="pf-v6-c-action-list__item">
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": "6.5.0-prerelease.20",
4
+ "version": "6.5.0-prerelease.22",
5
5
  "keywords": [],
6
6
  "license": "MIT",
7
7
  "scripts": {
@@ -12272,6 +12272,8 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
12272
12272
  --pf-v6-c-compass__nav--RowGap: var(--pf-t--global--spacer--gap--group--vertical);
12273
12273
  --pf-v6-c-compass__sidebar--Padding: var(--pf-t--global--spacer--sm);
12274
12274
  --pf-v6-c-compass__main--RowGap: var(--pf-t--global--spacer--md);
12275
+ --pf-v6-c-compass__main-header-content--RowGap: var(--pf-t--global--spacer--sm);
12276
+ --pf-v6-c-compass__main-header-content--ColumnGap: var(--pf-t--global--spacer--md);
12275
12277
  --pf-v6-c-compass__panel--BackgroundColor: var(--pf-t--global--background--color--glass--default);
12276
12278
  --pf-v6-c-compass__panel--BackdropFilter: var(--pf-t--global--background--color--glass--filter);
12277
12279
  --pf-v6-c-compass__panel--BorderRadius: var(--pf-t--global--border--radius--large);
@@ -12283,17 +12285,6 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
12283
12285
  --pf-v6-c-compass__message-bar--Width: 450px;
12284
12286
  --pf-v6-c-compass__message-bar--MinWidth: 300px;
12285
12287
  --pf-v6-c-compass__message-bar--MaxWidth: 600px;
12286
- --pf-v6-c-compass__hero--gradient--angle: 109deg;
12287
- --pf-v6-c-compass__hero--gradient--stop-1--light: transparent;
12288
- --pf-v6-c-compass__hero--gradient--stop-2--light: transparent;
12289
- --pf-v6-c-compass__hero--gradient--stop-3--light: transparent;
12290
- --pf-v6-c-compass__hero--gradient--stop-1--dark: transparent;
12291
- --pf-v6-c-compass__hero--gradient--stop-2--dark: transparent;
12292
- --pf-v6-c-compass__hero--gradient--stop-3--dark: transparent;
12293
- --pf-v6-c-compass__hero--BackgroundImage--light: none;
12294
- --pf-v6-c-compass__hero--BackgroundImage--dark: none;
12295
- --pf-v6-c-compass__hero-body--Width: 800px;
12296
- --pf-v6-c-compass__hero-body--MaxWidth: 80%;
12297
12288
  }
12298
12289
 
12299
12290
  .pf-v6-c-compass {
@@ -12354,6 +12345,15 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
12354
12345
  min-height: 0;
12355
12346
  }
12356
12347
 
12348
+ .pf-v6-c-compass__main-header-content {
12349
+ display: flex;
12350
+ gap: var(--pf-v6-c-compass__main-header-content--RowGap) var(--pf-v6-c-compass__main-header-content--ColumnGap);
12351
+ }
12352
+
12353
+ .pf-v6-c-compass__main-header-title {
12354
+ flex-grow: 1;
12355
+ }
12356
+
12357
12357
  .pf-v6-c-compass__content {
12358
12358
  display: flex;
12359
12359
  flex: 1 0 0;
@@ -12407,29 +12407,6 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
12407
12407
  overflow: auto;
12408
12408
  }
12409
12409
 
12410
- .pf-v6-c-compass__hero {
12411
- display: flex;
12412
- padding-block-start: 32px;
12413
- padding-block-end: 32px;
12414
- padding-inline-start: 72px;
12415
- padding-inline-end: 0;
12416
- background-image: var(--pf-v6-c-compass__hero--BackgroundImage, var(--pf-v6-c-compass__hero--BackgroundImage--light)), linear-gradient(var(--pf-v6-c-compass__hero--gradient--angle), var(--pf-v6-c-compass__hero--gradient--stop-1, var(--pf-v6-c-compass__hero--gradient--stop-1--light)) 0%, var(--pf-v6-c-compass__hero--gradient--stop-2, var(--pf-v6-c-compass__hero--gradient--stop-2--light)) 50%, var(--pf-v6-c-compass__hero--gradient--stop-3, var(--pf-v6-c-compass__hero--gradient--stop-3--light)) 100%);
12417
- background-repeat: no-repeat;
12418
- background-position: right center;
12419
- background-size: contain;
12420
- border-radius: 24px 72px;
12421
- }
12422
- :root:where(.pf-v6-theme-dark) .pf-v6-c-compass__hero {
12423
- --pf-v6-c-compass__hero--BackgroundImage: var(--pf-v6-c-compass__hero--BackgroundImage--dark);
12424
- --pf-v6-c-compass__hero--gradient--stop-1: var(--pf-v6-c-compass__hero--gradient--stop-1--dark);
12425
- --pf-v6-c-compass__hero--gradient--stop-2: var(--pf-v6-c-compass__hero--gradient--stop-2--dark);
12426
- --pf-v6-c-compass__hero--gradient--stop-3: var(--pf-v6-c-compass__hero--gradient--stop-3--dark);
12427
- }
12428
-
12429
- .pf-v6-c-compass__hero-body {
12430
- width: min(var(--pf-v6-c-compass__hero-body--Width), var(--pf-v6-c-compass__hero-body--MaxWidth));
12431
- }
12432
-
12433
12410
  /* stylelint-disable */
12434
12411
  @media (max-width: 1200px) {
12435
12412
  .pf-v6-c-compass * {
@@ -16884,81 +16861,6 @@ ul) {
16884
16861
  pointer-events: none;
16885
16862
  }
16886
16863
 
16887
- .pf-v6-c-hint {
16888
- --pf-v6-c-hint--GridRowGap: var(--pf-t--global--spacer--sm);
16889
- --pf-v6-c-hint--PaddingBlockStart: var(--pf-t--global--spacer--lg);
16890
- --pf-v6-c-hint--PaddingInlineEnd: var(--pf-t--global--spacer--lg);
16891
- --pf-v6-c-hint--PaddingBlockEnd: var(--pf-t--global--spacer--lg);
16892
- --pf-v6-c-hint--PaddingInlineStart: var(--pf-t--global--spacer--lg);
16893
- --pf-v6-c-hint--BackgroundColor: var(--pf-t--global--background--color--primary--default);
16894
- --pf-v6-c-hint--BorderColor: var(--pf-t--global--border--color--status--info--default);
16895
- --pf-v6-c-hint--BorderWidth: var(--pf-t--global--border--width--box--status--default);
16896
- --pf-v6-c-hint--BorderRadius: var(--pf-t--global--border--radius--medium);
16897
- --pf-v6-c-hint--Color: var(--pf-t--global--text--color--regular);
16898
- --pf-v6-c-hint__title--FontWeight: var(--pf-t--global--font--weight--body--bold);
16899
- --pf-v6-c-hint__body--FontSize: var(--pf-t--global--font--size--body--default);
16900
- --pf-v6-c-hint__footer--MarginBlockStart: var(--pf-t--global--spacer--sm);
16901
- --pf-v6-c-hint__footer--child--MarginInlineEnd: var(--pf-t--global--spacer--md);
16902
- --pf-v6-c-hint__actions--MarginInlineStart: var(--pf-t--global--spacer--2xl);
16903
- --pf-v6-c-hint__actions--c-menu-toggle--MarginBlockStart: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
16904
- --pf-v6-c-hint__actions--c-menu-toggle--MarginBlockEnd: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
16905
- }
16906
-
16907
- .pf-v6-c-hint {
16908
- display: grid;
16909
- grid-template-columns: 1fr auto;
16910
- grid-row-gap: var(--pf-v6-c-hint--GridRowGap);
16911
- padding-block-start: var(--pf-v6-c-hint--PaddingBlockStart);
16912
- padding-block-end: var(--pf-v6-c-hint--PaddingBlockEnd);
16913
- padding-inline-start: var(--pf-v6-c-hint--PaddingInlineStart);
16914
- padding-inline-end: var(--pf-v6-c-hint--PaddingInlineEnd);
16915
- color: var(--pf-v6-c-hint--Color);
16916
- background-color: var(--pf-v6-c-hint--BackgroundColor);
16917
- border: var(--pf-v6-c-hint--BorderWidth) solid var(--pf-v6-c-hint--BorderColor);
16918
- border-radius: var(--pf-v6-c-hint--BorderRadius);
16919
- }
16920
- .pf-v6-c-hint .pf-v6-c-button.pf-m-link.pf-m-inline {
16921
- text-align: start;
16922
- white-space: normal;
16923
- }
16924
-
16925
- .pf-v6-c-hint__actions {
16926
- display: inline-grid;
16927
- grid-row: 1;
16928
- grid-column: 2;
16929
- grid-auto-flow: column;
16930
- align-self: start;
16931
- margin-block-start: var(--pf-v6-c-hint__actions--c-menu-toggle--MarginBlockStart);
16932
- margin-block-end: var(--pf-v6-c-hint__actions--c-menu-toggle--MarginBlockEnd);
16933
- margin-inline-start: var(--pf-v6-c-hint__actions--MarginInlineStart);
16934
- text-align: end;
16935
- }
16936
- .pf-v6-c-hint__actions.pf-m-no-offset {
16937
- --pf-v6-c-hint__actions--c-menu-toggle--MarginBlockStart: 0;
16938
- --pf-v6-c-hint__actions--c-menu-toggle--MarginBlockEnd: 0;
16939
- }
16940
- .pf-v6-c-hint__actions + .pf-v6-c-hint__body {
16941
- grid-column: 1;
16942
- }
16943
-
16944
- .pf-v6-c-hint__title {
16945
- align-self: center;
16946
- font-weight: var(--pf-v6-c-hint__title--FontWeight);
16947
- }
16948
-
16949
- .pf-v6-c-hint__body {
16950
- grid-column: 1/-1;
16951
- font-size: var(--pf-v6-c-hint__body--FontSize);
16952
- }
16953
-
16954
- .pf-v6-c-hint__footer {
16955
- grid-column: 1/-1;
16956
- margin-block-start: var(--pf-v6-c-hint__footer--MarginBlockStart);
16957
- }
16958
- .pf-v6-c-hint__footer > :not(:last-child) {
16959
- margin-inline-end: var(--pf-v6-c-hint__footer--child--MarginInlineEnd);
16960
- }
16961
-
16962
16864
  .pf-v6-c-helper-text {
16963
16865
  --pf-v6-c-helper-text--Gap: var(--pf-t--global--spacer--xs);
16964
16866
  --pf-v6-c-helper-text--FontSize: var(--pf-t--global--font--size--body--sm);
@@ -17044,6 +16946,156 @@ ul) {
17044
16946
  color: var(--pf-v6-c-helper-text__item-text--Color);
17045
16947
  }
17046
16948
 
16949
+ .pf-v6-c-hero {
16950
+ --pf-v6-c-hero--PaddingBlockStart: var(--pf-t--global--spacer--xl);
16951
+ --pf-v6-c-hero--PaddingBlockEnd: var(--pf-t--global--spacer--xl);
16952
+ --pf-v6-c-hero--PaddingInlineStart: var(--pf-t--global--spacer--3xl);
16953
+ --pf-v6-c-hero--PaddingInlineEnd: var(--pf-t--global--spacer--xl);
16954
+ --pf-v6-c-hero--gradient--angle: 109deg;
16955
+ --pf-v6-c-hero--gradient--stop-1--light: transparent;
16956
+ --pf-v6-c-hero--gradient--stop-2--light: transparent;
16957
+ --pf-v6-c-hero--gradient--stop-3--light: transparent;
16958
+ --pf-v6-c-hero--gradient--stop-1--dark: transparent;
16959
+ --pf-v6-c-hero--gradient--stop-2--dark: transparent;
16960
+ --pf-v6-c-hero--gradient--stop-3--dark: transparent;
16961
+ --pf-v6-c-hero--BackgroundColor: var(--pf-t--global--background--color--glass--default);
16962
+ --pf-v6-c-hero--BackdropFilter: var(--pf-t--global--background--color--glass--filter);
16963
+ --pf-v6-c-hero--BackgroundImage--light: none;
16964
+ --pf-v6-c-hero--BackgroundImage--dark: none;
16965
+ --pf-v6-c-hero--BackgroundRepeat: no-repeat;
16966
+ --pf-v6-c-hero--BackgroundPosition: right center;
16967
+ --pf-v6-c-hero--BackgroundSize: contain;
16968
+ --pf-v6-c-hero--BorderStyle: solid;
16969
+ --pf-v6-c-hero--BorderBlockStartWidth: var(--pf-t--global--border--width--regular);
16970
+ --pf-v6-c-hero--BorderBlockEndWidth: var(--pf-t--global--border--width--regular);
16971
+ --pf-v6-c-hero--BorderInlineStartWidth: var(--pf-t--global--border--width--regular);
16972
+ --pf-v6-c-hero--BorderInlineEndWidth: var(--pf-t--global--border--width--regular);
16973
+ --pf-v6-c-hero--BorderColor: var(--pf-t--global--border--color--default);
16974
+ --pf-v6-c-hero--m-glass--BorderColor: var(--pf-t--global--border--color--alt);
16975
+ --pf-v6-c-hero--m-glass--BoxShadow: var(--pf-t--global--box-shadow--md);
16976
+ --pf-v6-c-hero--BorderStartStartRadius: 24px;
16977
+ --pf-v6-c-hero--BorderStartEndRadius: 72px;
16978
+ --pf-v6-c-hero--BorderEndEndRadius: 24px;
16979
+ --pf-v6-c-hero--BorderEndStartRadius: 72px;
16980
+ --pf-v6-c-hero__body--Width: 800px;
16981
+ --pf-v6-c-hero__body--MaxWidth: 80%;
16982
+ }
16983
+
16984
+ .pf-v6-c-hero {
16985
+ display: flex;
16986
+ padding-block-start: var(--pf-v6-c-hero--PaddingBlockStart);
16987
+ padding-block-end: var(--pf-v6-c-hero--PaddingBlockEnd);
16988
+ padding-inline-start: var(--pf-v6-c-hero--PaddingInlineStart);
16989
+ padding-inline-end: var(--pf-v6-c-hero--PaddingInlineEnd);
16990
+ background-image: var(--pf-v6-c-hero--BackgroundImage, var(--pf-v6-c-hero--BackgroundImage--light)), linear-gradient(var(--pf-v6-c-hero--gradient--angle), var(--pf-v6-c-hero--gradient--stop-1, var(--pf-v6-c-hero--gradient--stop-1--light)) 0%, var(--pf-v6-c-hero--gradient--stop-2, var(--pf-v6-c-hero--gradient--stop-2--light)) 50%, var(--pf-v6-c-hero--gradient--stop-3, var(--pf-v6-c-hero--gradient--stop-3--light)) 100%);
16991
+ background-repeat: var(--pf-v6-c-hero--BackgroundRepeat);
16992
+ background-position: var(--pf-v6-c-hero--BackgroundPosition);
16993
+ background-size: var(--pf-v6-c-hero--BackgroundSize);
16994
+ border-color: var(--pf-v6-c-hero--BorderColor);
16995
+ border-style: var(--pf-v6-c-hero--BorderStyle);
16996
+ border-block-start-width: var(--pf-v6-c-hero--BorderBlockStartWidth);
16997
+ border-block-end-width: var(--pf-v6-c-hero--BorderBlockEndWidth);
16998
+ border-inline-start-width: var(--pf-v6-c-hero--BorderInlineStartWidth);
16999
+ border-inline-end-width: var(--pf-v6-c-hero--BorderInlineEndWidth);
17000
+ border-start-start-radius: var(--pf-v6-c-hero--BorderStartStartRadius);
17001
+ border-start-end-radius: var(--pf-v6-c-hero--BorderStartEndRadius);
17002
+ border-end-start-radius: var(--pf-v6-c-hero--BorderEndStartRadius);
17003
+ border-end-end-radius: var(--pf-v6-c-hero--BorderEndEndRadius);
17004
+ }
17005
+ :root:where(.pf-v6-theme-dark) .pf-v6-c-hero {
17006
+ --pf-v6-c-hero--BackgroundImage: var(--pf-v6-c-hero--BackgroundImage--dark);
17007
+ --pf-v6-c-hero--gradient--stop-1: var(--pf-v6-c-hero--gradient--stop-1--dark);
17008
+ --pf-v6-c-hero--gradient--stop-2: var(--pf-v6-c-hero--gradient--stop-2--dark);
17009
+ --pf-v6-c-hero--gradient--stop-3: var(--pf-v6-c-hero--gradient--stop-3--dark);
17010
+ }
17011
+ :root:where(.pf-v6-theme-glass) .pf-v6-c-hero {
17012
+ --pf-v6-c-hero--BorderColor: var(--pf-v6-c-hero--m-glass--BorderColor);
17013
+ box-shadow: var(--pf-v6-c-hero--m-glass--BoxShadow);
17014
+ }
17015
+ .pf-v6-c-hero:not(.pf-m-no-glass) {
17016
+ background-color: var(--pf-v6-c-hero--BackgroundColor);
17017
+ backdrop-filter: var(--pf-v6-c-hero--BackdropFilter);
17018
+ }
17019
+
17020
+ .pf-v6-c-hero__body {
17021
+ width: min(var(--pf-v6-c-hero__body--Width), var(--pf-v6-c-hero__body--MaxWidth));
17022
+ }
17023
+
17024
+ .pf-v6-c-hint {
17025
+ --pf-v6-c-hint--GridRowGap: var(--pf-t--global--spacer--sm);
17026
+ --pf-v6-c-hint--PaddingBlockStart: var(--pf-t--global--spacer--lg);
17027
+ --pf-v6-c-hint--PaddingInlineEnd: var(--pf-t--global--spacer--lg);
17028
+ --pf-v6-c-hint--PaddingBlockEnd: var(--pf-t--global--spacer--lg);
17029
+ --pf-v6-c-hint--PaddingInlineStart: var(--pf-t--global--spacer--lg);
17030
+ --pf-v6-c-hint--BackgroundColor: var(--pf-t--global--background--color--primary--default);
17031
+ --pf-v6-c-hint--BorderColor: var(--pf-t--global--border--color--status--info--default);
17032
+ --pf-v6-c-hint--BorderWidth: var(--pf-t--global--border--width--box--status--default);
17033
+ --pf-v6-c-hint--BorderRadius: var(--pf-t--global--border--radius--medium);
17034
+ --pf-v6-c-hint--Color: var(--pf-t--global--text--color--regular);
17035
+ --pf-v6-c-hint__title--FontWeight: var(--pf-t--global--font--weight--body--bold);
17036
+ --pf-v6-c-hint__body--FontSize: var(--pf-t--global--font--size--body--default);
17037
+ --pf-v6-c-hint__footer--MarginBlockStart: var(--pf-t--global--spacer--sm);
17038
+ --pf-v6-c-hint__footer--child--MarginInlineEnd: var(--pf-t--global--spacer--md);
17039
+ --pf-v6-c-hint__actions--MarginInlineStart: var(--pf-t--global--spacer--2xl);
17040
+ --pf-v6-c-hint__actions--c-menu-toggle--MarginBlockStart: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
17041
+ --pf-v6-c-hint__actions--c-menu-toggle--MarginBlockEnd: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
17042
+ }
17043
+
17044
+ .pf-v6-c-hint {
17045
+ display: grid;
17046
+ grid-template-columns: 1fr auto;
17047
+ grid-row-gap: var(--pf-v6-c-hint--GridRowGap);
17048
+ padding-block-start: var(--pf-v6-c-hint--PaddingBlockStart);
17049
+ padding-block-end: var(--pf-v6-c-hint--PaddingBlockEnd);
17050
+ padding-inline-start: var(--pf-v6-c-hint--PaddingInlineStart);
17051
+ padding-inline-end: var(--pf-v6-c-hint--PaddingInlineEnd);
17052
+ color: var(--pf-v6-c-hint--Color);
17053
+ background-color: var(--pf-v6-c-hint--BackgroundColor);
17054
+ border: var(--pf-v6-c-hint--BorderWidth) solid var(--pf-v6-c-hint--BorderColor);
17055
+ border-radius: var(--pf-v6-c-hint--BorderRadius);
17056
+ }
17057
+ .pf-v6-c-hint .pf-v6-c-button.pf-m-link.pf-m-inline {
17058
+ text-align: start;
17059
+ white-space: normal;
17060
+ }
17061
+
17062
+ .pf-v6-c-hint__actions {
17063
+ display: inline-grid;
17064
+ grid-row: 1;
17065
+ grid-column: 2;
17066
+ grid-auto-flow: column;
17067
+ align-self: start;
17068
+ margin-block-start: var(--pf-v6-c-hint__actions--c-menu-toggle--MarginBlockStart);
17069
+ margin-block-end: var(--pf-v6-c-hint__actions--c-menu-toggle--MarginBlockEnd);
17070
+ margin-inline-start: var(--pf-v6-c-hint__actions--MarginInlineStart);
17071
+ text-align: end;
17072
+ }
17073
+ .pf-v6-c-hint__actions.pf-m-no-offset {
17074
+ --pf-v6-c-hint__actions--c-menu-toggle--MarginBlockStart: 0;
17075
+ --pf-v6-c-hint__actions--c-menu-toggle--MarginBlockEnd: 0;
17076
+ }
17077
+ .pf-v6-c-hint__actions + .pf-v6-c-hint__body {
17078
+ grid-column: 1;
17079
+ }
17080
+
17081
+ .pf-v6-c-hint__title {
17082
+ align-self: center;
17083
+ font-weight: var(--pf-v6-c-hint__title--FontWeight);
17084
+ }
17085
+
17086
+ .pf-v6-c-hint__body {
17087
+ grid-column: 1/-1;
17088
+ font-size: var(--pf-v6-c-hint__body--FontSize);
17089
+ }
17090
+
17091
+ .pf-v6-c-hint__footer {
17092
+ grid-column: 1/-1;
17093
+ margin-block-start: var(--pf-v6-c-hint__footer--MarginBlockStart);
17094
+ }
17095
+ .pf-v6-c-hint__footer > :not(:last-child) {
17096
+ margin-inline-end: var(--pf-v6-c-hint__footer--child--MarginInlineEnd);
17097
+ }
17098
+
17047
17099
  .pf-v6-c-icon {
17048
17100
  --pf-v6-c-icon--Width: var(--pf-t--global--icon--size--font--body--default);
17049
17101
  --pf-v6-c-icon--Height: var(--pf-t--global--icon--size--font--body--default);