@patternfly/quickstarts 0.0.0
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/README.md +546 -0
- package/dist/ConsoleInternal/components/markdown-view.d.ts +19 -0
- package/dist/ConsoleInternal/components/utils/camel-case-wrap.d.ts +6 -0
- package/dist/ConsoleInternal/components/utils/index.d.ts +3 -0
- package/dist/ConsoleInternal/components/utils/router.d.ts +9 -0
- package/dist/ConsoleInternal/components/utils/status-box.d.ts +20 -0
- package/dist/ConsoleInternal/module/k8s/types.d.ts +42 -0
- package/dist/ConsoleShared/index.d.ts +1 -0
- package/dist/ConsoleShared/src/components/index.d.ts +7 -0
- package/dist/ConsoleShared/src/components/markdown-extensions/MarkdownCopyClipboard.d.ts +13 -0
- package/dist/ConsoleShared/src/components/markdown-extensions/accordion-extension.d.ts +7 -0
- package/dist/ConsoleShared/src/components/markdown-extensions/accordion-render-extension.d.ts +6 -0
- package/dist/ConsoleShared/src/components/markdown-extensions/admonition-extension.d.ts +7 -0
- package/dist/ConsoleShared/src/components/markdown-extensions/code-extension.d.ts +7 -0
- package/dist/ConsoleShared/src/components/markdown-extensions/const.d.ts +5 -0
- package/dist/ConsoleShared/src/components/markdown-extensions/index.d.ts +7 -0
- package/dist/ConsoleShared/src/components/markdown-extensions/inline-clipboard-extension.d.ts +7 -0
- package/dist/ConsoleShared/src/components/markdown-extensions/multiline-clipboard-extension.d.ts +7 -0
- package/dist/ConsoleShared/src/components/markdown-extensions/utils.d.ts +1 -0
- package/dist/ConsoleShared/src/components/markdown-highlight-extension/MarkdownHighlightExtension.d.ts +7 -0
- package/dist/ConsoleShared/src/components/markdown-highlight-extension/highlight-consts.d.ts +4 -0
- package/dist/ConsoleShared/src/components/markdown-highlight-extension/index.d.ts +1 -0
- package/dist/ConsoleShared/src/components/modal/Modal.d.ts +9 -0
- package/dist/ConsoleShared/src/components/modal/index.d.ts +1 -0
- package/dist/ConsoleShared/src/components/popper/Portal.d.ts +8 -0
- package/dist/ConsoleShared/src/components/popper/SimplePopper.d.ts +6 -0
- package/dist/ConsoleShared/src/components/popper/index.d.ts +2 -0
- package/dist/ConsoleShared/src/components/spotlight/InteractiveSpotlight.d.ts +7 -0
- package/dist/ConsoleShared/src/components/spotlight/Spotlight.d.ts +7 -0
- package/dist/ConsoleShared/src/components/spotlight/StaticSpotlight.d.ts +7 -0
- package/dist/ConsoleShared/src/components/spotlight/index.d.ts +1 -0
- package/dist/ConsoleShared/src/components/status/GenericStatus.d.ts +12 -0
- package/dist/ConsoleShared/src/components/status/NotStartedIcon.d.ts +3 -0
- package/dist/ConsoleShared/src/components/status/PopoverStatus.d.ts +13 -0
- package/dist/ConsoleShared/src/components/status/Status.d.ts +11 -0
- package/dist/ConsoleShared/src/components/status/StatusIconAndText.d.ts +8 -0
- package/dist/ConsoleShared/src/components/status/icons.d.ts +9 -0
- package/dist/ConsoleShared/src/components/status/index.d.ts +1 -0
- package/dist/ConsoleShared/src/components/status/statuses.d.ts +5 -0
- package/dist/ConsoleShared/src/components/status/types.d.ts +9 -0
- package/dist/ConsoleShared/src/components/utils/FallbackImg.d.ts +9 -0
- package/dist/ConsoleShared/src/components/utils/index.d.ts +1 -0
- package/dist/ConsoleShared/src/constants/index.d.ts +1 -0
- package/dist/ConsoleShared/src/constants/ui.d.ts +1 -0
- package/dist/ConsoleShared/src/hooks/index.d.ts +6 -0
- package/dist/ConsoleShared/src/hooks/scroll.d.ts +8 -0
- package/dist/ConsoleShared/src/hooks/useBoundingClientRect.d.ts +3 -0
- package/dist/ConsoleShared/src/hooks/useEventListener.d.ts +1 -0
- package/dist/ConsoleShared/src/hooks/useForceRender.d.ts +4 -0
- package/dist/ConsoleShared/src/hooks/useResizeObserver.d.ts +1 -0
- package/dist/ConsoleShared/src/hooks/useScrollShadows.d.ts +7 -0
- package/dist/ConsoleShared/src/index.d.ts +4 -0
- package/dist/ConsoleShared/src/utils/index.d.ts +1 -0
- package/dist/ConsoleShared/src/utils/useCombineRefs.d.ts +2 -0
- package/dist/HelpTopicDrawer.d.ts +33 -0
- package/dist/HelpTopicPanelContent.d.ts +11 -0
- package/dist/QuickStartCatalogPage.d.ts +14 -0
- package/dist/QuickStartCloseModal.d.ts +8 -0
- package/dist/QuickStartController.d.ts +10 -0
- package/dist/QuickStartDrawer.d.ts +62 -0
- package/dist/QuickStartMarkdownView.d.ts +9 -0
- package/dist/QuickStartPanelContent.d.ts +15 -0
- package/dist/catalog/Catalog/QuickStartCatalogHeader.d.ts +6 -0
- package/dist/catalog/Catalog/QuickStartCatalogSection.d.ts +5 -0
- package/dist/catalog/Catalog/QuickStartCatalogToolbar.d.ts +5 -0
- package/dist/catalog/Catalog/index.d.ts +3 -0
- package/dist/catalog/QuickStartCatalog.d.ts +8 -0
- package/dist/catalog/QuickStartTile.d.ts +14 -0
- package/dist/catalog/QuickStartTileDescription.d.ts +8 -0
- package/dist/catalog/QuickStartTileFooter.d.ts +8 -0
- package/dist/catalog/QuickStartTileFooterExternal.d.ts +8 -0
- package/dist/catalog/QuickStartTileHeader.d.ts +24 -0
- package/dist/catalog/Toolbar/QuickStartCatalogFilter.d.ts +10 -0
- package/dist/catalog/Toolbar/QuickStartCatalogFilterItems.d.ts +31 -0
- package/dist/catalog/index.d.ts +9 -0
- package/dist/controller/QuickStartConclusion.d.ts +12 -0
- package/dist/controller/QuickStartContent.d.ts +14 -0
- package/dist/controller/QuickStartFooter.d.ts +14 -0
- package/dist/controller/QuickStartIntroduction.d.ts +12 -0
- package/dist/controller/QuickStartTaskHeader.d.ts +15 -0
- package/dist/controller/QuickStartTaskHeaderList.d.ts +10 -0
- package/dist/controller/QuickStartTaskReview.d.ts +10 -0
- package/dist/controller/QuickStartTasks.d.ts +12 -0
- package/dist/data/mocks/json/explore-pipeline-quickstart.d.ts +2 -0
- package/dist/data/mocks/json/explore-serverless-quickstart.d.ts +2 -0
- package/dist/data/mocks/json/monitor-sampleapp-quickstart.d.ts +2 -0
- package/dist/data/mocks/json/tour-icons.d.ts +2 -0
- package/dist/data/quick-start-test-data.d.ts +2 -0
- package/dist/data/test-utils.d.ts +8 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.es.js +2593 -0
- package/dist/index.es.js.map +1 -0
- package/dist/index.js +2695 -0
- package/dist/index.js.map +1 -0
- package/dist/patternfly-docs/quick-starts/design-guidelines/design-guidelines.md +105 -0
- package/dist/patternfly-docs/quick-starts/design-guidelines/img/card-elements copy.png +0 -0
- package/dist/patternfly-docs/quick-starts/design-guidelines/img/card-elements.png +0 -0
- package/dist/patternfly-docs/quick-starts/design-guidelines/img/catalog-elements.png +0 -0
- package/dist/patternfly-docs/quick-starts/design-guidelines/img/check-your-work.png +0 -0
- package/dist/patternfly-docs/quick-starts/design-guidelines/img/introduction-screen.png +0 -0
- package/dist/patternfly-docs/quick-starts/design-guidelines/img/mixed-catalog.png +0 -0
- package/dist/patternfly-docs/quick-starts/design-guidelines/img/prerequisites.png +0 -0
- package/dist/patternfly-docs/quick-starts/design-guidelines/img/qs-context.png +0 -0
- package/dist/patternfly-docs/quick-starts/design-guidelines/img/side-panel-elements.png +0 -0
- package/dist/patternfly-docs/quick-starts/design-guidelines/img/side-panel-resized.png +0 -0
- package/dist/patternfly-docs/quick-starts/design-guidelines/img/side-panel.png +0 -0
- package/dist/patternfly-docs/quick-starts/design-guidelines/img/task-no.png +0 -0
- package/dist/patternfly-docs/quick-starts/design-guidelines/img/task-yes.png +0 -0
- package/dist/patternfly-docs/quick-starts/design-guidelines/img/task.png +0 -0
- package/dist/patternfly-docs/quick-starts/examples/Basic.jsx +73 -0
- package/dist/patternfly-docs/quick-starts/examples/HelpTopic.jsx +51 -0
- package/dist/patternfly-docs/quick-starts/examples/about.md +84 -0
- package/dist/patternfly-docs/quick-starts/examples/basic.md +29 -0
- package/dist/patternfly-docs/quick-starts/examples/example-data/example-help-topics.js +173 -0
- package/dist/patternfly-docs/quick-starts/examples/example-data/example-quickstarts.js +215 -0
- package/dist/patternfly-docs/quick-starts/examples/example-data/index.js +15 -0
- package/dist/patternfly-docs/quick-starts/examples/help-topics.md +28 -0
- package/dist/patternfly-docs/quick-starts/examples/img/catalog.png +0 -0
- package/dist/patternfly-docs/quick-starts/examples/img/help-topic.png +0 -0
- package/dist/patternfly-docs/quick-starts/examples/img/side-panel.png +0 -0
- package/dist/patternfly-global.css +1302 -0
- package/dist/patternfly-nested.css +11812 -0
- package/dist/quickstarts-base.css +1219 -0
- package/dist/quickstarts-full.es.js +31861 -0
- package/dist/quickstarts-full.es.js.map +1 -0
- package/dist/quickstarts-standalone.css +868 -0
- package/dist/quickstarts-standalone.min.css +4 -0
- package/dist/quickstarts-vendor.css +165 -0
- package/dist/quickstarts.css +1383 -0
- package/dist/quickstarts.min.css +1 -0
- package/dist/styles/patternfly-global-entry.d.ts +1 -0
- package/dist/styles/patternfly-nested-entry.d.ts +1 -0
- package/dist/styles/quickstarts-standalone-entry.d.ts +1 -0
- package/dist/styles/vendor-entry.d.ts +1 -0
- package/dist/utils/PluralResolver.d.ts +16 -0
- package/dist/utils/asciidoc-procedure-parser.d.ts +12 -0
- package/dist/utils/const.d.ts +6 -0
- package/dist/utils/help-topic-context.d.ts +23 -0
- package/dist/utils/help-topic-types.d.ts +13 -0
- package/dist/utils/quick-start-context.d.ts +81 -0
- package/dist/utils/quick-start-types.d.ts +60 -0
- package/dist/utils/quick-start-utils.d.ts +10 -0
- package/dist/utils/useLocalStorage.d.ts +1 -0
- package/dist/vendor.js +2 -0
- package/dist/vendor.js.map +1 -0
- package/package.json +105 -0
- package/src/ConsoleInternal/components/_icon-and-text.scss +14 -0
- package/src/ConsoleInternal/components/_markdown-view.scss +19 -0
- package/src/ConsoleInternal/components/catalog/_catalog.scss +392 -0
- package/src/ConsoleInternal/components/markdown-view.tsx +276 -0
- package/src/ConsoleInternal/components/utils/_status-box.scss +58 -0
- package/src/ConsoleInternal/components/utils/camel-case-wrap.tsx +33 -0
- package/src/ConsoleInternal/components/utils/index.tsx +3 -0
- package/src/ConsoleInternal/components/utils/router.ts +45 -0
- package/src/ConsoleInternal/components/utils/status-box.tsx +56 -0
- package/src/ConsoleInternal/module/k8s/types.ts +53 -0
- package/src/ConsoleShared/index.ts +1 -0
- package/src/ConsoleShared/src/components/index.ts +7 -0
- package/src/ConsoleShared/src/components/layout/PageLayout.scss +29 -0
- package/src/ConsoleShared/src/components/markdown-extensions/MarkdownCopyClipboard.tsx +95 -0
- package/src/ConsoleShared/src/components/markdown-extensions/__tests__/MarkdownCopyClipboard.spec.tsx +25 -0
- package/src/ConsoleShared/src/components/markdown-extensions/__tests__/test-data.ts +5 -0
- package/src/ConsoleShared/src/components/markdown-extensions/accordion-extension.tsx +51 -0
- package/src/ConsoleShared/src/components/markdown-extensions/accordion-render-extension.tsx +60 -0
- package/src/ConsoleShared/src/components/markdown-extensions/admonition-extension.tsx +67 -0
- package/src/ConsoleShared/src/components/markdown-extensions/code-extension.tsx +23 -0
- package/src/ConsoleShared/src/components/markdown-extensions/const.ts +5 -0
- package/src/ConsoleShared/src/components/markdown-extensions/index.ts +7 -0
- package/src/ConsoleShared/src/components/markdown-extensions/inline-clipboard-extension.tsx +39 -0
- package/src/ConsoleShared/src/components/markdown-extensions/multiline-clipboard-extension.tsx +44 -0
- package/src/ConsoleShared/src/components/markdown-extensions/showdown-extension.scss +52 -0
- package/src/ConsoleShared/src/components/markdown-extensions/utils.ts +1 -0
- package/src/ConsoleShared/src/components/markdown-highlight-extension/MarkdownHighlightExtension.tsx +65 -0
- package/src/ConsoleShared/src/components/markdown-highlight-extension/highlight-consts.ts +9 -0
- package/src/ConsoleShared/src/components/markdown-highlight-extension/index.ts +1 -0
- package/src/ConsoleShared/src/components/modal/Modal.scss +3 -0
- package/src/ConsoleShared/src/components/modal/Modal.tsx +19 -0
- package/src/ConsoleShared/src/components/modal/index.ts +1 -0
- package/src/ConsoleShared/src/components/popper/Portal.tsx +25 -0
- package/src/ConsoleShared/src/components/popper/SimplePopper.tsx +92 -0
- package/src/ConsoleShared/src/components/popper/index.ts +2 -0
- package/src/ConsoleShared/src/components/spotlight/InteractiveSpotlight.tsx +58 -0
- package/src/ConsoleShared/src/components/spotlight/Spotlight.tsx +35 -0
- package/src/ConsoleShared/src/components/spotlight/StaticSpotlight.tsx +32 -0
- package/src/ConsoleShared/src/components/spotlight/index.ts +1 -0
- package/src/ConsoleShared/src/components/spotlight/spotlight.scss +63 -0
- package/src/ConsoleShared/src/components/status/GenericStatus.tsx +34 -0
- package/src/ConsoleShared/src/components/status/NotStartedIcon.tsx +27 -0
- package/src/ConsoleShared/src/components/status/PopoverStatus.tsx +39 -0
- package/src/ConsoleShared/src/components/status/Status.tsx +38 -0
- package/src/ConsoleShared/src/components/status/StatusIconAndText.tsx +42 -0
- package/src/ConsoleShared/src/components/status/icons.tsx +39 -0
- package/src/ConsoleShared/src/components/status/index.tsx +1 -0
- package/src/ConsoleShared/src/components/status/statuses.tsx +20 -0
- package/src/ConsoleShared/src/components/status/types.ts +8 -0
- package/src/ConsoleShared/src/components/utils/FallbackImg.tsx +20 -0
- package/src/ConsoleShared/src/components/utils/index.ts +1 -0
- package/src/ConsoleShared/src/constants/index.ts +1 -0
- package/src/ConsoleShared/src/constants/ui.ts +1 -0
- package/src/ConsoleShared/src/hooks/index.ts +6 -0
- package/src/ConsoleShared/src/hooks/scroll.ts +52 -0
- package/src/ConsoleShared/src/hooks/useBoundingClientRect.ts +18 -0
- package/src/ConsoleShared/src/hooks/useEventListener.ts +14 -0
- package/src/ConsoleShared/src/hooks/useForceRender.ts +6 -0
- package/src/ConsoleShared/src/hooks/useResizeObserver.ts +19 -0
- package/src/ConsoleShared/src/hooks/useScrollShadows.ts +45 -0
- package/src/ConsoleShared/src/index.ts +4 -0
- package/src/ConsoleShared/src/utils/index.ts +1 -0
- package/src/ConsoleShared/src/utils/useCombineRefs.ts +16 -0
- package/src/HelpTopicDrawer.tsx +116 -0
- package/src/HelpTopicPanelContent.tsx +160 -0
- package/src/QuickStartCatalogPage.tsx +195 -0
- package/src/QuickStartCloseModal.tsx +47 -0
- package/src/QuickStartController.tsx +111 -0
- package/src/QuickStartDrawer.scss +11 -0
- package/src/QuickStartDrawer.tsx +265 -0
- package/src/QuickStartMarkdownView.tsx +80 -0
- package/src/QuickStartPanelContent.scss +46 -0
- package/src/QuickStartPanelContent.tsx +165 -0
- package/src/__tests__/quick-start-utils.spec.tsx +16 -0
- package/src/catalog/Catalog/QuickStartCatalogHeader.tsx +18 -0
- package/src/catalog/Catalog/QuickStartCatalogSection.tsx +9 -0
- package/src/catalog/Catalog/QuickStartCatalogToolbar.tsx +12 -0
- package/src/catalog/Catalog/index.ts +3 -0
- package/src/catalog/QuickStartCatalog.scss +8 -0
- package/src/catalog/QuickStartCatalog.tsx +42 -0
- package/src/catalog/QuickStartTile.scss +11 -0
- package/src/catalog/QuickStartTile.tsx +129 -0
- package/src/catalog/QuickStartTileDescription.scss +29 -0
- package/src/catalog/QuickStartTileDescription.tsx +79 -0
- package/src/catalog/QuickStartTileFooter.tsx +101 -0
- package/src/catalog/QuickStartTileFooterExternal.tsx +40 -0
- package/src/catalog/QuickStartTileHeader.scss +16 -0
- package/src/catalog/QuickStartTileHeader.tsx +105 -0
- package/src/catalog/Toolbar/QuickStartCatalogFilter.scss +25 -0
- package/src/catalog/Toolbar/QuickStartCatalogFilter.tsx +32 -0
- package/src/catalog/Toolbar/QuickStartCatalogFilterItems.tsx +218 -0
- package/src/catalog/__tests__/QuickStartCatalog.spec.tsx +35 -0
- package/src/catalog/__tests__/QuickStartTile.spec.tsx +38 -0
- package/src/catalog/__tests__/QuickStartTileDescription.spec.tsx +44 -0
- package/src/catalog/index.ts +9 -0
- package/src/controller/QuickStartConclusion.tsx +63 -0
- package/src/controller/QuickStartContent.scss +12 -0
- package/src/controller/QuickStartContent.tsx +72 -0
- package/src/controller/QuickStartFooter.scss +13 -0
- package/src/controller/QuickStartFooter.tsx +124 -0
- package/src/controller/QuickStartIntroduction.scss +35 -0
- package/src/controller/QuickStartIntroduction.tsx +64 -0
- package/src/controller/QuickStartTaskHeader.scss +58 -0
- package/src/controller/QuickStartTaskHeader.tsx +125 -0
- package/src/controller/QuickStartTaskHeaderList.scss +17 -0
- package/src/controller/QuickStartTaskHeaderList.tsx +33 -0
- package/src/controller/QuickStartTaskReview.scss +30 -0
- package/src/controller/QuickStartTaskReview.tsx +81 -0
- package/src/controller/QuickStartTasks.scss +89 -0
- package/src/controller/QuickStartTasks.tsx +75 -0
- package/src/controller/__tests__/QuickStartConclusion.spec.tsx +95 -0
- package/src/controller/__tests__/QuickStartContent.spec.tsx +52 -0
- package/src/controller/__tests__/QuickStartFooter.spec.tsx +148 -0
- package/src/controller/__tests__/QuickStartTaskHeader.spec.tsx +43 -0
- package/src/controller/__tests__/QuickStartTaskReview.spec.tsx +45 -0
- package/src/controller/__tests__/QuickStartTasks.spec.tsx +81 -0
- package/src/data/mocks/json/explore-pipeline-quickstart.ts +66 -0
- package/src/data/mocks/json/explore-serverless-quickstart.ts +90 -0
- package/src/data/mocks/json/monitor-sampleapp-quickstart.ts +77 -0
- package/src/data/mocks/json/tour-icons.ts +3 -0
- package/src/data/mocks/yamls/add-healthchecks-quickstart.yaml +67 -0
- package/src/data/mocks/yamls/explore-pipeline-quickstart.yaml +57 -0
- package/src/data/mocks/yamls/explore-serverless-quickstart.yaml +83 -0
- package/src/data/mocks/yamls/install-associate-pipeline-quickstart.yaml +74 -0
- package/src/data/mocks/yamls/monitor-sampleapp-quickstart.yaml +66 -0
- package/src/data/mocks/yamls/sample-application-quickstart.yaml +97 -0
- package/src/data/mocks/yamls/serverless-application-quickstart.yaml +141 -0
- package/src/data/quick-start-test-data.ts +10 -0
- package/src/data/test-utils.ts +11 -0
- package/src/declaration.d.ts +2 -0
- package/src/index.ts +17 -0
- package/src/locales/en/quickstart.json +46 -0
- package/src/styles/_base.scss +54 -0
- package/src/styles/_dark-custom-override.scss +62 -0
- package/src/styles/legacy-bootstrap/README.md +21 -0
- package/src/styles/legacy-bootstrap/_code.scss +46 -0
- package/src/styles/legacy-bootstrap/_tables.scss +38 -0
- package/src/styles/legacy-bootstrap/_type.scss +92 -0
- package/src/styles/legacy-bootstrap/_variables.scss +48 -0
- package/src/styles/legacy-bootstrap.scss +5 -0
- package/src/styles/patternfly-global-entry.ts +1 -0
- package/src/styles/patternfly-global.scss +28 -0
- package/src/styles/patternfly-nested-entry.ts +1 -0
- package/src/styles/patternfly-nested.scss +18 -0
- package/src/styles/quickstarts-standalone-entry.ts +1 -0
- package/src/styles/quickstarts-standalone.scss +7 -0
- package/src/styles/style.scss +12 -0
- package/src/styles/vendor-entry.ts +1 -0
- package/src/styles/vendor.scss +7 -0
- package/src/utils/PluralResolver.ts +362 -0
- package/src/utils/asciidoc-procedure-parser.ts +130 -0
- package/src/utils/const.ts +10 -0
- package/src/utils/help-topic-context.tsx +72 -0
- package/src/utils/help-topic-types.ts +16 -0
- package/src/utils/quick-start-context.tsx +473 -0
- package/src/utils/quick-start-types.ts +73 -0
- package/src/utils/quick-start-utils.ts +88 -0
- package/src/utils/useLocalStorage.ts +38 -0
|
@@ -0,0 +1,1219 @@
|
|
|
1
|
+
.pfext-quick-start-panel-content__body dl {
|
|
2
|
+
margin: 0px;
|
|
3
|
+
}
|
|
4
|
+
.pfext-quick-start-panel-content__body dt {
|
|
5
|
+
font-weight: var(--pf-v5-global--FontWeight--bold);
|
|
6
|
+
}
|
|
7
|
+
.pfext-quick-start-panel-content__body dd {
|
|
8
|
+
margin-bottom: 20px;
|
|
9
|
+
}
|
|
10
|
+
.pfext-quick-start-panel-content__body dd:last-child {
|
|
11
|
+
margin-bottom: 0px;
|
|
12
|
+
}
|
|
13
|
+
.pfext-quick-start-panel-content__body input[type=number] {
|
|
14
|
+
-webkit-appearance: textfield;
|
|
15
|
+
appearance: textfield;
|
|
16
|
+
max-width: 100px;
|
|
17
|
+
}
|
|
18
|
+
.pfext-quick-start-panel-content__body input[type=number]::-webkit-inner-spin-button, .pfext-quick-start-panel-content__body input[type=number]::-webkit-outer-spin-button {
|
|
19
|
+
-webkit-appearance: none;
|
|
20
|
+
}
|
|
21
|
+
.pfext-quick-start-panel-content__body input[type=radio] {
|
|
22
|
+
margin-right: 7px;
|
|
23
|
+
}
|
|
24
|
+
.pfext-quick-start-panel-content__body .pf-v5-c-list {
|
|
25
|
+
--pf-v5-c-list--PaddingLeft: 20px;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.pfext-quick-start-panel-content__header,
|
|
29
|
+
.pfext-quick-start-panel-content__body,
|
|
30
|
+
.pfext-page-layout__content,
|
|
31
|
+
.pfext-popover__base {
|
|
32
|
+
--pf-v5-global--FontSize--md: 14px;
|
|
33
|
+
--pf-v5-global--FontSize--sm: 13px;
|
|
34
|
+
}
|
|
35
|
+
.pfext-quick-start-panel-content__header ul,
|
|
36
|
+
.pfext-quick-start-panel-content__body ul,
|
|
37
|
+
.pfext-page-layout__content ul,
|
|
38
|
+
.pfext-popover__base ul {
|
|
39
|
+
list-style-type: disc;
|
|
40
|
+
}
|
|
41
|
+
.pfext-quick-start-panel-content__header input[type=radio],
|
|
42
|
+
.pfext-quick-start-panel-content__header input[type=checkbox],
|
|
43
|
+
.pfext-quick-start-panel-content__body input[type=radio],
|
|
44
|
+
.pfext-quick-start-panel-content__body input[type=checkbox],
|
|
45
|
+
.pfext-page-layout__content input[type=radio],
|
|
46
|
+
.pfext-page-layout__content input[type=checkbox],
|
|
47
|
+
.pfext-popover__base input[type=radio],
|
|
48
|
+
.pfext-popover__base input[type=checkbox] {
|
|
49
|
+
margin-top: 1px !important;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.pf-v5-theme-dark .pfext-catalog-item-icon__img--large {
|
|
53
|
+
filter: brightness(1.5) invert(1) hue-rotate(180deg) saturate(4);
|
|
54
|
+
}
|
|
55
|
+
.pf-v5-theme-dark .pfext-quick-start-panel-content__header--blue-white .pfext-quick-start-panel-content__duration {
|
|
56
|
+
color: var(--pf-v5-global--Color--light-100);
|
|
57
|
+
}
|
|
58
|
+
.pf-v5-theme-dark .pfext-quick-start-task-header__subtitle {
|
|
59
|
+
color: var(--pf-v5-global--palette--black-200) !important;
|
|
60
|
+
}
|
|
61
|
+
.pf-v5-theme-dark .pfext-quick-start-task-header__task-icon-init {
|
|
62
|
+
background-color: var(--pf-v5-global--primary-color--300);
|
|
63
|
+
}
|
|
64
|
+
.pf-v5-theme-dark .pfext-quick-start-task-header__tryagain {
|
|
65
|
+
color: var(--pf-v5-global--palette--black-200) !important;
|
|
66
|
+
}
|
|
67
|
+
.pf-v5-theme-dark .pfext-markdown-view pre:not(.pfext-code-block__pre) {
|
|
68
|
+
background-color: var(--pf-v5-global--BackgroundColor--100);
|
|
69
|
+
border-color: var(--pf-v5-global--BorderColor--100);
|
|
70
|
+
}
|
|
71
|
+
.pf-v5-theme-dark .pfext-markdown-view .pf-v5-c-code-block__code {
|
|
72
|
+
color: var(--pf-v5-global--Color--100);
|
|
73
|
+
background-color: var(--pf-v5-global--palette--black-600);
|
|
74
|
+
}
|
|
75
|
+
.pf-v5-theme-dark .pfext-markdown-view .pf-v5-c-code-block,
|
|
76
|
+
.pf-v5-theme-dark .pfext-markdown-view .pf-v5-c-code-block code {
|
|
77
|
+
background-color: var(--pf-v5-global--BackgroundColor--400);
|
|
78
|
+
}
|
|
79
|
+
.pf-v5-theme-dark :where(.pfext-markdown-view) .pf-v5-c-clipboard-copy.pf-m-inline {
|
|
80
|
+
--pf-v5-c-clipboard-copy--m-inline--BackgroundColor: var(--pf-v5-global--BackgroundColor--400);
|
|
81
|
+
}
|
|
82
|
+
.pf-v5-theme-dark .pfext-page-layout__content {
|
|
83
|
+
background-color: var(--pf-v5-global--BackgroundColor--200);
|
|
84
|
+
}
|
|
85
|
+
.pf-v5-theme-dark .pfext-quick-start-catalog__gallery-item .pf-v5-c-card {
|
|
86
|
+
--pf-v5-c-card--BackgroundColor: var(--pf-v5-global--BackgroundColor--100);
|
|
87
|
+
}
|
|
88
|
+
.pf-v5-theme-dark .pf-v5-c-alert {
|
|
89
|
+
--pf-v5-c-alert--BackgroundColor: var(--pf-v5-global--palette--black-700);
|
|
90
|
+
--pf-v5-c-alert--m-inline--BackgroundColor: var(--pf-v5-global--palette--black-700);
|
|
91
|
+
--pf-v5-c-alert--m-inline--m-success--BackgroundColor: var(--pf-v5-global--palette--black-700);
|
|
92
|
+
--pf-v5-c-alert--m-inline--m-danger--BackgroundColor: var(--pf-v5-global--palette--black-700);
|
|
93
|
+
--pf-v5-c-alert--m-inline--m-warning--BackgroundColor: var(--pf-v5-global--palette--black-700);
|
|
94
|
+
--pf-v5-c-alert--m-inline--m-info--BackgroundColor: var(--pf-v5-global--palette--black-700);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.pfext-icon-and-text {
|
|
98
|
+
align-items: baseline;
|
|
99
|
+
display: flex;
|
|
100
|
+
}
|
|
101
|
+
.pf-v5-c-label__icon .pfext-icon-and-text {
|
|
102
|
+
display: block;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.pfext-icon-and-text__icon {
|
|
106
|
+
flex-shrink: 0;
|
|
107
|
+
margin-right: 5px;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.pfext-markdown-view.is-empty {
|
|
111
|
+
color: #999;
|
|
112
|
+
}
|
|
113
|
+
.pfext-markdown-view table {
|
|
114
|
+
display: block;
|
|
115
|
+
margin-bottom: 11.5px;
|
|
116
|
+
overflow-x: auto;
|
|
117
|
+
}
|
|
118
|
+
.pfext-markdown-view td,
|
|
119
|
+
.pfext-markdown-view th {
|
|
120
|
+
border-bottom: 1px solid #ededed;
|
|
121
|
+
padding: 10px;
|
|
122
|
+
vertical-align: top;
|
|
123
|
+
}
|
|
124
|
+
.pfext-markdown-view th {
|
|
125
|
+
padding-top: 0;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.catalog-item-header-pf-subtitle {
|
|
129
|
+
font-size: 13px;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.catalog-tile-pf-body .catalog-tile-pf-subtitle {
|
|
133
|
+
font-size: 13px;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.pfext-catalog {
|
|
137
|
+
display: flex;
|
|
138
|
+
flex-direction: column;
|
|
139
|
+
min-height: 100%;
|
|
140
|
+
min-width: 515px;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.pfext-catalog-tile-view {
|
|
144
|
+
display: flex;
|
|
145
|
+
flex-wrap: wrap;
|
|
146
|
+
--pf-v5-l-gallery--GridTemplateColumns: repeat(auto-fill, 260px) !important;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.pfext-catalog__body {
|
|
150
|
+
min-width: 575px;
|
|
151
|
+
}
|
|
152
|
+
@media (min-width: 768px) {
|
|
153
|
+
.pfext-catalog__body {
|
|
154
|
+
min-width: 590px;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.pfext-catalog-item-details {
|
|
159
|
+
display: flex;
|
|
160
|
+
margin: 0 0 10px;
|
|
161
|
+
}
|
|
162
|
+
.pfext-catalog-item-details__description {
|
|
163
|
+
white-space: pre-wrap;
|
|
164
|
+
}
|
|
165
|
+
.pfext-catalog-item-details__kind-label {
|
|
166
|
+
font-weight: var(--pf-v5-global--FontWeight--bold);
|
|
167
|
+
}
|
|
168
|
+
.pfext-catalog-item-details__name {
|
|
169
|
+
margin-bottom: 10px;
|
|
170
|
+
}
|
|
171
|
+
.pfext-catalog-item-details__provider, .pfext-catalog-item-details__tags {
|
|
172
|
+
margin-bottom: 5px;
|
|
173
|
+
}
|
|
174
|
+
.pfext-catalog-item-details__tag {
|
|
175
|
+
color: #72767b;
|
|
176
|
+
font-size: 13px;
|
|
177
|
+
margin-right: 5px;
|
|
178
|
+
text-transform: uppercase;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.pfext-catalog-item-icon {
|
|
182
|
+
padding-right: 10px;
|
|
183
|
+
}
|
|
184
|
+
.pfext-catalog-item-icon__icon {
|
|
185
|
+
font-size: 24px;
|
|
186
|
+
}
|
|
187
|
+
.pfext-catalog-item-icon__icon--large {
|
|
188
|
+
font-size: 40px;
|
|
189
|
+
}
|
|
190
|
+
.pfext-catalog-item-icon__img {
|
|
191
|
+
max-height: 24px;
|
|
192
|
+
max-width: 24px;
|
|
193
|
+
}
|
|
194
|
+
.pfext-catalog-item-icon__img[src$=".svg"] {
|
|
195
|
+
width: 24px;
|
|
196
|
+
}
|
|
197
|
+
.pfext-catalog-item-icon__img--large {
|
|
198
|
+
max-height: 40px;
|
|
199
|
+
max-width: 40px;
|
|
200
|
+
}
|
|
201
|
+
.pfext-catalog-item-icon__img--large[src$=".svg"] {
|
|
202
|
+
width: 40px;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.pfext-catalog-page {
|
|
206
|
+
background: #fff;
|
|
207
|
+
border: 1px solid var(--pf-v5-global--BorderColor--300);
|
|
208
|
+
display: flex;
|
|
209
|
+
flex: 1;
|
|
210
|
+
padding-top: 15px;
|
|
211
|
+
}
|
|
212
|
+
.pfext-catalog-page--with-sidebar {
|
|
213
|
+
margin: 0 15px;
|
|
214
|
+
padding-bottom: 15px;
|
|
215
|
+
}
|
|
216
|
+
.pfext-catalog-page__btn-group__group-by {
|
|
217
|
+
display: inline;
|
|
218
|
+
margin-left: var(--pf-v5-global--spacer--md);
|
|
219
|
+
}
|
|
220
|
+
.pfext-catalog-page__content {
|
|
221
|
+
flex: 1 1 auto;
|
|
222
|
+
overflow: hidden;
|
|
223
|
+
}
|
|
224
|
+
.pfext-catalog-page__description {
|
|
225
|
+
margin-top: -10px;
|
|
226
|
+
padding: 0 15px 10px;
|
|
227
|
+
}
|
|
228
|
+
@media (min-width: 768px) {
|
|
229
|
+
.pfext-catalog-page__description {
|
|
230
|
+
padding-left: 30px;
|
|
231
|
+
padding-right: 30px;
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
.pfext-catalog-page__filter {
|
|
235
|
+
display: flex;
|
|
236
|
+
justify-content: space-between;
|
|
237
|
+
}
|
|
238
|
+
.pfext-catalog-page__filter-toggle {
|
|
239
|
+
margin-top: 5px;
|
|
240
|
+
}
|
|
241
|
+
.pfext-catalog-page__grid {
|
|
242
|
+
background-color: #f5f5f5;
|
|
243
|
+
}
|
|
244
|
+
.pfext-catalog-page__grouped-items {
|
|
245
|
+
margin-bottom: var(--pf-v5-global--spacer--md);
|
|
246
|
+
}
|
|
247
|
+
.pfext-catalog-page__group-title {
|
|
248
|
+
margin-bottom: var(--pf-v5-global--spacer--sm);
|
|
249
|
+
}
|
|
250
|
+
.pfext-catalog-page__header {
|
|
251
|
+
margin: 0 30px 0 0;
|
|
252
|
+
}
|
|
253
|
+
.pfext-catalog-page__heading {
|
|
254
|
+
font-size: 16px;
|
|
255
|
+
margin: 0 0 20px 30px;
|
|
256
|
+
}
|
|
257
|
+
.pfext-catalog-page__hint {
|
|
258
|
+
margin: 0 0 var(--pf-v5-global--spacer--md) 0;
|
|
259
|
+
}
|
|
260
|
+
.pfext-catalog-page__input {
|
|
261
|
+
display: inline-flex !important;
|
|
262
|
+
margin: 0 0 20px 30px;
|
|
263
|
+
width: auto !important;
|
|
264
|
+
}
|
|
265
|
+
.pfext-catalog-page__sort {
|
|
266
|
+
display: inline;
|
|
267
|
+
margin-left: var(--pf-v5-global--spacer--md);
|
|
268
|
+
}
|
|
269
|
+
.pfext-catalog-page__num-items {
|
|
270
|
+
font-weight: var(--pf-v5-global--FontWeight--bold);
|
|
271
|
+
padding: 0 0 20px;
|
|
272
|
+
}
|
|
273
|
+
.pfext-catalog-page__info-icon {
|
|
274
|
+
vertical-align: middle;
|
|
275
|
+
color: #6a6e73;
|
|
276
|
+
}
|
|
277
|
+
.pfext-catalog-page__info-icon:hover {
|
|
278
|
+
color: #151515;
|
|
279
|
+
}
|
|
280
|
+
.pfext-catalog-page__overlay {
|
|
281
|
+
border: 0 !important;
|
|
282
|
+
}
|
|
283
|
+
.pfext-catalog-page__overlay .modal-body .pfext-hint-block {
|
|
284
|
+
margin-bottom: 10px;
|
|
285
|
+
}
|
|
286
|
+
.pfext-catalog-page__overlay .properties-side-panel-pf {
|
|
287
|
+
flex: 0 0 auto;
|
|
288
|
+
}
|
|
289
|
+
.pfext-catalog-page__overlay--right {
|
|
290
|
+
bottom: 0;
|
|
291
|
+
padding: 0 !important;
|
|
292
|
+
right: 0;
|
|
293
|
+
top: 4.75rem;
|
|
294
|
+
}
|
|
295
|
+
.pfext-catalog-page__overlay--right .pf-v5-c-modal-box__body {
|
|
296
|
+
display: flex;
|
|
297
|
+
flex-direction: column;
|
|
298
|
+
margin: 0 !important;
|
|
299
|
+
padding: 0;
|
|
300
|
+
}
|
|
301
|
+
.pfext-catalog-page__overlay--right .modal-body-inner-shadow-covers {
|
|
302
|
+
padding-left: 0 !important;
|
|
303
|
+
padding-right: 0 !important;
|
|
304
|
+
}
|
|
305
|
+
.pfext-catalog-page__overlay--right h1 {
|
|
306
|
+
white-space: normal;
|
|
307
|
+
}
|
|
308
|
+
.pfext-catalog-page__overlay-action {
|
|
309
|
+
align-items: baseline;
|
|
310
|
+
display: inline-flex !important;
|
|
311
|
+
margin: var(--pf-v5-global--spacer--sm) var(--pf-v5-global--spacer--sm) 0 0;
|
|
312
|
+
overflow-x: hidden;
|
|
313
|
+
}
|
|
314
|
+
.pfext-catalog-page__overlay-action-icon {
|
|
315
|
+
flex-shrink: 0;
|
|
316
|
+
font-size: 14px;
|
|
317
|
+
margin-left: 6px;
|
|
318
|
+
}
|
|
319
|
+
.pfext-catalog-page__overlay-action-label {
|
|
320
|
+
overflow-x: hidden;
|
|
321
|
+
text-overflow: ellipsis;
|
|
322
|
+
}
|
|
323
|
+
.pfext-catalog-page__overlay-actions {
|
|
324
|
+
display: flex;
|
|
325
|
+
flex-wrap: wrap;
|
|
326
|
+
margin-bottom: var(--pf-v5-global--spacer--md);
|
|
327
|
+
white-space: normal;
|
|
328
|
+
}
|
|
329
|
+
.pfext-catalog-page__overlay-header {
|
|
330
|
+
margin-bottom: var(--pf-v5-global--spacer--md);
|
|
331
|
+
}
|
|
332
|
+
.pfext-catalog-page__overlay-body {
|
|
333
|
+
margin: 0;
|
|
334
|
+
padding-left: var(--pf-v5-global--spacer--lg);
|
|
335
|
+
padding-right: var(--pf-v5-global--spacer--lg);
|
|
336
|
+
padding-top: var(--pf-v5-global--spacer--md);
|
|
337
|
+
}
|
|
338
|
+
@media (min-width: 768px) {
|
|
339
|
+
.pfext-catalog-page__overlay-body {
|
|
340
|
+
display: flex;
|
|
341
|
+
}
|
|
342
|
+
}
|
|
343
|
+
.pfext-catalog-page__overlay-description {
|
|
344
|
+
margin: 20px 0 0;
|
|
345
|
+
white-space: pre-wrap;
|
|
346
|
+
}
|
|
347
|
+
.pfext-catalog-page__overlay-description h1,
|
|
348
|
+
.pfext-catalog-page__overlay-description h2,
|
|
349
|
+
.pfext-catalog-page__overlay-description h3 {
|
|
350
|
+
color: #333;
|
|
351
|
+
}
|
|
352
|
+
.pfext-catalog-page__overlay-description h2 {
|
|
353
|
+
font-size: 20px;
|
|
354
|
+
}
|
|
355
|
+
.pfext-catalog-page__overlay-description p,
|
|
356
|
+
.pfext-catalog-page__overlay-description li,
|
|
357
|
+
.pfext-catalog-page__overlay-description ol {
|
|
358
|
+
color: #333;
|
|
359
|
+
font-size: 14px !important;
|
|
360
|
+
}
|
|
361
|
+
@media (min-width: 768px) {
|
|
362
|
+
.pfext-catalog-page__overlay-description {
|
|
363
|
+
flex: 1 1 auto;
|
|
364
|
+
margin-left: 20px;
|
|
365
|
+
margin-top: 0;
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
|
+
.pfext-catalog-page__tabs {
|
|
369
|
+
flex: 0 0 220px;
|
|
370
|
+
margin: 0 15px 0 0;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
@media screen and (min-width: 768px) {
|
|
374
|
+
.pf-v5-c-modal-box.pfext-catalog-page__overlay {
|
|
375
|
+
width: 600px;
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
@media screen and (min-width: 992px) {
|
|
379
|
+
.pf-v5-c-modal-box.pfext-catalog-page__overlay {
|
|
380
|
+
width: 900px;
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
.pfext-catalog-tab__empty {
|
|
384
|
+
color: #72767b;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
.pfext-modal-ignore-warning {
|
|
388
|
+
height: initial;
|
|
389
|
+
}
|
|
390
|
+
.pfext-modal-ignore-warning__checkbox.checkbox {
|
|
391
|
+
margin-bottom: 0;
|
|
392
|
+
padding-top: 15px;
|
|
393
|
+
}
|
|
394
|
+
.pfext-modal-ignore-warning__content {
|
|
395
|
+
display: flex;
|
|
396
|
+
}
|
|
397
|
+
.pfext-modal-ignore-warning__icon {
|
|
398
|
+
font-size: 30px;
|
|
399
|
+
margin-right: 15px;
|
|
400
|
+
min-width: 30px;
|
|
401
|
+
}
|
|
402
|
+
.pfext-modal-ignore-warning__link {
|
|
403
|
+
display: block;
|
|
404
|
+
margin: 10px 0;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
.properties-side-panel-pf-property-label {
|
|
408
|
+
font-size: 13px;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
.properties-side-panel-pf-property-value__capability-level {
|
|
412
|
+
color: var(--pf-v5-global--Color--400);
|
|
413
|
+
margin-bottom: 5px;
|
|
414
|
+
position: relative;
|
|
415
|
+
}
|
|
416
|
+
.properties-side-panel-pf-property-value__capability-level--active {
|
|
417
|
+
color: inherit;
|
|
418
|
+
}
|
|
419
|
+
.properties-side-panel-pf-property-value__capability-level--active::before {
|
|
420
|
+
display: none;
|
|
421
|
+
}
|
|
422
|
+
.properties-side-panel-pf-property-value__capability-level::before {
|
|
423
|
+
border: 1px solid var(--pf-v5-global--Color--400);
|
|
424
|
+
border-radius: 10px;
|
|
425
|
+
content: "";
|
|
426
|
+
height: 14px;
|
|
427
|
+
left: -20px;
|
|
428
|
+
position: absolute;
|
|
429
|
+
top: 4px;
|
|
430
|
+
width: 14px;
|
|
431
|
+
}
|
|
432
|
+
.properties-side-panel-pf-property-value__capability-level:not(:last-child)::after {
|
|
433
|
+
background: var(--pf-v5-global--Color--400);
|
|
434
|
+
content: "";
|
|
435
|
+
height: 6px;
|
|
436
|
+
left: -13px;
|
|
437
|
+
position: absolute;
|
|
438
|
+
top: 21px;
|
|
439
|
+
width: 1px;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.properties-side-panel-pf-property-value__capability-level-icon {
|
|
443
|
+
left: -20px;
|
|
444
|
+
position: absolute;
|
|
445
|
+
top: 4px;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
.properties-side-panel-pf-property-value__capability-levels {
|
|
449
|
+
list-style: none;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.pfext-status-box {
|
|
453
|
+
padding: 40px 20px;
|
|
454
|
+
}
|
|
455
|
+
.pfext-status-box__loading-message {
|
|
456
|
+
margin-top: var(--pf-v5-global--spacer--sm);
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.pfext-status-box--loading {
|
|
460
|
+
align-items: center;
|
|
461
|
+
display: flex;
|
|
462
|
+
height: 100%;
|
|
463
|
+
justify-content: center;
|
|
464
|
+
min-height: 50px;
|
|
465
|
+
width: 100%;
|
|
466
|
+
flex-direction: column;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
.pfext-m-loader {
|
|
470
|
+
min-width: 18px;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.pfext-m-loader-dot__one,
|
|
474
|
+
.pfext-m-loader-dot__two,
|
|
475
|
+
.pfext-m-loader-dot__three {
|
|
476
|
+
animation-delay: 0;
|
|
477
|
+
animation-direction: normal;
|
|
478
|
+
animation-duration: 1s;
|
|
479
|
+
animation-fill-mode: forwards;
|
|
480
|
+
animation-iteration-count: infinite;
|
|
481
|
+
animation-name: bouncedelay;
|
|
482
|
+
animation-play-state: running;
|
|
483
|
+
animation-timing-function: ease-in-out;
|
|
484
|
+
background: #419eda;
|
|
485
|
+
border-radius: 100%;
|
|
486
|
+
display: inline-block;
|
|
487
|
+
height: 6px;
|
|
488
|
+
width: 6px;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
.pfext-m-loader-dot__one {
|
|
492
|
+
animation-delay: -0.32s;
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
.pfext-m-loader-dot__two {
|
|
496
|
+
animation-delay: -0.16s;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
@keyframes bouncedelay {
|
|
500
|
+
0%, 80%, 100% {
|
|
501
|
+
transform: scale(0.25, 0.25);
|
|
502
|
+
}
|
|
503
|
+
40% {
|
|
504
|
+
transform: scale(1, 1);
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
.pfext-page-layout__content {
|
|
508
|
+
padding: var(--pf-v5-global--spacer--lg);
|
|
509
|
+
flex: 1;
|
|
510
|
+
}
|
|
511
|
+
.pfext-page-layout__header {
|
|
512
|
+
padding-top: 1px;
|
|
513
|
+
background-color: var(--pf-v5-global--BackgroundColor--light-100);
|
|
514
|
+
}
|
|
515
|
+
.pfext-page-layout__hint {
|
|
516
|
+
padding-left: var(--pf-v5-global--spacer--lg);
|
|
517
|
+
padding-right: var(--pf-v5-global--spacer--lg);
|
|
518
|
+
padding-bottom: var(--pf-v5-global--spacer--md);
|
|
519
|
+
font-size: 14px;
|
|
520
|
+
}
|
|
521
|
+
.pfext-page-layout__title {
|
|
522
|
+
padding-left: var(--pf-v5-global--spacer--lg);
|
|
523
|
+
padding-right: var(--pf-v5-global--spacer--lg);
|
|
524
|
+
font-size: var(--pf-v5-global--FontSize--2xl);
|
|
525
|
+
margin-top: 23px;
|
|
526
|
+
margin-bottom: 11.5px;
|
|
527
|
+
font-family: var(--pf-v5-global--FontFamily--heading--sans-serif);
|
|
528
|
+
font-weight: var(--pf-v5-global--FontWeight--normal);
|
|
529
|
+
line-height: 1.1;
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
.pfext-markdown-view .pfext-code-block__pre {
|
|
533
|
+
/* override the styles applied by showdown while parsing <pre /> */
|
|
534
|
+
display: flex;
|
|
535
|
+
border: none;
|
|
536
|
+
border-radius: none;
|
|
537
|
+
background-color: transparent;
|
|
538
|
+
margin: 0;
|
|
539
|
+
padding: 0;
|
|
540
|
+
}
|
|
541
|
+
.pfext-markdown-view .pfext-markdown-execute-snippet__button > i.fa-check {
|
|
542
|
+
display: none;
|
|
543
|
+
}
|
|
544
|
+
.pfext-markdown-view .pfext-markdown-execute-snippet__button > i.fa-play {
|
|
545
|
+
display: inline;
|
|
546
|
+
}
|
|
547
|
+
.pfext-markdown-view .pfext-markdown-execute-snippet__button[data-executed] > i.fa-check {
|
|
548
|
+
display: inline;
|
|
549
|
+
}
|
|
550
|
+
.pfext-markdown-view .pfext-markdown-execute-snippet__button[data-executed] > i.fa-play {
|
|
551
|
+
display: none;
|
|
552
|
+
}
|
|
553
|
+
.pfext-markdown-view .pfext-markdown-admonition.pf-v5-c-alert {
|
|
554
|
+
margin: var(--pf-v5-global--spacer--md) 0;
|
|
555
|
+
}
|
|
556
|
+
.pfext-markdown-view .pfext-markdown-admonition.pf-v5-c-alert .pf-v5-c-alert__title {
|
|
557
|
+
margin-top: 0;
|
|
558
|
+
margin-bottom: 0;
|
|
559
|
+
font-weight: var(--pf-v5-c-alert__title--FontWeight);
|
|
560
|
+
font-family: inherit;
|
|
561
|
+
line-height: inherit;
|
|
562
|
+
color: var(--pf-v5-c-alert__title--Color);
|
|
563
|
+
word-break: break-word;
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
.pfext-modal {
|
|
567
|
+
position: absolute !important;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
@keyframes pfext-spotlight-expand {
|
|
571
|
+
0% {
|
|
572
|
+
outline-offset: -4px;
|
|
573
|
+
outline-width: 4px;
|
|
574
|
+
opacity: 1;
|
|
575
|
+
}
|
|
576
|
+
100% {
|
|
577
|
+
outline-offset: 21px;
|
|
578
|
+
outline-width: 12px;
|
|
579
|
+
opacity: 0;
|
|
580
|
+
}
|
|
581
|
+
}
|
|
582
|
+
@keyframes pfext-spotlight-fade-in {
|
|
583
|
+
0% {
|
|
584
|
+
opacity: 0;
|
|
585
|
+
}
|
|
586
|
+
100% {
|
|
587
|
+
opacity: 1;
|
|
588
|
+
}
|
|
589
|
+
}
|
|
590
|
+
@keyframes pfext-spotlight-fade-out {
|
|
591
|
+
0% {
|
|
592
|
+
opacity: 1;
|
|
593
|
+
}
|
|
594
|
+
100% {
|
|
595
|
+
opacity: 0;
|
|
596
|
+
}
|
|
597
|
+
}
|
|
598
|
+
.pfext-spotlight {
|
|
599
|
+
pointer-events: none;
|
|
600
|
+
position: absolute;
|
|
601
|
+
}
|
|
602
|
+
.pfext-spotlight__with-backdrop {
|
|
603
|
+
mix-blend-mode: hard-light;
|
|
604
|
+
}
|
|
605
|
+
.pfext-spotlight__element-highlight-noanimate {
|
|
606
|
+
border: var(--pf-v5-global--BorderWidth--xl) solid var(--pf-v5-global--palette--blue-200);
|
|
607
|
+
background-color: var(--pf-v5-global--palette--black-500);
|
|
608
|
+
z-index: 9999;
|
|
609
|
+
}
|
|
610
|
+
.pfext-spotlight__element-highlight-animate {
|
|
611
|
+
pointer-events: none;
|
|
612
|
+
position: absolute;
|
|
613
|
+
box-shadow: inset 0px 0px 0px 4px var(--pf-v5-global--palette--blue-200);
|
|
614
|
+
opacity: 0;
|
|
615
|
+
animation: 0.4s pfext-spotlight-fade-in 0s ease-in-out, 5s pfext-spotlight-fade-out 12.8s ease-in-out;
|
|
616
|
+
animation-fill-mode: forwards;
|
|
617
|
+
}
|
|
618
|
+
.pfext-spotlight__element-highlight-animate::after {
|
|
619
|
+
content: "";
|
|
620
|
+
position: absolute;
|
|
621
|
+
left: 0;
|
|
622
|
+
right: 0;
|
|
623
|
+
top: 0;
|
|
624
|
+
bottom: 0;
|
|
625
|
+
animation: 1.2s pfext-spotlight-expand 1.6s ease-out;
|
|
626
|
+
animation-fill-mode: forwards;
|
|
627
|
+
outline: 4px solid var(--pf-v5-global--palette--blue-200);
|
|
628
|
+
outline-offset: -4px;
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
.pfext-markdown-view h1, .pfext-markdown-view h2, .pfext-markdown-view h3, .pfext-markdown-view h4, .pfext-markdown-view h5, .pfext-markdown-view h6,
|
|
632
|
+
.pfext-markdown-view .h1, .pfext-markdown-view .h2, .pfext-markdown-view .h3, .pfext-markdown-view .h4, .pfext-markdown-view .h5, .pfext-markdown-view .h6 {
|
|
633
|
+
font-family: var(--pf-v5-global--FontFamily--heading--sans-serif);
|
|
634
|
+
font-weight: var(--pf-v5-global--FontWeight--normal);
|
|
635
|
+
line-height: 1.1;
|
|
636
|
+
color: inherit;
|
|
637
|
+
}
|
|
638
|
+
.pfext-markdown-view h1, .pfext-markdown-view .h1,
|
|
639
|
+
.pfext-markdown-view h2, .pfext-markdown-view .h2,
|
|
640
|
+
.pfext-markdown-view h3, .pfext-markdown-view .h3 {
|
|
641
|
+
margin-top: 23px;
|
|
642
|
+
margin-bottom: 11.5px;
|
|
643
|
+
}
|
|
644
|
+
.pfext-markdown-view h4, .pfext-markdown-view .h4,
|
|
645
|
+
.pfext-markdown-view h5, .pfext-markdown-view .h5,
|
|
646
|
+
.pfext-markdown-view h6, .pfext-markdown-view .h6 {
|
|
647
|
+
margin-top: 11.5px;
|
|
648
|
+
margin-bottom: 11.5px;
|
|
649
|
+
}
|
|
650
|
+
.pfext-markdown-view h1, .pfext-markdown-view .h1 {
|
|
651
|
+
font-size: var(--pf-v5-global--FontSize--2xl);
|
|
652
|
+
}
|
|
653
|
+
.pfext-markdown-view h2, .pfext-markdown-view .h2 {
|
|
654
|
+
font-size: 20px;
|
|
655
|
+
}
|
|
656
|
+
.pfext-markdown-view h3, .pfext-markdown-view .h3 {
|
|
657
|
+
font-size: var(--pf-v5-global--FontSize--lg);
|
|
658
|
+
}
|
|
659
|
+
.pfext-markdown-view h4, .pfext-markdown-view .h4 {
|
|
660
|
+
font-size: var(--pf-v5-global--FontSize--md);
|
|
661
|
+
}
|
|
662
|
+
.pfext-markdown-view h5, .pfext-markdown-view .h5 {
|
|
663
|
+
font-size: var(--pf-v5-global--FontSize--md);
|
|
664
|
+
}
|
|
665
|
+
.pfext-markdown-view h6, .pfext-markdown-view .h6 {
|
|
666
|
+
font-size: var(--pf-v5-global--FontSize--md);
|
|
667
|
+
}
|
|
668
|
+
.pfext-markdown-view p {
|
|
669
|
+
margin: 0 0 11.5px;
|
|
670
|
+
}
|
|
671
|
+
.pfext-markdown-view ul,
|
|
672
|
+
.pfext-markdown-view ol {
|
|
673
|
+
margin-top: 0;
|
|
674
|
+
margin-bottom: 11.5px;
|
|
675
|
+
}
|
|
676
|
+
.pfext-markdown-view ul ul,
|
|
677
|
+
.pfext-markdown-view ul ol,
|
|
678
|
+
.pfext-markdown-view ol ul,
|
|
679
|
+
.pfext-markdown-view ol ol {
|
|
680
|
+
margin-bottom: 0;
|
|
681
|
+
}
|
|
682
|
+
.pfext-markdown-view dl {
|
|
683
|
+
margin-top: 0;
|
|
684
|
+
margin-bottom: 23px;
|
|
685
|
+
}
|
|
686
|
+
.pfext-markdown-view dt,
|
|
687
|
+
.pfext-markdown-view dd {
|
|
688
|
+
line-height: 1.66666667;
|
|
689
|
+
}
|
|
690
|
+
.pfext-markdown-view dt {
|
|
691
|
+
font-weight: 700;
|
|
692
|
+
}
|
|
693
|
+
.pfext-markdown-view dd {
|
|
694
|
+
margin-left: 0;
|
|
695
|
+
}
|
|
696
|
+
.pfext-markdown-view blockquote {
|
|
697
|
+
padding: 11.5px 23px;
|
|
698
|
+
margin: 0 0 23px;
|
|
699
|
+
font-size: 17.5px;
|
|
700
|
+
border-left: 5px solid #f1f1f1;
|
|
701
|
+
}
|
|
702
|
+
.pfext-markdown-view blockquote p:last-child,
|
|
703
|
+
.pfext-markdown-view blockquote ul:last-child,
|
|
704
|
+
.pfext-markdown-view blockquote ol:last-child {
|
|
705
|
+
margin-bottom: 0;
|
|
706
|
+
}
|
|
707
|
+
.pfext-markdown-view code,
|
|
708
|
+
.pfext-markdown-view pre {
|
|
709
|
+
font-family: Menlo, Monaco, Consolas, monospace;
|
|
710
|
+
}
|
|
711
|
+
.pfext-markdown-view code {
|
|
712
|
+
padding: 2px 4px;
|
|
713
|
+
font-size: 90%;
|
|
714
|
+
color: #004368;
|
|
715
|
+
background-color: #def3ff;
|
|
716
|
+
border-radius: 1px;
|
|
717
|
+
}
|
|
718
|
+
.pfext-markdown-view pre {
|
|
719
|
+
display: block;
|
|
720
|
+
padding: 11px;
|
|
721
|
+
margin: 0 0 11.5px;
|
|
722
|
+
font-size: 13px;
|
|
723
|
+
line-height: 1.66666667;
|
|
724
|
+
color: #363636;
|
|
725
|
+
word-break: break-all;
|
|
726
|
+
word-wrap: break-word;
|
|
727
|
+
background-color: #fafafa;
|
|
728
|
+
border: 1px solid #ccc;
|
|
729
|
+
border-radius: 1px;
|
|
730
|
+
}
|
|
731
|
+
.pfext-markdown-view pre code {
|
|
732
|
+
padding: 0;
|
|
733
|
+
font-size: inherit;
|
|
734
|
+
color: inherit;
|
|
735
|
+
white-space: pre-wrap;
|
|
736
|
+
background-color: transparent;
|
|
737
|
+
border-radius: 0;
|
|
738
|
+
}
|
|
739
|
+
.pfext-markdown-view table {
|
|
740
|
+
background-color: transparent;
|
|
741
|
+
}
|
|
742
|
+
.pfext-markdown-view table col[class*=col-] {
|
|
743
|
+
position: static;
|
|
744
|
+
display: table-column;
|
|
745
|
+
float: none;
|
|
746
|
+
}
|
|
747
|
+
.pfext-markdown-view table td[class*=col-],
|
|
748
|
+
.pfext-markdown-view table th[class*=col-] {
|
|
749
|
+
position: static;
|
|
750
|
+
display: table-cell;
|
|
751
|
+
float: none;
|
|
752
|
+
}
|
|
753
|
+
.pfext-markdown-view caption {
|
|
754
|
+
padding-top: 10px;
|
|
755
|
+
padding-bottom: 10px;
|
|
756
|
+
color: #9c9c9c;
|
|
757
|
+
text-align: left;
|
|
758
|
+
}
|
|
759
|
+
.pfext-markdown-view th {
|
|
760
|
+
text-align: left;
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
.pfext-quick-start-drawer__body {
|
|
764
|
+
display: flex;
|
|
765
|
+
flex-direction: column;
|
|
766
|
+
z-index: 0;
|
|
767
|
+
position: relative;
|
|
768
|
+
}
|
|
769
|
+
.pfext-quick-start-drawer__modal > .pf-v5-c-modal-box__footer {
|
|
770
|
+
display: block;
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
.pfext-quick-start-panel-content__header {
|
|
774
|
+
position: sticky;
|
|
775
|
+
top: 0px;
|
|
776
|
+
background: inherit;
|
|
777
|
+
z-index: var(--pf-v5-global--ZIndex--xs);
|
|
778
|
+
}
|
|
779
|
+
.pfext-quick-start-panel-content__header__shadow {
|
|
780
|
+
box-shadow: var(--pf-v5-global--BoxShadow--sm-bottom);
|
|
781
|
+
}
|
|
782
|
+
.pfext-quick-start-panel-content__header--blue-white {
|
|
783
|
+
background-color: var(--pf-v5-global--palette--blue-400);
|
|
784
|
+
}
|
|
785
|
+
.pfext-quick-start-panel-content__header--blue-white .pfext-quick-start-panel-content__title {
|
|
786
|
+
color: var(--pf-v5-global--Color--light-100);
|
|
787
|
+
}
|
|
788
|
+
.pfext-quick-start-panel-content__header--blue-white .pfext-quick-start-panel-content__duration {
|
|
789
|
+
color: var(--pf-v5-global--Color--light-200);
|
|
790
|
+
}
|
|
791
|
+
.pfext-quick-start-panel-content__header--blue-white .pfext-quick-start-panel-content__close-button button {
|
|
792
|
+
color: var(--pf-v5-global--Color--light-100) !important;
|
|
793
|
+
}
|
|
794
|
+
.pfext-quick-start-panel-content__body {
|
|
795
|
+
display: flex;
|
|
796
|
+
flex-direction: column;
|
|
797
|
+
}
|
|
798
|
+
.pfext-quick-start-panel-content__title {
|
|
799
|
+
display: flex;
|
|
800
|
+
align-items: center;
|
|
801
|
+
flex-wrap: wrap;
|
|
802
|
+
}
|
|
803
|
+
.pfext-quick-start-panel-content__duration {
|
|
804
|
+
display: inline-block;
|
|
805
|
+
font-size: var(--pf-v5-global--FontSize--md);
|
|
806
|
+
font-weight: 400;
|
|
807
|
+
line-height: 1;
|
|
808
|
+
color: #9c9c9c;
|
|
809
|
+
}
|
|
810
|
+
.pfext-quick-start-panel-content__footer__shadow {
|
|
811
|
+
box-shadow: var(--pf-v5-global--BoxShadow--sm-top);
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
.pfext-quick-start-catalog__gallery {
|
|
815
|
+
--pf-v5-l-gallery--GridTemplateColumns: repeat(auto-fill, 300px) !important;
|
|
816
|
+
}
|
|
817
|
+
.pfext-quick-start-catalog__gallery-item {
|
|
818
|
+
display: inherit !important;
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
.pfext-quick-start-tile-description {
|
|
822
|
+
display: -webkit-box;
|
|
823
|
+
overflow: hidden;
|
|
824
|
+
-webkit-box-orient: vertical;
|
|
825
|
+
-webkit-line-clamp: 3;
|
|
826
|
+
}
|
|
827
|
+
.pfext-quick-start-tile-description p {
|
|
828
|
+
margin: 0 0 11.5px;
|
|
829
|
+
}
|
|
830
|
+
.pfext-quick-start-tile-prerequisites {
|
|
831
|
+
display: inline-flex;
|
|
832
|
+
}
|
|
833
|
+
.pfext-quick-start-tile-prerequisites__text {
|
|
834
|
+
margin-right: var(--pf-v5-global--spacer--sm);
|
|
835
|
+
font-size: var(--pf-v5-global--FontSize--md);
|
|
836
|
+
margin-top: 11.5px;
|
|
837
|
+
margin-bottom: 11.5px;
|
|
838
|
+
font-family: var(--pf-v5-global--FontFamily--heading--sans-serif);
|
|
839
|
+
font-weight: var(--pf-v5-global--FontWeight--normal);
|
|
840
|
+
line-height: 1.1;
|
|
841
|
+
}
|
|
842
|
+
.pfext-quick-start-tile-prerequisites-list {
|
|
843
|
+
padding-left: 20px;
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
.pfext-quick-start-tile-header__status {
|
|
847
|
+
margin: var(--pf-v5-global--spacer--sm) 0;
|
|
848
|
+
}
|
|
849
|
+
.pfext-quick-start-tile-header--margin {
|
|
850
|
+
margin-right: var(--pf-v5-global--spacer--sm);
|
|
851
|
+
margin-bottom: var(--pf-v5-global--spacer--sm);
|
|
852
|
+
}
|
|
853
|
+
.pfext-quick-start-tile-header .pf-v5-c-badge:not(:last-of-type) {
|
|
854
|
+
margin-right: var(--pf-v5-global--spacer--sm);
|
|
855
|
+
}
|
|
856
|
+
.pfext-quick-start-tile-header h3 {
|
|
857
|
+
flex: 1;
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
.pfext-quick-start-tile {
|
|
861
|
+
height: 100%;
|
|
862
|
+
}
|
|
863
|
+
.pfext-quick-start-tile .catalog-tile-pf-description .has-footer {
|
|
864
|
+
display: block;
|
|
865
|
+
-webkit-line-clamp: unset;
|
|
866
|
+
}
|
|
867
|
+
.pfext-quick-start-tile .catalog-tile-pf-icon {
|
|
868
|
+
display: flex;
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
.pfext-quick-start-catalog-filter__input {
|
|
872
|
+
flex-grow: 1;
|
|
873
|
+
max-width: 500px;
|
|
874
|
+
}
|
|
875
|
+
.pfext-quick-start-catalog-filter__count {
|
|
876
|
+
font-weight: var(--pf-v5-global--FontWeight--bold);
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
.pf-v5-c-toolbar.pf-m-page-insets.pfext-quick-start-catalog-filter__flex {
|
|
880
|
+
--pf-v5-c-toolbar--PaddingBottom: var(--pf-v5-global--spacer--sm);
|
|
881
|
+
--pf-v5-c-toolbar--PaddingTop: var(--pf-v5-global--spacer--sm);
|
|
882
|
+
--pf-v5-c-toolbar--RowGap: 0;
|
|
883
|
+
font-size: 14px;
|
|
884
|
+
}
|
|
885
|
+
.pf-v5-c-toolbar.pf-m-page-insets.pfext-quick-start-catalog-filter__flex .pf-v5-c-select {
|
|
886
|
+
--pf-v5-c-select__toggle--FontSize: 14px;
|
|
887
|
+
}
|
|
888
|
+
.pf-v5-c-toolbar.pf-m-page-insets.pfext-quick-start-catalog-filter__flex .pf-v5-c-check {
|
|
889
|
+
--pf-v5-c-check__label--FontSize: 14px;
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
.pfext-markdown-view.is-empty {
|
|
893
|
+
color: #999;
|
|
894
|
+
}
|
|
895
|
+
.pfext-markdown-view table {
|
|
896
|
+
display: block;
|
|
897
|
+
margin-bottom: 11.5px;
|
|
898
|
+
overflow-x: auto;
|
|
899
|
+
}
|
|
900
|
+
.pfext-markdown-view td,
|
|
901
|
+
.pfext-markdown-view th {
|
|
902
|
+
border-bottom: 1px solid #ededed;
|
|
903
|
+
padding: 10px;
|
|
904
|
+
vertical-align: top;
|
|
905
|
+
}
|
|
906
|
+
.pfext-markdown-view th {
|
|
907
|
+
padding-top: 0;
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
.pfext-quick-start-footer {
|
|
911
|
+
background-color: var(--pf-v5-global--BackgroundColor--100);
|
|
912
|
+
flex: 0 0 auto;
|
|
913
|
+
padding: var(--pf-v5-global--spacer--md) var(--pf-v5-global--spacer--lg);
|
|
914
|
+
}
|
|
915
|
+
.pfext-quick-start-footer__actionbtn {
|
|
916
|
+
margin-right: var(--pf-v5-global--spacer--md);
|
|
917
|
+
}
|
|
918
|
+
.pfext-quick-start-footer__restartbtn {
|
|
919
|
+
float: right;
|
|
920
|
+
}
|
|
921
|
+
|
|
922
|
+
.pfext-quick-start-content {
|
|
923
|
+
flex: 1 1 0;
|
|
924
|
+
overflow: auto;
|
|
925
|
+
padding: var(--pf-v5-global--spacer--lg);
|
|
926
|
+
font-size: 16px;
|
|
927
|
+
}
|
|
928
|
+
.pfext-quick-start-content .pf-v5-c-alert__description p {
|
|
929
|
+
font-size: 13px;
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
.pfext-quick-start-tasks__list button::before {
|
|
933
|
+
content: none;
|
|
934
|
+
}
|
|
935
|
+
.pfext-quick-start-tasks__list li.pf-v5-c-wizard__nav-item {
|
|
936
|
+
list-style-type: none;
|
|
937
|
+
display: flex;
|
|
938
|
+
flex-wrap: wrap;
|
|
939
|
+
align-items: center;
|
|
940
|
+
margin-bottom: var(--pf-v5-global--spacer--xs);
|
|
941
|
+
}
|
|
942
|
+
.pfext-quick-start-tasks__list .pfext-quick-start-task__content {
|
|
943
|
+
margin-bottom: var(--pf-v5-global--spacer--md);
|
|
944
|
+
}
|
|
945
|
+
.pfext-quick-start-tasks__list .task-pflist-title {
|
|
946
|
+
font-size: 14px !important;
|
|
947
|
+
margin-bottom: 6px;
|
|
948
|
+
}
|
|
949
|
+
.pfext-quick-start-tasks__list .task-pflist-subtitle {
|
|
950
|
+
color: var(--pf-v5-global--Color--200);
|
|
951
|
+
font-size: 16px;
|
|
952
|
+
}
|
|
953
|
+
.pfext-quick-start-tasks__list .task-pflist-list {
|
|
954
|
+
font-size: 16px;
|
|
955
|
+
}
|
|
956
|
+
.pfext-quick-start-tasks__list .task-pflist-list--prereq {
|
|
957
|
+
padding-left: var(--pf-v5-global--spacer--lg);
|
|
958
|
+
}
|
|
959
|
+
.pfext-quick-start-tasks__list .task-pflist-list--prereq li + li {
|
|
960
|
+
margin-top: 4px;
|
|
961
|
+
}
|
|
962
|
+
.pfext-quick-start-tasks__list .task-pflist-list--proc {
|
|
963
|
+
padding-left: 10px;
|
|
964
|
+
}
|
|
965
|
+
.pfext-quick-start-tasks__list .task-pflist-list--proc li + li {
|
|
966
|
+
margin-top: 16px;
|
|
967
|
+
}
|
|
968
|
+
.pfext-quick-start-tasks__list .task-pflist-list__item--prereq::marker {
|
|
969
|
+
font-size: 0.8rem;
|
|
970
|
+
}
|
|
971
|
+
.pfext-quick-start-tasks__list .task-pflist-list__item--prereq .task-pflist-list__item__content {
|
|
972
|
+
position: relative;
|
|
973
|
+
left: 2px;
|
|
974
|
+
}
|
|
975
|
+
.pfext-quick-start-tasks__list .task-pflist-list__item--proc {
|
|
976
|
+
font-size: 14px;
|
|
977
|
+
}
|
|
978
|
+
.pfext-quick-start-tasks__list .task-pflist-list__item--proc .task-pflist-list__item__content {
|
|
979
|
+
position: relative;
|
|
980
|
+
left: 4px;
|
|
981
|
+
}
|
|
982
|
+
.pfext-quick-start-tasks__list .task-pflist-list__item__content .pf-v5-c-alert {
|
|
983
|
+
margin: var(--pf-v5-global--spacer--md) 0;
|
|
984
|
+
}
|
|
985
|
+
.pfext-quick-start-tasks__list .task-pflist-list__item__content .pf-v5-c-alert__title {
|
|
986
|
+
margin-top: 0;
|
|
987
|
+
margin-bottom: 0;
|
|
988
|
+
font-weight: var(--pf-v5-c-alert__title--FontWeight);
|
|
989
|
+
font-family: inherit;
|
|
990
|
+
line-height: inherit;
|
|
991
|
+
color: var(--pf-v5-c-alert__title--Color);
|
|
992
|
+
word-break: break-word;
|
|
993
|
+
}
|
|
994
|
+
.pfext-quick-start-tasks__list .task-pflist-list__item__content .task-pflist-list__item__content__note {
|
|
995
|
+
background-color: var(--pf-v5-global--palette--blue-50);
|
|
996
|
+
border-color: var(--pf-v5-global--active-color--200);
|
|
997
|
+
margin: var(--pf-v5-global--spacer--md) 0;
|
|
998
|
+
}
|
|
999
|
+
.pfext-quick-start-tasks__list .task-pflist-list__item__content .task-pflist-list__item__content__note__body {
|
|
1000
|
+
font-size: 14px;
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
.pfext-quick-start-intro__prereq {
|
|
1004
|
+
margin-bottom: var(--pf-v5-global--spacer--md);
|
|
1005
|
+
}
|
|
1006
|
+
.pfext-quick-start-intro__prereq .pf-v5-c-expandable-section__content {
|
|
1007
|
+
margin-top: var(--pf-v5-global--spacer--sm);
|
|
1008
|
+
}
|
|
1009
|
+
.pfext-quick-start-intro__prereq .pf-v5-c-expandable-section__toggle {
|
|
1010
|
+
padding-top: 0;
|
|
1011
|
+
padding-bottom: 0;
|
|
1012
|
+
}
|
|
1013
|
+
.pfext-quick-start-intro__prereq .pf-v5-c-expandable-section__toggle-text {
|
|
1014
|
+
margin-left: var(--pf-v5-global--spacer--sm);
|
|
1015
|
+
}
|
|
1016
|
+
.pfext-quick-start-intro__prereq .pf-v5-c-expandable-section__toggle-icon {
|
|
1017
|
+
color: var(--pf-v5-c-expandable-section__toggle--Color);
|
|
1018
|
+
}
|
|
1019
|
+
.pfext-quick-start-intro__prereq .pf-v5-c-expandable-section__toggle-icon:focus, .pfext-quick-start-intro__prereq .pf-v5-c-expandable-section__toggle-icon:hover {
|
|
1020
|
+
--pf-v5-c-expandable-section__toggle--Color: var(--pf-v5-c-expandable-section__toggle--focus--Color);
|
|
1021
|
+
}
|
|
1022
|
+
.pfext-quick-start-intro__prereq-list {
|
|
1023
|
+
padding-left: 20px;
|
|
1024
|
+
}
|
|
1025
|
+
.pfext-quick-start-intro__prereq-list__item::marker {
|
|
1026
|
+
font-size: 0.8rem;
|
|
1027
|
+
}
|
|
1028
|
+
.pfext-quick-start-intro__prereq-list__item-content {
|
|
1029
|
+
position: relative;
|
|
1030
|
+
left: 2px;
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
.pfext-quick-start-task-review-alert {
|
|
1034
|
+
margin: var(--pf-v5-global--spacer--lg) 0;
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
.pfext-quick-start-task-review {
|
|
1038
|
+
font-size: var(--pf-v5-global--FontSize--md);
|
|
1039
|
+
line-height: var(--pf-v5-global--FontSize--xl);
|
|
1040
|
+
font-family: var(--pf-v5-global--FontFamily--heading--sans-serif);
|
|
1041
|
+
}
|
|
1042
|
+
.pfext-quick-start-task-review__actions {
|
|
1043
|
+
display: flex;
|
|
1044
|
+
align-items: flex-start;
|
|
1045
|
+
margin-bottom: var(--pf-v5-global--spacer--sm);
|
|
1046
|
+
}
|
|
1047
|
+
.pfext-quick-start-task-review__actions input[type=radio] {
|
|
1048
|
+
margin-top: 0;
|
|
1049
|
+
margin-right: 0;
|
|
1050
|
+
}
|
|
1051
|
+
.pfext-quick-start-task-review__radio {
|
|
1052
|
+
margin-right: var(--pf-v5-global--spacer--xl) !important;
|
|
1053
|
+
}
|
|
1054
|
+
.pfext-quick-start-task-review--success {
|
|
1055
|
+
color: var(--pf-v5-global--success-color--100) !important;
|
|
1056
|
+
}
|
|
1057
|
+
.pfext-quick-start-task-review--failed {
|
|
1058
|
+
color: var(--pf-chart-global--danger--Color--100);
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
.pfext-quick-start-task-header__list {
|
|
1062
|
+
padding: 0 !important;
|
|
1063
|
+
}
|
|
1064
|
+
.pfext-quick-start-task-header__list button::before {
|
|
1065
|
+
content: none;
|
|
1066
|
+
}
|
|
1067
|
+
.pfext-quick-start-task-header__list li {
|
|
1068
|
+
list-style-type: none;
|
|
1069
|
+
display: flex;
|
|
1070
|
+
flex-wrap: wrap;
|
|
1071
|
+
align-items: center;
|
|
1072
|
+
margin-bottom: var(--pf-v5-global--spacer--xs);
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
.pfext-quick-start-task-header {
|
|
1076
|
+
margin-bottom: var(--pf-v5-global--spacer--sm);
|
|
1077
|
+
display: grid;
|
|
1078
|
+
grid-template-columns: min-content auto;
|
|
1079
|
+
font-size: var(--pf-v5-global--FontSize--md);
|
|
1080
|
+
}
|
|
1081
|
+
.pfext-quick-start-task-header button::before {
|
|
1082
|
+
content: none;
|
|
1083
|
+
}
|
|
1084
|
+
.pfext-quick-start-task-header__title {
|
|
1085
|
+
color: var(--pf-v5-global--primary-color--100) !important;
|
|
1086
|
+
margin-right: var(--pf-v5-global--spacer--md) !important;
|
|
1087
|
+
}
|
|
1088
|
+
.pfext-quick-start-task-header__subtitle {
|
|
1089
|
+
font-size: var(--pf-v5-global--FontSize--sm);
|
|
1090
|
+
color: var(--pf-v5-global--Color--dark-200) !important;
|
|
1091
|
+
}
|
|
1092
|
+
.pfext-quick-start-task-header__tryagain {
|
|
1093
|
+
display: block;
|
|
1094
|
+
font-size: var(--pf-v5-global--FontSize--md);
|
|
1095
|
+
color: var(--pf-v5-global--Color--300) !important;
|
|
1096
|
+
}
|
|
1097
|
+
.pfext-quick-start-task-header__title-success {
|
|
1098
|
+
color: var(--pf-v5-global--success-color--100) !important;
|
|
1099
|
+
}
|
|
1100
|
+
.pfext-quick-start-task-header__title-failed {
|
|
1101
|
+
color: var(--pf-v5-global--danger-color--100) !important;
|
|
1102
|
+
}
|
|
1103
|
+
.pfext-quick-start-task-header__task-icon-init {
|
|
1104
|
+
background-color: var(--pf-v5-global--primary-color--100);
|
|
1105
|
+
border-radius: var(--pf-v5-global--BorderRadius--lg);
|
|
1106
|
+
color: var(--pf-v5-global--Color--light-100);
|
|
1107
|
+
display: inline-flex;
|
|
1108
|
+
justify-content: center;
|
|
1109
|
+
height: 1.5em;
|
|
1110
|
+
width: 1.5em;
|
|
1111
|
+
}
|
|
1112
|
+
.pfext-quick-start-task-header__task-icon-success, .pfext-quick-start-task-header__task-icon-failed {
|
|
1113
|
+
vertical-align: middle !important;
|
|
1114
|
+
}
|
|
1115
|
+
.pfext-quick-start-task-header__task-icon-success {
|
|
1116
|
+
color: var(--pf-v5-global--success-color--100) !important;
|
|
1117
|
+
}
|
|
1118
|
+
.pfext-quick-start-task-header__task-icon-failed {
|
|
1119
|
+
color: var(--pf-v5-global--danger-color--100) !important;
|
|
1120
|
+
}
|
|
1121
|
+
|
|
1122
|
+
.pfext-markdown-view .pfext-code-block__pre {
|
|
1123
|
+
/* override the styles applied by showdown while parsing <pre /> */
|
|
1124
|
+
display: flex;
|
|
1125
|
+
border: none;
|
|
1126
|
+
border-radius: none;
|
|
1127
|
+
background-color: transparent;
|
|
1128
|
+
margin: 0;
|
|
1129
|
+
padding: 0;
|
|
1130
|
+
}
|
|
1131
|
+
.pfext-markdown-view .pfext-markdown-execute-snippet__button > i.fa-check {
|
|
1132
|
+
display: none;
|
|
1133
|
+
}
|
|
1134
|
+
.pfext-markdown-view .pfext-markdown-execute-snippet__button > i.fa-play {
|
|
1135
|
+
display: inline;
|
|
1136
|
+
}
|
|
1137
|
+
.pfext-markdown-view .pfext-markdown-execute-snippet__button[data-executed] > i.fa-check {
|
|
1138
|
+
display: inline;
|
|
1139
|
+
}
|
|
1140
|
+
.pfext-markdown-view .pfext-markdown-execute-snippet__button[data-executed] > i.fa-play {
|
|
1141
|
+
display: none;
|
|
1142
|
+
}
|
|
1143
|
+
.pfext-markdown-view .pfext-markdown-admonition.pf-v5-c-alert {
|
|
1144
|
+
margin: var(--pf-v5-global--spacer--md) 0;
|
|
1145
|
+
}
|
|
1146
|
+
.pfext-markdown-view .pfext-markdown-admonition.pf-v5-c-alert .pf-v5-c-alert__title {
|
|
1147
|
+
margin-top: 0;
|
|
1148
|
+
margin-bottom: 0;
|
|
1149
|
+
font-weight: var(--pf-v5-c-alert__title--FontWeight);
|
|
1150
|
+
font-family: inherit;
|
|
1151
|
+
line-height: inherit;
|
|
1152
|
+
color: var(--pf-v5-c-alert__title--Color);
|
|
1153
|
+
word-break: break-word;
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
.pfext-modal {
|
|
1157
|
+
position: absolute !important;
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1160
|
+
@keyframes pfext-spotlight-expand {
|
|
1161
|
+
0% {
|
|
1162
|
+
outline-offset: -4px;
|
|
1163
|
+
outline-width: 4px;
|
|
1164
|
+
opacity: 1;
|
|
1165
|
+
}
|
|
1166
|
+
100% {
|
|
1167
|
+
outline-offset: 21px;
|
|
1168
|
+
outline-width: 12px;
|
|
1169
|
+
opacity: 0;
|
|
1170
|
+
}
|
|
1171
|
+
}
|
|
1172
|
+
@keyframes pfext-spotlight-fade-in {
|
|
1173
|
+
0% {
|
|
1174
|
+
opacity: 0;
|
|
1175
|
+
}
|
|
1176
|
+
100% {
|
|
1177
|
+
opacity: 1;
|
|
1178
|
+
}
|
|
1179
|
+
}
|
|
1180
|
+
@keyframes pfext-spotlight-fade-out {
|
|
1181
|
+
0% {
|
|
1182
|
+
opacity: 1;
|
|
1183
|
+
}
|
|
1184
|
+
100% {
|
|
1185
|
+
opacity: 0;
|
|
1186
|
+
}
|
|
1187
|
+
}
|
|
1188
|
+
.pfext-spotlight {
|
|
1189
|
+
pointer-events: none;
|
|
1190
|
+
position: absolute;
|
|
1191
|
+
}
|
|
1192
|
+
.pfext-spotlight__with-backdrop {
|
|
1193
|
+
mix-blend-mode: hard-light;
|
|
1194
|
+
}
|
|
1195
|
+
.pfext-spotlight__element-highlight-noanimate {
|
|
1196
|
+
border: var(--pf-v5-global--BorderWidth--xl) solid var(--pf-v5-global--palette--blue-200);
|
|
1197
|
+
background-color: var(--pf-v5-global--palette--black-500);
|
|
1198
|
+
z-index: 9999;
|
|
1199
|
+
}
|
|
1200
|
+
.pfext-spotlight__element-highlight-animate {
|
|
1201
|
+
pointer-events: none;
|
|
1202
|
+
position: absolute;
|
|
1203
|
+
box-shadow: inset 0px 0px 0px 4px var(--pf-v5-global--palette--blue-200);
|
|
1204
|
+
opacity: 0;
|
|
1205
|
+
animation: 0.4s pfext-spotlight-fade-in 0s ease-in-out, 5s pfext-spotlight-fade-out 12.8s ease-in-out;
|
|
1206
|
+
animation-fill-mode: forwards;
|
|
1207
|
+
}
|
|
1208
|
+
.pfext-spotlight__element-highlight-animate::after {
|
|
1209
|
+
content: "";
|
|
1210
|
+
position: absolute;
|
|
1211
|
+
left: 0;
|
|
1212
|
+
right: 0;
|
|
1213
|
+
top: 0;
|
|
1214
|
+
bottom: 0;
|
|
1215
|
+
animation: 1.2s pfext-spotlight-expand 1.6s ease-out;
|
|
1216
|
+
animation-fill-mode: forwards;
|
|
1217
|
+
outline: 4px solid var(--pf-v5-global--palette--blue-200);
|
|
1218
|
+
outline-offset: -4px;
|
|
1219
|
+
}
|