@patternfly/patternfly 6.5.0-prerelease.20 → 6.5.0-prerelease.21
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/components/Compass/compass.css +0 -34
- package/components/Compass/compass.scss +0 -41
- package/components/Hero/hero.css +74 -0
- package/components/Hero/hero.scss +86 -0
- package/components/_index.css +150 -109
- package/components/_index.scss +2 -1
- package/docs/components/Compass/examples/Compass.md +4 -4
- package/docs/components/Drawer/examples/Drawer.md +1 -1
- package/docs/components/Hero/examples/Hero.md +25 -0
- package/docs/demos/Compass/examples/Compass.md +27 -25
- package/package.json +1 -1
- package/patternfly-no-globals.css +150 -109
- package/patternfly.css +150 -109
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/sass-utilities/namespaces-components.scss +3 -0
|
@@ -1667,31 +1667,33 @@ wrapperTag: div
|
|
|
1667
1667
|
</div>
|
|
1668
1668
|
</div>
|
|
1669
1669
|
<div class="pf-v6-c-compass__main">
|
|
1670
|
-
<div
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
<div class="pf-v6-c-
|
|
1682
|
-
<
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
<div class="pf-v6-c-action-
|
|
1686
|
-
<div class="pf-v6-c-action-
|
|
1687
|
-
<
|
|
1688
|
-
<
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
<
|
|
1693
|
-
<
|
|
1694
|
-
|
|
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 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>
|
package/package.json
CHANGED
|
@@ -12283,17 +12283,6 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
12283
12283
|
--pf-v6-c-compass__message-bar--Width: 450px;
|
|
12284
12284
|
--pf-v6-c-compass__message-bar--MinWidth: 300px;
|
|
12285
12285
|
--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
12286
|
}
|
|
12298
12287
|
|
|
12299
12288
|
.pf-v6-c-compass {
|
|
@@ -12407,29 +12396,6 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
12407
12396
|
overflow: auto;
|
|
12408
12397
|
}
|
|
12409
12398
|
|
|
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
12399
|
/* stylelint-disable */
|
|
12434
12400
|
@media (max-width: 1200px) {
|
|
12435
12401
|
.pf-v6-c-compass * {
|
|
@@ -16884,81 +16850,6 @@ ul) {
|
|
|
16884
16850
|
pointer-events: none;
|
|
16885
16851
|
}
|
|
16886
16852
|
|
|
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
16853
|
.pf-v6-c-helper-text {
|
|
16963
16854
|
--pf-v6-c-helper-text--Gap: var(--pf-t--global--spacer--xs);
|
|
16964
16855
|
--pf-v6-c-helper-text--FontSize: var(--pf-t--global--font--size--body--sm);
|
|
@@ -17044,6 +16935,156 @@ ul) {
|
|
|
17044
16935
|
color: var(--pf-v6-c-helper-text__item-text--Color);
|
|
17045
16936
|
}
|
|
17046
16937
|
|
|
16938
|
+
.pf-v6-c-hero {
|
|
16939
|
+
--pf-v6-c-hero--PaddingBlockStart: var(--pf-t--global--spacer--xl);
|
|
16940
|
+
--pf-v6-c-hero--PaddingBlockEnd: var(--pf-t--global--spacer--xl);
|
|
16941
|
+
--pf-v6-c-hero--PaddingInlineStart: var(--pf-t--global--spacer--3xl);
|
|
16942
|
+
--pf-v6-c-hero--PaddingInlineEnd: var(--pf-t--global--spacer--xl);
|
|
16943
|
+
--pf-v6-c-hero--gradient--angle: 109deg;
|
|
16944
|
+
--pf-v6-c-hero--gradient--stop-1--light: transparent;
|
|
16945
|
+
--pf-v6-c-hero--gradient--stop-2--light: transparent;
|
|
16946
|
+
--pf-v6-c-hero--gradient--stop-3--light: transparent;
|
|
16947
|
+
--pf-v6-c-hero--gradient--stop-1--dark: transparent;
|
|
16948
|
+
--pf-v6-c-hero--gradient--stop-2--dark: transparent;
|
|
16949
|
+
--pf-v6-c-hero--gradient--stop-3--dark: transparent;
|
|
16950
|
+
--pf-v6-c-hero--BackgroundColor: var(--pf-t--global--background--color--glass--default);
|
|
16951
|
+
--pf-v6-c-hero--BackdropFilter: var(--pf-t--global--background--color--glass--filter);
|
|
16952
|
+
--pf-v6-c-hero--BackgroundImage--light: none;
|
|
16953
|
+
--pf-v6-c-hero--BackgroundImage--dark: none;
|
|
16954
|
+
--pf-v6-c-hero--BackgroundRepeat: no-repeat;
|
|
16955
|
+
--pf-v6-c-hero--BackgroundPosition: right center;
|
|
16956
|
+
--pf-v6-c-hero--BackgroundSize: contain;
|
|
16957
|
+
--pf-v6-c-hero--BorderStyle: solid;
|
|
16958
|
+
--pf-v6-c-hero--BorderBlockStartWidth: var(--pf-t--global--border--width--regular);
|
|
16959
|
+
--pf-v6-c-hero--BorderBlockEndWidth: var(--pf-t--global--border--width--regular);
|
|
16960
|
+
--pf-v6-c-hero--BorderInlineStartWidth: var(--pf-t--global--border--width--regular);
|
|
16961
|
+
--pf-v6-c-hero--BorderInlineEndWidth: var(--pf-t--global--border--width--regular);
|
|
16962
|
+
--pf-v6-c-hero--BorderColor: var(--pf-t--global--border--color--default);
|
|
16963
|
+
--pf-v6-c-hero--m-glass--BorderColor: var(--pf-t--global--border--color--alt);
|
|
16964
|
+
--pf-v6-c-hero--m-glass--BoxShadow: var(--pf-t--global--box-shadow--md);
|
|
16965
|
+
--pf-v6-c-hero--BorderStartStartRadius: 24px;
|
|
16966
|
+
--pf-v6-c-hero--BorderStartEndRadius: 72px;
|
|
16967
|
+
--pf-v6-c-hero--BorderEndEndRadius: 24px;
|
|
16968
|
+
--pf-v6-c-hero--BorderEndStartRadius: 72px;
|
|
16969
|
+
--pf-v6-c-hero__body--Width: 800px;
|
|
16970
|
+
--pf-v6-c-hero__body--MaxWidth: 80%;
|
|
16971
|
+
}
|
|
16972
|
+
|
|
16973
|
+
.pf-v6-c-hero {
|
|
16974
|
+
display: flex;
|
|
16975
|
+
padding-block-start: var(--pf-v6-c-hero--PaddingBlockStart);
|
|
16976
|
+
padding-block-end: var(--pf-v6-c-hero--PaddingBlockEnd);
|
|
16977
|
+
padding-inline-start: var(--pf-v6-c-hero--PaddingInlineStart);
|
|
16978
|
+
padding-inline-end: var(--pf-v6-c-hero--PaddingInlineEnd);
|
|
16979
|
+
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%);
|
|
16980
|
+
background-repeat: var(--pf-v6-c-hero--BackgroundRepeat);
|
|
16981
|
+
background-position: var(--pf-v6-c-hero--BackgroundPosition);
|
|
16982
|
+
background-size: var(--pf-v6-c-hero--BackgroundSize);
|
|
16983
|
+
border-color: var(--pf-v6-c-hero--BorderColor);
|
|
16984
|
+
border-style: var(--pf-v6-c-hero--BorderStyle);
|
|
16985
|
+
border-block-start-width: var(--pf-v6-c-hero--BorderBlockStartWidth);
|
|
16986
|
+
border-block-end-width: var(--pf-v6-c-hero--BorderBlockEndWidth);
|
|
16987
|
+
border-inline-start-width: var(--pf-v6-c-hero--BorderInlineStartWidth);
|
|
16988
|
+
border-inline-end-width: var(--pf-v6-c-hero--BorderInlineEndWidth);
|
|
16989
|
+
border-start-start-radius: var(--pf-v6-c-hero--BorderStartStartRadius);
|
|
16990
|
+
border-start-end-radius: var(--pf-v6-c-hero--BorderStartEndRadius);
|
|
16991
|
+
border-end-start-radius: var(--pf-v6-c-hero--BorderEndStartRadius);
|
|
16992
|
+
border-end-end-radius: var(--pf-v6-c-hero--BorderEndEndRadius);
|
|
16993
|
+
}
|
|
16994
|
+
:root:where(.pf-v6-theme-dark) .pf-v6-c-hero {
|
|
16995
|
+
--pf-v6-c-hero--BackgroundImage: var(--pf-v6-c-hero--BackgroundImage--dark);
|
|
16996
|
+
--pf-v6-c-hero--gradient--stop-1: var(--pf-v6-c-hero--gradient--stop-1--dark);
|
|
16997
|
+
--pf-v6-c-hero--gradient--stop-2: var(--pf-v6-c-hero--gradient--stop-2--dark);
|
|
16998
|
+
--pf-v6-c-hero--gradient--stop-3: var(--pf-v6-c-hero--gradient--stop-3--dark);
|
|
16999
|
+
}
|
|
17000
|
+
:root:where(.pf-v6-theme-glass) .pf-v6-c-hero {
|
|
17001
|
+
--pf-v6-c-hero--BorderColor: var(--pf-v6-c-hero--m-glass--BorderColor);
|
|
17002
|
+
box-shadow: var(--pf-v6-c-hero--m-glass--BoxShadow);
|
|
17003
|
+
}
|
|
17004
|
+
.pf-v6-c-hero:not(.pf-m-no-glass) {
|
|
17005
|
+
background-color: var(--pf-v6-c-hero--BackgroundColor);
|
|
17006
|
+
backdrop-filter: var(--pf-v6-c-hero--BackdropFilter);
|
|
17007
|
+
}
|
|
17008
|
+
|
|
17009
|
+
.pf-v6-c-hero__body {
|
|
17010
|
+
width: min(var(--pf-v6-c-hero__body--Width), var(--pf-v6-c-hero__body--MaxWidth));
|
|
17011
|
+
}
|
|
17012
|
+
|
|
17013
|
+
.pf-v6-c-hint {
|
|
17014
|
+
--pf-v6-c-hint--GridRowGap: var(--pf-t--global--spacer--sm);
|
|
17015
|
+
--pf-v6-c-hint--PaddingBlockStart: var(--pf-t--global--spacer--lg);
|
|
17016
|
+
--pf-v6-c-hint--PaddingInlineEnd: var(--pf-t--global--spacer--lg);
|
|
17017
|
+
--pf-v6-c-hint--PaddingBlockEnd: var(--pf-t--global--spacer--lg);
|
|
17018
|
+
--pf-v6-c-hint--PaddingInlineStart: var(--pf-t--global--spacer--lg);
|
|
17019
|
+
--pf-v6-c-hint--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
17020
|
+
--pf-v6-c-hint--BorderColor: var(--pf-t--global--border--color--status--info--default);
|
|
17021
|
+
--pf-v6-c-hint--BorderWidth: var(--pf-t--global--border--width--box--status--default);
|
|
17022
|
+
--pf-v6-c-hint--BorderRadius: var(--pf-t--global--border--radius--medium);
|
|
17023
|
+
--pf-v6-c-hint--Color: var(--pf-t--global--text--color--regular);
|
|
17024
|
+
--pf-v6-c-hint__title--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
17025
|
+
--pf-v6-c-hint__body--FontSize: var(--pf-t--global--font--size--body--default);
|
|
17026
|
+
--pf-v6-c-hint__footer--MarginBlockStart: var(--pf-t--global--spacer--sm);
|
|
17027
|
+
--pf-v6-c-hint__footer--child--MarginInlineEnd: var(--pf-t--global--spacer--md);
|
|
17028
|
+
--pf-v6-c-hint__actions--MarginInlineStart: var(--pf-t--global--spacer--2xl);
|
|
17029
|
+
--pf-v6-c-hint__actions--c-menu-toggle--MarginBlockStart: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
17030
|
+
--pf-v6-c-hint__actions--c-menu-toggle--MarginBlockEnd: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
17031
|
+
}
|
|
17032
|
+
|
|
17033
|
+
.pf-v6-c-hint {
|
|
17034
|
+
display: grid;
|
|
17035
|
+
grid-template-columns: 1fr auto;
|
|
17036
|
+
grid-row-gap: var(--pf-v6-c-hint--GridRowGap);
|
|
17037
|
+
padding-block-start: var(--pf-v6-c-hint--PaddingBlockStart);
|
|
17038
|
+
padding-block-end: var(--pf-v6-c-hint--PaddingBlockEnd);
|
|
17039
|
+
padding-inline-start: var(--pf-v6-c-hint--PaddingInlineStart);
|
|
17040
|
+
padding-inline-end: var(--pf-v6-c-hint--PaddingInlineEnd);
|
|
17041
|
+
color: var(--pf-v6-c-hint--Color);
|
|
17042
|
+
background-color: var(--pf-v6-c-hint--BackgroundColor);
|
|
17043
|
+
border: var(--pf-v6-c-hint--BorderWidth) solid var(--pf-v6-c-hint--BorderColor);
|
|
17044
|
+
border-radius: var(--pf-v6-c-hint--BorderRadius);
|
|
17045
|
+
}
|
|
17046
|
+
.pf-v6-c-hint .pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
17047
|
+
text-align: start;
|
|
17048
|
+
white-space: normal;
|
|
17049
|
+
}
|
|
17050
|
+
|
|
17051
|
+
.pf-v6-c-hint__actions {
|
|
17052
|
+
display: inline-grid;
|
|
17053
|
+
grid-row: 1;
|
|
17054
|
+
grid-column: 2;
|
|
17055
|
+
grid-auto-flow: column;
|
|
17056
|
+
align-self: start;
|
|
17057
|
+
margin-block-start: var(--pf-v6-c-hint__actions--c-menu-toggle--MarginBlockStart);
|
|
17058
|
+
margin-block-end: var(--pf-v6-c-hint__actions--c-menu-toggle--MarginBlockEnd);
|
|
17059
|
+
margin-inline-start: var(--pf-v6-c-hint__actions--MarginInlineStart);
|
|
17060
|
+
text-align: end;
|
|
17061
|
+
}
|
|
17062
|
+
.pf-v6-c-hint__actions.pf-m-no-offset {
|
|
17063
|
+
--pf-v6-c-hint__actions--c-menu-toggle--MarginBlockStart: 0;
|
|
17064
|
+
--pf-v6-c-hint__actions--c-menu-toggle--MarginBlockEnd: 0;
|
|
17065
|
+
}
|
|
17066
|
+
.pf-v6-c-hint__actions + .pf-v6-c-hint__body {
|
|
17067
|
+
grid-column: 1;
|
|
17068
|
+
}
|
|
17069
|
+
|
|
17070
|
+
.pf-v6-c-hint__title {
|
|
17071
|
+
align-self: center;
|
|
17072
|
+
font-weight: var(--pf-v6-c-hint__title--FontWeight);
|
|
17073
|
+
}
|
|
17074
|
+
|
|
17075
|
+
.pf-v6-c-hint__body {
|
|
17076
|
+
grid-column: 1/-1;
|
|
17077
|
+
font-size: var(--pf-v6-c-hint__body--FontSize);
|
|
17078
|
+
}
|
|
17079
|
+
|
|
17080
|
+
.pf-v6-c-hint__footer {
|
|
17081
|
+
grid-column: 1/-1;
|
|
17082
|
+
margin-block-start: var(--pf-v6-c-hint__footer--MarginBlockStart);
|
|
17083
|
+
}
|
|
17084
|
+
.pf-v6-c-hint__footer > :not(:last-child) {
|
|
17085
|
+
margin-inline-end: var(--pf-v6-c-hint__footer--child--MarginInlineEnd);
|
|
17086
|
+
}
|
|
17087
|
+
|
|
17047
17088
|
.pf-v6-c-icon {
|
|
17048
17089
|
--pf-v6-c-icon--Width: var(--pf-t--global--icon--size--font--body--default);
|
|
17049
17090
|
--pf-v6-c-icon--Height: var(--pf-t--global--icon--size--font--body--default);
|
package/patternfly.css
CHANGED
|
@@ -12430,17 +12430,6 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
12430
12430
|
--pf-v6-c-compass__message-bar--Width: 450px;
|
|
12431
12431
|
--pf-v6-c-compass__message-bar--MinWidth: 300px;
|
|
12432
12432
|
--pf-v6-c-compass__message-bar--MaxWidth: 600px;
|
|
12433
|
-
--pf-v6-c-compass__hero--gradient--angle: 109deg;
|
|
12434
|
-
--pf-v6-c-compass__hero--gradient--stop-1--light: transparent;
|
|
12435
|
-
--pf-v6-c-compass__hero--gradient--stop-2--light: transparent;
|
|
12436
|
-
--pf-v6-c-compass__hero--gradient--stop-3--light: transparent;
|
|
12437
|
-
--pf-v6-c-compass__hero--gradient--stop-1--dark: transparent;
|
|
12438
|
-
--pf-v6-c-compass__hero--gradient--stop-2--dark: transparent;
|
|
12439
|
-
--pf-v6-c-compass__hero--gradient--stop-3--dark: transparent;
|
|
12440
|
-
--pf-v6-c-compass__hero--BackgroundImage--light: none;
|
|
12441
|
-
--pf-v6-c-compass__hero--BackgroundImage--dark: none;
|
|
12442
|
-
--pf-v6-c-compass__hero-body--Width: 800px;
|
|
12443
|
-
--pf-v6-c-compass__hero-body--MaxWidth: 80%;
|
|
12444
12433
|
}
|
|
12445
12434
|
|
|
12446
12435
|
.pf-v6-c-compass {
|
|
@@ -12554,29 +12543,6 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
12554
12543
|
overflow: auto;
|
|
12555
12544
|
}
|
|
12556
12545
|
|
|
12557
|
-
.pf-v6-c-compass__hero {
|
|
12558
|
-
display: flex;
|
|
12559
|
-
padding-block-start: 32px;
|
|
12560
|
-
padding-block-end: 32px;
|
|
12561
|
-
padding-inline-start: 72px;
|
|
12562
|
-
padding-inline-end: 0;
|
|
12563
|
-
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%);
|
|
12564
|
-
background-repeat: no-repeat;
|
|
12565
|
-
background-position: right center;
|
|
12566
|
-
background-size: contain;
|
|
12567
|
-
border-radius: 24px 72px;
|
|
12568
|
-
}
|
|
12569
|
-
:root:where(.pf-v6-theme-dark) .pf-v6-c-compass__hero {
|
|
12570
|
-
--pf-v6-c-compass__hero--BackgroundImage: var(--pf-v6-c-compass__hero--BackgroundImage--dark);
|
|
12571
|
-
--pf-v6-c-compass__hero--gradient--stop-1: var(--pf-v6-c-compass__hero--gradient--stop-1--dark);
|
|
12572
|
-
--pf-v6-c-compass__hero--gradient--stop-2: var(--pf-v6-c-compass__hero--gradient--stop-2--dark);
|
|
12573
|
-
--pf-v6-c-compass__hero--gradient--stop-3: var(--pf-v6-c-compass__hero--gradient--stop-3--dark);
|
|
12574
|
-
}
|
|
12575
|
-
|
|
12576
|
-
.pf-v6-c-compass__hero-body {
|
|
12577
|
-
width: min(var(--pf-v6-c-compass__hero-body--Width), var(--pf-v6-c-compass__hero-body--MaxWidth));
|
|
12578
|
-
}
|
|
12579
|
-
|
|
12580
12546
|
/* stylelint-disable */
|
|
12581
12547
|
@media (max-width: 1200px) {
|
|
12582
12548
|
.pf-v6-c-compass * {
|
|
@@ -17031,81 +16997,6 @@ ul) {
|
|
|
17031
16997
|
pointer-events: none;
|
|
17032
16998
|
}
|
|
17033
16999
|
|
|
17034
|
-
.pf-v6-c-hint {
|
|
17035
|
-
--pf-v6-c-hint--GridRowGap: var(--pf-t--global--spacer--sm);
|
|
17036
|
-
--pf-v6-c-hint--PaddingBlockStart: var(--pf-t--global--spacer--lg);
|
|
17037
|
-
--pf-v6-c-hint--PaddingInlineEnd: var(--pf-t--global--spacer--lg);
|
|
17038
|
-
--pf-v6-c-hint--PaddingBlockEnd: var(--pf-t--global--spacer--lg);
|
|
17039
|
-
--pf-v6-c-hint--PaddingInlineStart: var(--pf-t--global--spacer--lg);
|
|
17040
|
-
--pf-v6-c-hint--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
17041
|
-
--pf-v6-c-hint--BorderColor: var(--pf-t--global--border--color--status--info--default);
|
|
17042
|
-
--pf-v6-c-hint--BorderWidth: var(--pf-t--global--border--width--box--status--default);
|
|
17043
|
-
--pf-v6-c-hint--BorderRadius: var(--pf-t--global--border--radius--medium);
|
|
17044
|
-
--pf-v6-c-hint--Color: var(--pf-t--global--text--color--regular);
|
|
17045
|
-
--pf-v6-c-hint__title--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
17046
|
-
--pf-v6-c-hint__body--FontSize: var(--pf-t--global--font--size--body--default);
|
|
17047
|
-
--pf-v6-c-hint__footer--MarginBlockStart: var(--pf-t--global--spacer--sm);
|
|
17048
|
-
--pf-v6-c-hint__footer--child--MarginInlineEnd: var(--pf-t--global--spacer--md);
|
|
17049
|
-
--pf-v6-c-hint__actions--MarginInlineStart: var(--pf-t--global--spacer--2xl);
|
|
17050
|
-
--pf-v6-c-hint__actions--c-menu-toggle--MarginBlockStart: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
17051
|
-
--pf-v6-c-hint__actions--c-menu-toggle--MarginBlockEnd: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
17052
|
-
}
|
|
17053
|
-
|
|
17054
|
-
.pf-v6-c-hint {
|
|
17055
|
-
display: grid;
|
|
17056
|
-
grid-template-columns: 1fr auto;
|
|
17057
|
-
grid-row-gap: var(--pf-v6-c-hint--GridRowGap);
|
|
17058
|
-
padding-block-start: var(--pf-v6-c-hint--PaddingBlockStart);
|
|
17059
|
-
padding-block-end: var(--pf-v6-c-hint--PaddingBlockEnd);
|
|
17060
|
-
padding-inline-start: var(--pf-v6-c-hint--PaddingInlineStart);
|
|
17061
|
-
padding-inline-end: var(--pf-v6-c-hint--PaddingInlineEnd);
|
|
17062
|
-
color: var(--pf-v6-c-hint--Color);
|
|
17063
|
-
background-color: var(--pf-v6-c-hint--BackgroundColor);
|
|
17064
|
-
border: var(--pf-v6-c-hint--BorderWidth) solid var(--pf-v6-c-hint--BorderColor);
|
|
17065
|
-
border-radius: var(--pf-v6-c-hint--BorderRadius);
|
|
17066
|
-
}
|
|
17067
|
-
.pf-v6-c-hint .pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
17068
|
-
text-align: start;
|
|
17069
|
-
white-space: normal;
|
|
17070
|
-
}
|
|
17071
|
-
|
|
17072
|
-
.pf-v6-c-hint__actions {
|
|
17073
|
-
display: inline-grid;
|
|
17074
|
-
grid-row: 1;
|
|
17075
|
-
grid-column: 2;
|
|
17076
|
-
grid-auto-flow: column;
|
|
17077
|
-
align-self: start;
|
|
17078
|
-
margin-block-start: var(--pf-v6-c-hint__actions--c-menu-toggle--MarginBlockStart);
|
|
17079
|
-
margin-block-end: var(--pf-v6-c-hint__actions--c-menu-toggle--MarginBlockEnd);
|
|
17080
|
-
margin-inline-start: var(--pf-v6-c-hint__actions--MarginInlineStart);
|
|
17081
|
-
text-align: end;
|
|
17082
|
-
}
|
|
17083
|
-
.pf-v6-c-hint__actions.pf-m-no-offset {
|
|
17084
|
-
--pf-v6-c-hint__actions--c-menu-toggle--MarginBlockStart: 0;
|
|
17085
|
-
--pf-v6-c-hint__actions--c-menu-toggle--MarginBlockEnd: 0;
|
|
17086
|
-
}
|
|
17087
|
-
.pf-v6-c-hint__actions + .pf-v6-c-hint__body {
|
|
17088
|
-
grid-column: 1;
|
|
17089
|
-
}
|
|
17090
|
-
|
|
17091
|
-
.pf-v6-c-hint__title {
|
|
17092
|
-
align-self: center;
|
|
17093
|
-
font-weight: var(--pf-v6-c-hint__title--FontWeight);
|
|
17094
|
-
}
|
|
17095
|
-
|
|
17096
|
-
.pf-v6-c-hint__body {
|
|
17097
|
-
grid-column: 1/-1;
|
|
17098
|
-
font-size: var(--pf-v6-c-hint__body--FontSize);
|
|
17099
|
-
}
|
|
17100
|
-
|
|
17101
|
-
.pf-v6-c-hint__footer {
|
|
17102
|
-
grid-column: 1/-1;
|
|
17103
|
-
margin-block-start: var(--pf-v6-c-hint__footer--MarginBlockStart);
|
|
17104
|
-
}
|
|
17105
|
-
.pf-v6-c-hint__footer > :not(:last-child) {
|
|
17106
|
-
margin-inline-end: var(--pf-v6-c-hint__footer--child--MarginInlineEnd);
|
|
17107
|
-
}
|
|
17108
|
-
|
|
17109
17000
|
.pf-v6-c-helper-text {
|
|
17110
17001
|
--pf-v6-c-helper-text--Gap: var(--pf-t--global--spacer--xs);
|
|
17111
17002
|
--pf-v6-c-helper-text--FontSize: var(--pf-t--global--font--size--body--sm);
|
|
@@ -17191,6 +17082,156 @@ ul) {
|
|
|
17191
17082
|
color: var(--pf-v6-c-helper-text__item-text--Color);
|
|
17192
17083
|
}
|
|
17193
17084
|
|
|
17085
|
+
.pf-v6-c-hero {
|
|
17086
|
+
--pf-v6-c-hero--PaddingBlockStart: var(--pf-t--global--spacer--xl);
|
|
17087
|
+
--pf-v6-c-hero--PaddingBlockEnd: var(--pf-t--global--spacer--xl);
|
|
17088
|
+
--pf-v6-c-hero--PaddingInlineStart: var(--pf-t--global--spacer--3xl);
|
|
17089
|
+
--pf-v6-c-hero--PaddingInlineEnd: var(--pf-t--global--spacer--xl);
|
|
17090
|
+
--pf-v6-c-hero--gradient--angle: 109deg;
|
|
17091
|
+
--pf-v6-c-hero--gradient--stop-1--light: transparent;
|
|
17092
|
+
--pf-v6-c-hero--gradient--stop-2--light: transparent;
|
|
17093
|
+
--pf-v6-c-hero--gradient--stop-3--light: transparent;
|
|
17094
|
+
--pf-v6-c-hero--gradient--stop-1--dark: transparent;
|
|
17095
|
+
--pf-v6-c-hero--gradient--stop-2--dark: transparent;
|
|
17096
|
+
--pf-v6-c-hero--gradient--stop-3--dark: transparent;
|
|
17097
|
+
--pf-v6-c-hero--BackgroundColor: var(--pf-t--global--background--color--glass--default);
|
|
17098
|
+
--pf-v6-c-hero--BackdropFilter: var(--pf-t--global--background--color--glass--filter);
|
|
17099
|
+
--pf-v6-c-hero--BackgroundImage--light: none;
|
|
17100
|
+
--pf-v6-c-hero--BackgroundImage--dark: none;
|
|
17101
|
+
--pf-v6-c-hero--BackgroundRepeat: no-repeat;
|
|
17102
|
+
--pf-v6-c-hero--BackgroundPosition: right center;
|
|
17103
|
+
--pf-v6-c-hero--BackgroundSize: contain;
|
|
17104
|
+
--pf-v6-c-hero--BorderStyle: solid;
|
|
17105
|
+
--pf-v6-c-hero--BorderBlockStartWidth: var(--pf-t--global--border--width--regular);
|
|
17106
|
+
--pf-v6-c-hero--BorderBlockEndWidth: var(--pf-t--global--border--width--regular);
|
|
17107
|
+
--pf-v6-c-hero--BorderInlineStartWidth: var(--pf-t--global--border--width--regular);
|
|
17108
|
+
--pf-v6-c-hero--BorderInlineEndWidth: var(--pf-t--global--border--width--regular);
|
|
17109
|
+
--pf-v6-c-hero--BorderColor: var(--pf-t--global--border--color--default);
|
|
17110
|
+
--pf-v6-c-hero--m-glass--BorderColor: var(--pf-t--global--border--color--alt);
|
|
17111
|
+
--pf-v6-c-hero--m-glass--BoxShadow: var(--pf-t--global--box-shadow--md);
|
|
17112
|
+
--pf-v6-c-hero--BorderStartStartRadius: 24px;
|
|
17113
|
+
--pf-v6-c-hero--BorderStartEndRadius: 72px;
|
|
17114
|
+
--pf-v6-c-hero--BorderEndEndRadius: 24px;
|
|
17115
|
+
--pf-v6-c-hero--BorderEndStartRadius: 72px;
|
|
17116
|
+
--pf-v6-c-hero__body--Width: 800px;
|
|
17117
|
+
--pf-v6-c-hero__body--MaxWidth: 80%;
|
|
17118
|
+
}
|
|
17119
|
+
|
|
17120
|
+
.pf-v6-c-hero {
|
|
17121
|
+
display: flex;
|
|
17122
|
+
padding-block-start: var(--pf-v6-c-hero--PaddingBlockStart);
|
|
17123
|
+
padding-block-end: var(--pf-v6-c-hero--PaddingBlockEnd);
|
|
17124
|
+
padding-inline-start: var(--pf-v6-c-hero--PaddingInlineStart);
|
|
17125
|
+
padding-inline-end: var(--pf-v6-c-hero--PaddingInlineEnd);
|
|
17126
|
+
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%);
|
|
17127
|
+
background-repeat: var(--pf-v6-c-hero--BackgroundRepeat);
|
|
17128
|
+
background-position: var(--pf-v6-c-hero--BackgroundPosition);
|
|
17129
|
+
background-size: var(--pf-v6-c-hero--BackgroundSize);
|
|
17130
|
+
border-color: var(--pf-v6-c-hero--BorderColor);
|
|
17131
|
+
border-style: var(--pf-v6-c-hero--BorderStyle);
|
|
17132
|
+
border-block-start-width: var(--pf-v6-c-hero--BorderBlockStartWidth);
|
|
17133
|
+
border-block-end-width: var(--pf-v6-c-hero--BorderBlockEndWidth);
|
|
17134
|
+
border-inline-start-width: var(--pf-v6-c-hero--BorderInlineStartWidth);
|
|
17135
|
+
border-inline-end-width: var(--pf-v6-c-hero--BorderInlineEndWidth);
|
|
17136
|
+
border-start-start-radius: var(--pf-v6-c-hero--BorderStartStartRadius);
|
|
17137
|
+
border-start-end-radius: var(--pf-v6-c-hero--BorderStartEndRadius);
|
|
17138
|
+
border-end-start-radius: var(--pf-v6-c-hero--BorderEndStartRadius);
|
|
17139
|
+
border-end-end-radius: var(--pf-v6-c-hero--BorderEndEndRadius);
|
|
17140
|
+
}
|
|
17141
|
+
:root:where(.pf-v6-theme-dark) .pf-v6-c-hero {
|
|
17142
|
+
--pf-v6-c-hero--BackgroundImage: var(--pf-v6-c-hero--BackgroundImage--dark);
|
|
17143
|
+
--pf-v6-c-hero--gradient--stop-1: var(--pf-v6-c-hero--gradient--stop-1--dark);
|
|
17144
|
+
--pf-v6-c-hero--gradient--stop-2: var(--pf-v6-c-hero--gradient--stop-2--dark);
|
|
17145
|
+
--pf-v6-c-hero--gradient--stop-3: var(--pf-v6-c-hero--gradient--stop-3--dark);
|
|
17146
|
+
}
|
|
17147
|
+
:root:where(.pf-v6-theme-glass) .pf-v6-c-hero {
|
|
17148
|
+
--pf-v6-c-hero--BorderColor: var(--pf-v6-c-hero--m-glass--BorderColor);
|
|
17149
|
+
box-shadow: var(--pf-v6-c-hero--m-glass--BoxShadow);
|
|
17150
|
+
}
|
|
17151
|
+
.pf-v6-c-hero:not(.pf-m-no-glass) {
|
|
17152
|
+
background-color: var(--pf-v6-c-hero--BackgroundColor);
|
|
17153
|
+
backdrop-filter: var(--pf-v6-c-hero--BackdropFilter);
|
|
17154
|
+
}
|
|
17155
|
+
|
|
17156
|
+
.pf-v6-c-hero__body {
|
|
17157
|
+
width: min(var(--pf-v6-c-hero__body--Width), var(--pf-v6-c-hero__body--MaxWidth));
|
|
17158
|
+
}
|
|
17159
|
+
|
|
17160
|
+
.pf-v6-c-hint {
|
|
17161
|
+
--pf-v6-c-hint--GridRowGap: var(--pf-t--global--spacer--sm);
|
|
17162
|
+
--pf-v6-c-hint--PaddingBlockStart: var(--pf-t--global--spacer--lg);
|
|
17163
|
+
--pf-v6-c-hint--PaddingInlineEnd: var(--pf-t--global--spacer--lg);
|
|
17164
|
+
--pf-v6-c-hint--PaddingBlockEnd: var(--pf-t--global--spacer--lg);
|
|
17165
|
+
--pf-v6-c-hint--PaddingInlineStart: var(--pf-t--global--spacer--lg);
|
|
17166
|
+
--pf-v6-c-hint--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
17167
|
+
--pf-v6-c-hint--BorderColor: var(--pf-t--global--border--color--status--info--default);
|
|
17168
|
+
--pf-v6-c-hint--BorderWidth: var(--pf-t--global--border--width--box--status--default);
|
|
17169
|
+
--pf-v6-c-hint--BorderRadius: var(--pf-t--global--border--radius--medium);
|
|
17170
|
+
--pf-v6-c-hint--Color: var(--pf-t--global--text--color--regular);
|
|
17171
|
+
--pf-v6-c-hint__title--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
17172
|
+
--pf-v6-c-hint__body--FontSize: var(--pf-t--global--font--size--body--default);
|
|
17173
|
+
--pf-v6-c-hint__footer--MarginBlockStart: var(--pf-t--global--spacer--sm);
|
|
17174
|
+
--pf-v6-c-hint__footer--child--MarginInlineEnd: var(--pf-t--global--spacer--md);
|
|
17175
|
+
--pf-v6-c-hint__actions--MarginInlineStart: var(--pf-t--global--spacer--2xl);
|
|
17176
|
+
--pf-v6-c-hint__actions--c-menu-toggle--MarginBlockStart: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
17177
|
+
--pf-v6-c-hint__actions--c-menu-toggle--MarginBlockEnd: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
17178
|
+
}
|
|
17179
|
+
|
|
17180
|
+
.pf-v6-c-hint {
|
|
17181
|
+
display: grid;
|
|
17182
|
+
grid-template-columns: 1fr auto;
|
|
17183
|
+
grid-row-gap: var(--pf-v6-c-hint--GridRowGap);
|
|
17184
|
+
padding-block-start: var(--pf-v6-c-hint--PaddingBlockStart);
|
|
17185
|
+
padding-block-end: var(--pf-v6-c-hint--PaddingBlockEnd);
|
|
17186
|
+
padding-inline-start: var(--pf-v6-c-hint--PaddingInlineStart);
|
|
17187
|
+
padding-inline-end: var(--pf-v6-c-hint--PaddingInlineEnd);
|
|
17188
|
+
color: var(--pf-v6-c-hint--Color);
|
|
17189
|
+
background-color: var(--pf-v6-c-hint--BackgroundColor);
|
|
17190
|
+
border: var(--pf-v6-c-hint--BorderWidth) solid var(--pf-v6-c-hint--BorderColor);
|
|
17191
|
+
border-radius: var(--pf-v6-c-hint--BorderRadius);
|
|
17192
|
+
}
|
|
17193
|
+
.pf-v6-c-hint .pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
17194
|
+
text-align: start;
|
|
17195
|
+
white-space: normal;
|
|
17196
|
+
}
|
|
17197
|
+
|
|
17198
|
+
.pf-v6-c-hint__actions {
|
|
17199
|
+
display: inline-grid;
|
|
17200
|
+
grid-row: 1;
|
|
17201
|
+
grid-column: 2;
|
|
17202
|
+
grid-auto-flow: column;
|
|
17203
|
+
align-self: start;
|
|
17204
|
+
margin-block-start: var(--pf-v6-c-hint__actions--c-menu-toggle--MarginBlockStart);
|
|
17205
|
+
margin-block-end: var(--pf-v6-c-hint__actions--c-menu-toggle--MarginBlockEnd);
|
|
17206
|
+
margin-inline-start: var(--pf-v6-c-hint__actions--MarginInlineStart);
|
|
17207
|
+
text-align: end;
|
|
17208
|
+
}
|
|
17209
|
+
.pf-v6-c-hint__actions.pf-m-no-offset {
|
|
17210
|
+
--pf-v6-c-hint__actions--c-menu-toggle--MarginBlockStart: 0;
|
|
17211
|
+
--pf-v6-c-hint__actions--c-menu-toggle--MarginBlockEnd: 0;
|
|
17212
|
+
}
|
|
17213
|
+
.pf-v6-c-hint__actions + .pf-v6-c-hint__body {
|
|
17214
|
+
grid-column: 1;
|
|
17215
|
+
}
|
|
17216
|
+
|
|
17217
|
+
.pf-v6-c-hint__title {
|
|
17218
|
+
align-self: center;
|
|
17219
|
+
font-weight: var(--pf-v6-c-hint__title--FontWeight);
|
|
17220
|
+
}
|
|
17221
|
+
|
|
17222
|
+
.pf-v6-c-hint__body {
|
|
17223
|
+
grid-column: 1/-1;
|
|
17224
|
+
font-size: var(--pf-v6-c-hint__body--FontSize);
|
|
17225
|
+
}
|
|
17226
|
+
|
|
17227
|
+
.pf-v6-c-hint__footer {
|
|
17228
|
+
grid-column: 1/-1;
|
|
17229
|
+
margin-block-start: var(--pf-v6-c-hint__footer--MarginBlockStart);
|
|
17230
|
+
}
|
|
17231
|
+
.pf-v6-c-hint__footer > :not(:last-child) {
|
|
17232
|
+
margin-inline-end: var(--pf-v6-c-hint__footer--child--MarginInlineEnd);
|
|
17233
|
+
}
|
|
17234
|
+
|
|
17194
17235
|
.pf-v6-c-icon {
|
|
17195
17236
|
--pf-v6-c-icon--Width: var(--pf-t--global--icon--size--font--body--default);
|
|
17196
17237
|
--pf-v6-c-icon--Height: var(--pf-t--global--icon--size--font--body--default);
|