@patternfly/quickstarts 6.1.0-prerelease.3 → 6.1.0-prerelease.4
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/index.es.js +2 -3
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/dist/quickstarts-base.css +6 -6
- package/dist/quickstarts-full.es.js +1 -2
- package/dist/quickstarts-full.es.js.map +1 -1
- package/dist/quickstarts-standalone.css +2 -2
- package/dist/quickstarts-standalone.min.css +1 -1
- package/dist/quickstarts.css +6 -6
- package/dist/quickstarts.min.css +1 -1
- package/package.json +1 -1
- package/src/QuickStartPanelContent.scss +2 -2
- package/src/catalog/QuickStartTileHeader.tsx +4 -6
|
@@ -147,8 +147,8 @@
|
|
|
147
147
|
display: flex;
|
|
148
148
|
flex-direction: column;
|
|
149
149
|
}
|
|
150
|
-
.pfext-quick-start-panel-
|
|
151
|
-
|
|
150
|
+
.pfext-quick-start-panel-content span.pf-v6-c-button__icon {
|
|
151
|
+
color: var(--pf-t--global--text--color--inverse);
|
|
152
152
|
}
|
|
153
153
|
|
|
154
154
|
.pf-v6-theme-dark .pfext-catalog-item-icon__img {
|
|
@@ -163,10 +163,6 @@
|
|
|
163
163
|
border: var(--pf-v6-c-card--BorderColor) var(--pf-v6-c-card--BorderStyle) var(--pf-v6-c-card--BorderWidth) !important;
|
|
164
164
|
}
|
|
165
165
|
|
|
166
|
-
.pfext-quick-start-footer {
|
|
167
|
-
padding-top: var(--pf-t--global--spacer--md);
|
|
168
|
-
}
|
|
169
|
-
|
|
170
166
|
.pfext-quick-start-task {
|
|
171
167
|
flex: 1 1 0;
|
|
172
168
|
overflow: auto;
|
|
@@ -175,6 +171,10 @@
|
|
|
175
171
|
margin-block-end: var(--pf-v6-c-content--MarginBlockEnd);
|
|
176
172
|
}
|
|
177
173
|
|
|
174
|
+
.pfext-quick-start-footer {
|
|
175
|
+
padding-top: var(--pf-t--global--spacer--md);
|
|
176
|
+
}
|
|
177
|
+
|
|
178
178
|
button.pf-v6-c-wizard__nav-link {
|
|
179
179
|
margin-bottom: var(--pf-t--global--spacer--md);
|
|
180
180
|
}
|
|
@@ -31645,8 +31645,7 @@ const QuickStartTileFooterExternal = ({ link, quickStartId, }) => {
|
|
|
31645
31645
|
};
|
|
31646
31646
|
|
|
31647
31647
|
const QuickStartTileHeader = ({ name, quickStartId, onSelect, }) => (React.createElement(Flex, { flexWrap: { default: 'nowrap' } },
|
|
31648
|
-
React.createElement(
|
|
31649
|
-
React.createElement(Button, { variant: "link", isInline: true, onClick: onSelect }, name))));
|
|
31648
|
+
React.createElement(Button, { "data-test": "title", id: quickStartId, variant: "link", isInline: true, onClick: onSelect }, name)));
|
|
31650
31649
|
|
|
31651
31650
|
var outlinedBookmarkIcon = createCommonjsModule(function (module, exports) {
|
|
31652
31651
|
exports.__esModule = true;
|