@patternfly/quickstarts 6.0.0-alpha.2 → 6.0.0-alpha.3
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/dist/ConsoleInternal/components/markdown-view.d.ts +0 -1
- package/dist/ConsoleShared/src/components/markdown-extensions/accordion-extension.d.ts +0 -1
- package/dist/ConsoleShared/src/components/markdown-extensions/admonition-extension.d.ts +0 -1
- package/dist/ConsoleShared/src/components/markdown-extensions/code-extension.d.ts +0 -1
- package/dist/ConsoleShared/src/components/markdown-extensions/inline-clipboard-extension.d.ts +0 -1
- package/dist/ConsoleShared/src/components/markdown-extensions/multiline-clipboard-extension.d.ts +0 -1
- package/dist/ConsoleShared/src/components/modal/Modal.d.ts +1 -2
- package/dist/ConsoleShared/src/components/spotlight/InteractiveSpotlight.d.ts +0 -1
- package/dist/ConsoleShared/src/components/spotlight/StaticSpotlight.d.ts +0 -1
- package/dist/HelpTopicDrawer.d.ts +0 -1
- package/dist/HelpTopicPanelContent.d.ts +0 -1
- package/dist/QuickStartDrawer.d.ts +0 -1
- package/dist/QuickStartPanelContent.d.ts +2 -2
- package/dist/catalog/QuickStartCatalog.d.ts +0 -1
- package/dist/catalog/QuickStartTile.d.ts +16 -2
- package/dist/catalog/QuickStartTileDescription.d.ts +0 -1
- package/dist/catalog/QuickStartTileFooter.d.ts +1 -0
- package/dist/catalog/QuickStartTileHeader.d.ts +1 -17
- package/dist/catalog/Toolbar/QuickStartCatalogFilter.d.ts +0 -1
- package/dist/catalog/index.d.ts +1 -1
- package/dist/controller/QuickStartContent.d.ts +1 -1
- package/dist/controller/QuickStartFooter.d.ts +1 -1
- package/dist/controller/QuickStartIntroduction.d.ts +0 -1
- package/dist/controller/QuickStartTaskHeaderList.d.ts +0 -1
- package/dist/controller/QuickStartTaskReview.d.ts +0 -1
- package/dist/controller/QuickStartTasks.d.ts +0 -1
- package/dist/index.es.js +188 -291
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +189 -292
- package/dist/index.js.map +1 -1
- package/dist/patternfly-docs/quick-starts/examples/HelpTopic.jsx +4 -4
- package/dist/patternfly-docs/quick-starts/examples/example-data/example-help-topics.js +9 -18
- package/dist/patternfly-global.css +20 -66
- package/dist/patternfly-nested.css +2036 -2119
- package/dist/quickstarts-base.css +40 -420
- package/dist/quickstarts-full.es.js +715 -804
- package/dist/quickstarts-full.es.js.map +1 -1
- package/dist/quickstarts-standalone.css +41 -382
- package/dist/quickstarts-standalone.min.css +3 -3
- package/dist/quickstarts-vendor.css +6 -11
- package/dist/quickstarts.css +46 -431
- package/dist/quickstarts.min.css +1 -1
- package/dist/utils/quick-start-types.d.ts +1 -1
- package/package.json +10 -11
- package/src/ConsoleInternal/components/markdown-view.tsx +29 -9
- package/src/ConsoleShared/src/components/markdown-extensions/accordion-extension.tsx +10 -17
- package/src/ConsoleShared/src/components/markdown-extensions/admonition-extension.tsx +5 -11
- package/src/ConsoleShared/src/components/markdown-extensions/code-extension.tsx +2 -2
- package/src/ConsoleShared/src/components/markdown-extensions/inline-clipboard-extension.tsx +0 -1
- package/src/ConsoleShared/src/components/markdown-extensions/multiline-clipboard-extension.tsx +2 -6
- package/src/ConsoleShared/src/components/markdown-extensions/utils.ts +2 -1
- package/src/ConsoleShared/src/components/modal/Modal.tsx +1 -2
- package/src/ConsoleShared/src/components/popper/SimplePopper.tsx +5 -2
- package/src/ConsoleShared/src/components/spotlight/InteractiveSpotlight.tsx +0 -1
- package/src/ConsoleShared/src/components/spotlight/StaticSpotlight.tsx +0 -1
- package/src/ConsoleShared/src/components/status/icons.tsx +1 -5
- package/src/HelpTopicDrawer.tsx +1 -4
- package/src/HelpTopicPanelContent.tsx +4 -16
- package/src/QuickStartCatalogPage.tsx +34 -25
- package/src/QuickStartCloseModal.tsx +2 -2
- package/src/QuickStartController.tsx +1 -1
- package/src/QuickStartDrawer.tsx +2 -7
- package/src/QuickStartPanelContent.scss +7 -39
- package/src/QuickStartPanelContent.tsx +20 -44
- package/src/catalog/Catalog/QuickStartCatalogHeader.tsx +5 -4
- package/src/catalog/Catalog/QuickStartCatalogSection.tsx +1 -1
- package/src/catalog/Catalog/QuickStartCatalogToolbar.tsx +1 -3
- package/src/catalog/QuickStartCatalog.tsx +12 -16
- package/src/catalog/QuickStartTile.scss +11 -9
- package/src/catalog/QuickStartTile.tsx +133 -72
- package/src/catalog/QuickStartTileDescription.tsx +28 -42
- package/src/catalog/QuickStartTileFooter.tsx +13 -19
- package/src/catalog/QuickStartTileHeader.tsx +9 -86
- package/src/catalog/Toolbar/QuickStartCatalogFilter.tsx +8 -10
- package/src/catalog/Toolbar/QuickStartCatalogFilterItems.tsx +2 -5
- package/src/catalog/__tests__/QuickStartCatalog.spec.tsx +3 -3
- package/src/catalog/__tests__/QuickStartTile.spec.tsx +5 -5
- package/src/catalog/__tests__/QuickStartTileDescription.spec.tsx +1 -1
- package/src/catalog/index.ts +1 -1
- package/src/controller/QuickStartConclusion.tsx +4 -4
- package/src/controller/QuickStartContent.scss +3 -7
- package/src/controller/QuickStartContent.tsx +3 -5
- package/src/controller/QuickStartFooter.scss +1 -11
- package/src/controller/QuickStartFooter.tsx +27 -21
- package/src/controller/QuickStartIntroduction.tsx +11 -16
- package/src/controller/QuickStartTaskHeader.scss +20 -42
- package/src/controller/QuickStartTaskHeader.tsx +21 -60
- package/src/controller/QuickStartTaskHeaderList.tsx +4 -6
- package/src/controller/QuickStartTaskReview.tsx +6 -12
- package/src/controller/QuickStartTasks.tsx +6 -8
- package/src/controller/__tests__/QuickStartConclusion.spec.tsx +6 -19
- package/src/controller/__tests__/QuickStartFooter.spec.tsx +9 -54
- package/src/controller/__tests__/QuickStartTaskHeader.spec.tsx +1 -1
- package/src/controller/__tests__/QuickStartTaskReview.spec.tsx +3 -6
- package/src/controller/__tests__/QuickStartTasks.spec.tsx +3 -6
- package/src/styles/_base.scss +3 -45
- package/src/styles/style.scss +1 -6
- package/src/utils/help-topic-context.tsx +2 -3
- package/src/utils/quick-start-context.tsx +10 -13
- package/src/utils/quick-start-types.ts +1 -1
- package/src/utils/quick-start-utils.ts +4 -2
- package/src/ConsoleInternal/components/_icon-and-text.scss +0 -14
- package/src/ConsoleInternal/components/_markdown-view.scss +0 -19
- package/src/ConsoleInternal/components/catalog/_catalog.scss +0 -392
- package/src/ConsoleInternal/components/utils/_status-box.scss +0 -58
- package/src/ConsoleShared/src/components/layout/PageLayout.scss +0 -29
- package/src/ConsoleShared/src/components/markdown-extensions/showdown-extension.scss +0 -52
- package/src/ConsoleShared/src/components/modal/Modal.scss +0 -3
- package/src/ConsoleShared/src/components/spotlight/spotlight.scss +0 -63
- package/src/QuickStartDrawer.scss +0 -11
- package/src/catalog/QuickStartCatalog.scss +0 -8
- package/src/catalog/QuickStartTileDescription.scss +0 -29
- package/src/catalog/QuickStartTileHeader.scss +0 -16
- package/src/catalog/Toolbar/QuickStartCatalogFilter.scss +0 -25
- package/src/controller/QuickStartIntroduction.scss +0 -35
- package/src/controller/QuickStartTaskHeaderList.scss +0 -17
- package/src/controller/QuickStartTaskReview.scss +0 -30
- package/src/controller/QuickStartTasks.scss +0 -90
- package/src/styles/_dark-custom-override.scss +0 -47
|
@@ -13,10 +13,10 @@ const TinyMockConsole = () => {
|
|
|
13
13
|
return (
|
|
14
14
|
<Stack hasGutter>
|
|
15
15
|
{helpTopics.map((topic) => (
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
<StackItem key={topic.name}>
|
|
17
|
+
<a onClick={() => handleSetTopic(topic.name)}>Open Help {topic.title}</a>
|
|
18
|
+
</StackItem>
|
|
19
|
+
))}
|
|
20
20
|
</Stack>
|
|
21
21
|
);
|
|
22
22
|
};
|
|
@@ -8,8 +8,7 @@ export const exampleHelpTopics = [
|
|
|
8
8
|
links: [
|
|
9
9
|
{
|
|
10
10
|
text: 'Creating quick starts (external)',
|
|
11
|
-
href:
|
|
12
|
-
'https://docs.openshift.com/container-platform/4.9/web_console/creating-quick-start-tutorials.html',
|
|
11
|
+
href: 'https://docs.openshift.com/container-platform/4.9/web_console/creating-quick-start-tutorials.html',
|
|
13
12
|
isExternal: true,
|
|
14
13
|
},
|
|
15
14
|
{
|
|
@@ -35,8 +34,7 @@ export const exampleHelpTopics = [
|
|
|
35
34
|
links: [
|
|
36
35
|
{
|
|
37
36
|
text: 'Creating quick starts',
|
|
38
|
-
href:
|
|
39
|
-
'https://docs.openshift.com/container-platform/4.9/web_console/creating-quick-start-tutorials.html',
|
|
37
|
+
href: 'https://docs.openshift.com/container-platform/4.9/web_console/creating-quick-start-tutorials.html',
|
|
40
38
|
},
|
|
41
39
|
{
|
|
42
40
|
text: 'Redhat Console',
|
|
@@ -53,8 +51,7 @@ export const exampleHelpTopics = [
|
|
|
53
51
|
links: [
|
|
54
52
|
{
|
|
55
53
|
text: 'Creating quick starts',
|
|
56
|
-
href:
|
|
57
|
-
'https://docs.openshift.com/container-platform/4.9/web_console/creating-quick-start-tutorials.html',
|
|
54
|
+
href: 'https://docs.openshift.com/container-platform/4.9/web_console/creating-quick-start-tutorials.html',
|
|
58
55
|
},
|
|
59
56
|
{
|
|
60
57
|
text: 'Redhat Console',
|
|
@@ -71,8 +68,7 @@ export const exampleHelpTopics = [
|
|
|
71
68
|
links: [
|
|
72
69
|
{
|
|
73
70
|
text: 'Creating quick starts',
|
|
74
|
-
href:
|
|
75
|
-
'https://docs.openshift.com/container-platform/4.9/web_console/creating-quick-start-tutorials.html',
|
|
71
|
+
href: 'https://docs.openshift.com/container-platform/4.9/web_console/creating-quick-start-tutorials.html',
|
|
76
72
|
},
|
|
77
73
|
{
|
|
78
74
|
text: 'Redhat Console',
|
|
@@ -89,8 +85,7 @@ export const exampleHelpTopics = [
|
|
|
89
85
|
links: [
|
|
90
86
|
{
|
|
91
87
|
text: 'Creating quick starts',
|
|
92
|
-
href:
|
|
93
|
-
'https://docs.openshift.com/container-platform/4.9/web_console/creating-quick-start-tutorials.html',
|
|
88
|
+
href: 'https://docs.openshift.com/container-platform/4.9/web_console/creating-quick-start-tutorials.html',
|
|
94
89
|
},
|
|
95
90
|
{
|
|
96
91
|
text: 'Redhat Console',
|
|
@@ -107,8 +102,7 @@ export const exampleHelpTopics = [
|
|
|
107
102
|
links: [
|
|
108
103
|
{
|
|
109
104
|
text: 'Creating quick starts',
|
|
110
|
-
href:
|
|
111
|
-
'https://docs.openshift.com/container-platform/4.9/web_console/creating-quick-start-tutorials.html',
|
|
105
|
+
href: 'https://docs.openshift.com/container-platform/4.9/web_console/creating-quick-start-tutorials.html',
|
|
112
106
|
},
|
|
113
107
|
{
|
|
114
108
|
text: 'Redhat Console',
|
|
@@ -125,8 +119,7 @@ export const exampleHelpTopics = [
|
|
|
125
119
|
links: [
|
|
126
120
|
{
|
|
127
121
|
text: 'Creating quick starts',
|
|
128
|
-
href:
|
|
129
|
-
'https://docs.openshift.com/container-platform/4.9/web_console/creating-quick-start-tutorials.html',
|
|
122
|
+
href: 'https://docs.openshift.com/container-platform/4.9/web_console/creating-quick-start-tutorials.html',
|
|
130
123
|
},
|
|
131
124
|
{
|
|
132
125
|
text: 'Redhat Console',
|
|
@@ -143,8 +136,7 @@ export const exampleHelpTopics = [
|
|
|
143
136
|
links: [
|
|
144
137
|
{
|
|
145
138
|
text: 'Creating quick starts',
|
|
146
|
-
href:
|
|
147
|
-
'https://docs.openshift.com/container-platform/4.9/web_console/creating-quick-start-tutorials.html',
|
|
139
|
+
href: 'https://docs.openshift.com/container-platform/4.9/web_console/creating-quick-start-tutorials.html',
|
|
148
140
|
},
|
|
149
141
|
{
|
|
150
142
|
text: 'Redhat Console',
|
|
@@ -161,8 +153,7 @@ export const exampleHelpTopics = [
|
|
|
161
153
|
links: [
|
|
162
154
|
{
|
|
163
155
|
text: 'Creating quick starts',
|
|
164
|
-
href:
|
|
165
|
-
'https://docs.openshift.com/container-platform/4.9/web_console/creating-quick-start-tutorials.html',
|
|
156
|
+
href: 'https://docs.openshift.com/container-platform/4.9/web_console/creating-quick-start-tutorials.html',
|
|
166
157
|
},
|
|
167
158
|
{
|
|
168
159
|
text: 'Redhat Console',
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@media screen and (min-width:
|
|
1
|
+
@media screen and (min-width: 75rem) {
|
|
2
2
|
:where(:root, .pf-v6-c-drawer).pf-m-panel-bottom {
|
|
3
3
|
--pf-v6-c-drawer__panel--MinWidth: auto;
|
|
4
4
|
--pf-v6-c-drawer__panel--MinHeight: var(--pf-v6-c-drawer--m-panel-bottom__panel--xl--MinHeight);
|
|
@@ -6,19 +6,19 @@
|
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.pf-v6-c-drawer {
|
|
9
|
-
--pf-v6-c-drawer--m-expanded__panel--BoxShadow: var(--pf-t--global--box-shadow--
|
|
10
|
-
--pf-v6-c-drawer--m-expanded--m-panel-left__panel--BoxShadow: var(--pf-t--global--box-shadow--
|
|
9
|
+
--pf-v6-c-drawer--m-expanded__panel--BoxShadow: var(--pf-t--global--box-shadow--md--left);
|
|
10
|
+
--pf-v6-c-drawer--m-expanded--m-panel-left__panel--BoxShadow: var(--pf-t--global--box-shadow--md--right);
|
|
11
11
|
display: flex;
|
|
12
12
|
flex-direction: column;
|
|
13
13
|
height: 100%;
|
|
14
14
|
overflow-x: hidden;
|
|
15
15
|
}
|
|
16
16
|
:where(.pf-v6-m-dir-rtl, [dir="rtl"]) .pf-v6-c-drawer {
|
|
17
|
-
--pf-v6-c-drawer--m-expanded__panel--BoxShadow: var(--pf-t--global--box-shadow--
|
|
17
|
+
--pf-v6-c-drawer--m-expanded__panel--BoxShadow: var(--pf-t--global--box-shadow--md--right);
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
:where(.pf-v6-m-dir-rtl, [dir="rtl"]) .pf-v6-c-drawer {
|
|
21
|
-
--pf-v6-c-drawer--m-expanded--m-panel-left__panel--BoxShadow: var(--pf-t--global--box-shadow--
|
|
21
|
+
--pf-v6-c-drawer--m-expanded--m-panel-left__panel--BoxShadow: var(--pf-t--global--box-shadow--md--left);
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
.pf-v6-c-drawer.pf-m-inline > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel:not(.pf-m-no-border, .pf-m-resizable), .pf-v6-c-drawer.pf-m-static > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel:not(.pf-m-no-border, .pf-m-resizable) {
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
.pf-v6-c-drawer__panel.pf-m-no-background {
|
|
139
139
|
--pf-v6-c-drawer__panel--BackgroundColor: transparent;
|
|
140
140
|
}
|
|
141
|
-
@media screen and (min-width:
|
|
141
|
+
@media screen and (min-width: 48rem) {
|
|
142
142
|
.pf-v6-c-drawer__panel {
|
|
143
143
|
--pf-v6-c-drawer__panel--FlexBasis:
|
|
144
144
|
max(
|
|
@@ -147,7 +147,7 @@
|
|
|
147
147
|
);
|
|
148
148
|
}
|
|
149
149
|
}
|
|
150
|
-
@media screen and (min-width:
|
|
150
|
+
@media screen and (min-width: 75rem) {
|
|
151
151
|
.pf-v6-c-drawer__panel {
|
|
152
152
|
--pf-v6-c-drawer__panel--md--FlexBasis: var(--pf-v6-c-drawer__panel--xl--FlexBasis);
|
|
153
153
|
}
|
|
@@ -288,7 +288,7 @@
|
|
|
288
288
|
border-inline-end-width: var(--pf-v6-c-drawer__splitter-handle--after--BorderInlineEndWidth);
|
|
289
289
|
}
|
|
290
290
|
|
|
291
|
-
@media screen and (min-width:
|
|
291
|
+
@media screen and (min-width: 48rem) {
|
|
292
292
|
.pf-v6-c-drawer {
|
|
293
293
|
min-width: var(--pf-v6-c-drawer__panel--MinWidth);
|
|
294
294
|
}
|
|
@@ -383,7 +383,7 @@
|
|
|
383
383
|
display: block;
|
|
384
384
|
}
|
|
385
385
|
}
|
|
386
|
-
@media (min-width:
|
|
386
|
+
@media (min-width: 48rem) {
|
|
387
387
|
.pf-v6-c-drawer__panel.pf-m-width-25 {
|
|
388
388
|
--pf-v6-c-drawer__panel--md--FlexBasis: 25%;
|
|
389
389
|
}
|
|
@@ -408,7 +408,7 @@
|
|
|
408
408
|
--pf-v6-c-drawer__panel--md--FlexBasis: 100%;
|
|
409
409
|
}
|
|
410
410
|
}
|
|
411
|
-
@media (min-width:
|
|
411
|
+
@media (min-width: 62rem) {
|
|
412
412
|
.pf-v6-c-drawer__panel.pf-m-width-25-on-lg {
|
|
413
413
|
--pf-v6-c-drawer__panel--md--FlexBasis: 25%;
|
|
414
414
|
}
|
|
@@ -433,7 +433,7 @@
|
|
|
433
433
|
--pf-v6-c-drawer__panel--md--FlexBasis: 100%;
|
|
434
434
|
}
|
|
435
435
|
}
|
|
436
|
-
@media (min-width:
|
|
436
|
+
@media (min-width: 75rem) {
|
|
437
437
|
.pf-v6-c-drawer__panel.pf-m-width-25-on-xl {
|
|
438
438
|
--pf-v6-c-drawer__panel--md--FlexBasis: 25%;
|
|
439
439
|
}
|
|
@@ -458,7 +458,7 @@
|
|
|
458
458
|
--pf-v6-c-drawer__panel--md--FlexBasis: 100%;
|
|
459
459
|
}
|
|
460
460
|
}
|
|
461
|
-
@media (min-width:
|
|
461
|
+
@media (min-width: 90.625rem) {
|
|
462
462
|
.pf-v6-c-drawer__panel.pf-m-width-25-on-2xl {
|
|
463
463
|
--pf-v6-c-drawer__panel--md--FlexBasis: 25%;
|
|
464
464
|
}
|
|
@@ -483,7 +483,7 @@
|
|
|
483
483
|
--pf-v6-c-drawer__panel--md--FlexBasis: 100%;
|
|
484
484
|
}
|
|
485
485
|
}
|
|
486
|
-
@media (min-width:
|
|
486
|
+
@media (min-width: 48rem) {
|
|
487
487
|
.pf-v6-c-drawer.pf-m-inline > .pf-v6-c-drawer__main > .pf-v6-c-drawer__content,
|
|
488
488
|
.pf-v6-c-drawer.pf-m-static > .pf-v6-c-drawer__main > .pf-v6-c-drawer__content {
|
|
489
489
|
flex-shrink: 1;
|
|
@@ -554,7 +554,7 @@
|
|
|
554
554
|
display: none;
|
|
555
555
|
}
|
|
556
556
|
}
|
|
557
|
-
@media (min-width:
|
|
557
|
+
@media (min-width: 62rem) {
|
|
558
558
|
.pf-v6-c-drawer.pf-m-inline-on-lg > .pf-v6-c-drawer__main > .pf-v6-c-drawer__content,
|
|
559
559
|
.pf-v6-c-drawer.pf-m-static-on-lg > .pf-v6-c-drawer__main > .pf-v6-c-drawer__content {
|
|
560
560
|
flex-shrink: 1;
|
|
@@ -625,7 +625,7 @@
|
|
|
625
625
|
display: none;
|
|
626
626
|
}
|
|
627
627
|
}
|
|
628
|
-
@media (min-width:
|
|
628
|
+
@media (min-width: 75rem) {
|
|
629
629
|
.pf-v6-c-drawer.pf-m-inline-on-xl > .pf-v6-c-drawer__main > .pf-v6-c-drawer__content,
|
|
630
630
|
.pf-v6-c-drawer.pf-m-static-on-xl > .pf-v6-c-drawer__main > .pf-v6-c-drawer__content {
|
|
631
631
|
flex-shrink: 1;
|
|
@@ -696,7 +696,7 @@
|
|
|
696
696
|
display: none;
|
|
697
697
|
}
|
|
698
698
|
}
|
|
699
|
-
@media (min-width:
|
|
699
|
+
@media (min-width: 90.625rem) {
|
|
700
700
|
.pf-v6-c-drawer.pf-m-inline-on-2xl > .pf-v6-c-drawer__main > .pf-v6-c-drawer__content,
|
|
701
701
|
.pf-v6-c-drawer.pf-m-static-on-2xl > .pf-v6-c-drawer__main > .pf-v6-c-drawer__content {
|
|
702
702
|
flex-shrink: 1;
|
|
@@ -767,55 +767,8 @@
|
|
|
767
767
|
display: none;
|
|
768
768
|
}
|
|
769
769
|
}
|
|
770
|
+
|
|
770
771
|
.pf-v6-c-popover {
|
|
771
|
-
--pf-v6-c-popover--FontSize: var(--pf-t--global--font--size--body--sm);
|
|
772
|
-
--pf-v6-c-popover--MinWidth: calc(var(--pf-v6-c-popover__content--PaddingInlineStart) + var(--pf-v6-c-popover__content--PaddingInlineEnd) + 18.75rem);
|
|
773
|
-
--pf-v6-c-popover--MaxWidth: calc(var(--pf-v6-c-popover__content--PaddingInlineStart) + var(--pf-v6-c-popover__content--PaddingInlineEnd) + 18.75rem);
|
|
774
|
-
--pf-v6-c-popover--BoxShadow: var(--pf-t--global--box-shadow--md);
|
|
775
|
-
--pf-v6-c-popover--BorderRadius: var(--pf-t--global--border--radius--medium);
|
|
776
|
-
--pf-v6-c-popover--m-danger__title-icon--Color: var(--pf-t--global--icon--color--status--danger--default);
|
|
777
|
-
--pf-v6-c-popover--m-warning__title-icon--Color: var(--pf-t--global--icon--color--status--warning--default);
|
|
778
|
-
--pf-v6-c-popover--m-success__title-icon--Color: var(--pf-t--global--icon--color--status--success--default);
|
|
779
|
-
--pf-v6-c-popover--m-info__title-icon--Color: var(--pf-t--global--icon--color--status--info--default);
|
|
780
|
-
--pf-v6-c-popover--m-custom__title-icon--Color: var(--pf-t--global--icon--color--status--custom--default);
|
|
781
|
-
--pf-v6-c-popover__content--BackgroundColor: var(--pf-t--global--background--color--floating--default);
|
|
782
|
-
--pf-v6-c-popover__content--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
783
|
-
--pf-v6-c-popover__content--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
|
784
|
-
--pf-v6-c-popover__content--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
785
|
-
--pf-v6-c-popover__content--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
786
|
-
--pf-v6-c-popover__content--BorderRadius: var(--pf-t--global--border--radius--medium);
|
|
787
|
-
--pf-v6-c-popover__arrow--Width: 0.9375rem;
|
|
788
|
-
--pf-v6-c-popover__arrow--Height: 0.9375rem;
|
|
789
|
-
--pf-v6-c-popover__arrow--BoxShadow: var(--pf-t--global--box-shadow--md);
|
|
790
|
-
--pf-v6-c-popover__arrow--BackgroundColor: var(--pf-t--global--background--color--floating--default);
|
|
791
|
-
--pf-v6-c-popover__arrow--m-top--TranslateX: -50%;
|
|
792
|
-
--pf-v6-c-popover__arrow--m-top--TranslateY: 50%;
|
|
793
|
-
--pf-v6-c-popover__arrow--m-top--Rotate: 45deg;
|
|
794
|
-
--pf-v6-c-popover__arrow--m-right--TranslateX: -50%;
|
|
795
|
-
--pf-v6-c-popover__arrow--m-right--TranslateY: -50%;
|
|
796
|
-
--pf-v6-c-popover__arrow--m-right--Rotate: 45deg;
|
|
797
|
-
--pf-v6-c-popover__arrow--m-bottom--TranslateX: -50%;
|
|
798
|
-
--pf-v6-c-popover__arrow--m-bottom--TranslateY: -50%;
|
|
799
|
-
--pf-v6-c-popover__arrow--m-bottom--Rotate: 45deg;
|
|
800
|
-
--pf-v6-c-popover__arrow--m-left--TranslateX: 50%;
|
|
801
|
-
--pf-v6-c-popover__arrow--m-left--TranslateY: -50%;
|
|
802
|
-
--pf-v6-c-popover__arrow--m-left--Rotate: 45deg;
|
|
803
|
-
--pf-v6-c-popover__arrow--m-inline-top--InsetBlockStart: var(--pf-t--global--border--radius--medium);
|
|
804
|
-
--pf-v6-c-popover__arrow--m-inline-bottom--InsetBlockEnd: var(--pf-t--global--border--radius--medium);
|
|
805
|
-
--pf-v6-c-popover__arrow--m-block-left--InsetInlineStart: var(--pf-t--global--border--radius--medium);
|
|
806
|
-
--pf-v6-c-popover__arrow--m-block-right--InsetInlineEnd: var(--pf-t--global--border--radius--medium);
|
|
807
|
-
--pf-v6-c-popover__close--InsetBlockStart: calc(var(--pf-v6-c-popover__content--PaddingBlockStart) - (var(--pf-t--global--spacer--control--vertical--compact) * 1.5));
|
|
808
|
-
--pf-v6-c-popover__close--InsetInlineEnd: var(--pf-v6-c-popover__content--PaddingInlineEnd);
|
|
809
|
-
--pf-v6-c-popover__close--sibling--PaddingInlineEnd: var(--pf-t--global--spacer--2xl);
|
|
810
|
-
--pf-v6-c-popover__header--MarginBlockEnd: var(--pf-t--global--spacer--sm);
|
|
811
|
-
--pf-v6-c-popover__title-text--Color: var(--pf-t--global--text--color--regular);
|
|
812
|
-
--pf-v6-c-popover__title-text--FontFamily: var(--pf-t--global--font--family--body);
|
|
813
|
-
--pf-v6-c-popover__title-text--FontSize: var(--pf-t--global--font--size--body--lg);
|
|
814
|
-
--pf-v6-c-popover__title-text--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
815
|
-
--pf-v6-c-popover__title-icon--MarginInlineEnd: var(--pf-t--global--spacer--sm);
|
|
816
|
-
--pf-v6-c-popover__title-icon--Color: var(--pf-t--global--icon--color--regular);
|
|
817
|
-
--pf-v6-c-popover__title-icon--FontSize: var(--pf-t--global--font--size--heading--xs);
|
|
818
|
-
--pf-v6-c-popover__footer--MarginBlockStart: var(--pf-t--global--spacer--md);
|
|
819
772
|
position: relative;
|
|
820
773
|
min-width: var(--pf-v6-c-popover--MinWidth);
|
|
821
774
|
max-width: var(--pf-v6-c-popover--MaxWidth);
|
|
@@ -954,7 +907,6 @@
|
|
|
954
907
|
}
|
|
955
908
|
|
|
956
909
|
.pf-v6-c-popover__title-text {
|
|
957
|
-
font-family: var(--pf-v6-c-popover__title-text--FontFamily);
|
|
958
910
|
font-size: var(--pf-v6-c-popover__title-text--FontSize);
|
|
959
911
|
font-weight: var(--pf-v6-c-popover__title-text--FontWeight);
|
|
960
912
|
color: var(--pf-v6-c-popover__title-text--Color);
|
|
@@ -1031,6 +983,7 @@
|
|
|
1031
983
|
flex-shrink: 0;
|
|
1032
984
|
gap: var(--pf-v6-c-modal-box__header--Gap);
|
|
1033
985
|
padding-block-start: var(--pf-v6-c-modal-box__header--PaddingBlockStart);
|
|
986
|
+
padding-block-end: var(--pf-v6-c-modal-box__header--PaddingBlockEnd);
|
|
1034
987
|
padding-inline-start: var(--pf-v6-c-modal-box__header--PaddingInlineStart);
|
|
1035
988
|
padding-inline-end: var(--pf-v6-c-modal-box__header--PaddingInlineEnd);
|
|
1036
989
|
}
|
|
@@ -1061,6 +1014,7 @@
|
|
|
1061
1014
|
flex: 0 0 auto;
|
|
1062
1015
|
font-family: var(--pf-v6-c-modal-box__title--FontFamily);
|
|
1063
1016
|
font-size: var(--pf-v6-c-modal-box__title--FontSize);
|
|
1017
|
+
font-weight: var(--pf-v6-c-modal-box__title--FontWeight);
|
|
1064
1018
|
line-height: var(--pf-v6-c-modal-box__title--LineHeight);
|
|
1065
1019
|
}
|
|
1066
1020
|
.pf-v6-c-modal-box__title.pf-m-icon {
|
|
@@ -1106,7 +1060,7 @@
|
|
|
1106
1060
|
.pf-v6-c-modal-box__footer > .pf-v6-c-button:not(:last-child) {
|
|
1107
1061
|
margin-inline-end: var(--pf-v6-c-modal-box__footer--c-button--MarginInlineEnd);
|
|
1108
1062
|
}
|
|
1109
|
-
@media screen and (min-width:
|
|
1063
|
+
@media screen and (min-width: 36rem) {
|
|
1110
1064
|
.pf-v6-c-modal-box__footer > .pf-v6-c-button:not(:last-child) {
|
|
1111
1065
|
--pf-v6-c-modal-box__footer--c-button--MarginInlineEnd: var(--pf-v6-c-modal-box__footer--c-button--sm--MarginInlineEnd);
|
|
1112
1066
|
}
|