@patternfly/quickstarts 1.4.1-rc.1 → 2.1.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 +12 -33
- package/dist/ConsoleInternal/module/k8s/types.d.ts +5 -1
- package/dist/ConsoleShared/src/components/markdown-extensions/admonition-extension.d.ts +7 -0
- package/dist/ConsoleShared/src/components/markdown-extensions/index.d.ts +1 -0
- package/dist/QuickStartCatalogPage.d.ts +1 -2
- package/dist/controller/QuickStartTaskHeader.d.ts +1 -0
- package/dist/index.es.js +101 -33
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +102 -32
- package/dist/index.js.map +1 -1
- package/dist/patternfly-nested.css +4 -14
- package/dist/quickstarts-base.css +52 -30
- package/dist/quickstarts-full.es.js +130 -32
- package/dist/quickstarts-full.es.js.map +1 -1
- package/dist/quickstarts-standalone.css +13 -4
- package/dist/quickstarts-standalone.min.css +2 -2
- package/dist/quickstarts.css +52 -30
- package/dist/quickstarts.min.css +1 -1
- package/package.json +4 -4
|
@@ -18,6 +18,8 @@
|
|
|
18
18
|
-webkit-appearance: none; }
|
|
19
19
|
.pfext-quick-start__base .pfext-quick-start-panel-content__body input[type="radio"] {
|
|
20
20
|
margin-right: 7px; }
|
|
21
|
+
.pfext-quick-start__base .pfext-quick-start-panel-content__body .pf-c-list {
|
|
22
|
+
--pf-c-list--PaddingLeft: 20px; }
|
|
21
23
|
.pfext-quick-start__base .pfext-quick-start-panel-content__header,
|
|
22
24
|
.pfext-quick-start__base .pfext-quick-start-panel-content__body,
|
|
23
25
|
.pfext-quick-start__base .pfext-page-layout__content,
|
|
@@ -136,6 +138,16 @@
|
|
|
136
138
|
background-color: transparent;
|
|
137
139
|
margin: 0;
|
|
138
140
|
padding: 0; }
|
|
141
|
+
.pfext-quick-start__base .pfext-markdown-view .pfext-markdown-admonition.pf-c-alert {
|
|
142
|
+
margin: var(--pf-global--spacer--md) 0; }
|
|
143
|
+
.pfext-quick-start__base .pfext-markdown-view .pfext-markdown-admonition.pf-c-alert .pf-c-alert__title {
|
|
144
|
+
margin-top: 0;
|
|
145
|
+
margin-bottom: 0;
|
|
146
|
+
font-weight: var(--pf-c-alert__title--FontWeight);
|
|
147
|
+
font-family: inherit;
|
|
148
|
+
line-height: inherit;
|
|
149
|
+
color: var(--pf-c-alert__title--Color);
|
|
150
|
+
word-break: break-word; }
|
|
139
151
|
.pfext-quick-start__base .pfext-modal {
|
|
140
152
|
position: absolute !important; }
|
|
141
153
|
|
|
@@ -302,8 +314,6 @@
|
|
|
302
314
|
.pfext-quick-start__base .pfext-quick-start-panel-content__body {
|
|
303
315
|
display: flex;
|
|
304
316
|
flex-direction: column; }
|
|
305
|
-
.pfext-quick-start__base .pfext-quick-start-panel-content__body ul, .pfext-quick-start__base .pfext-quick-start-panel-content__body ol {
|
|
306
|
-
padding-left: 20px; }
|
|
307
317
|
.pfext-quick-start__base .pfext-quick-start-panel-content__title {
|
|
308
318
|
display: flex;
|
|
309
319
|
align-items: center;
|
|
@@ -459,7 +469,7 @@
|
|
|
459
469
|
margin-right: var(--pf-global--spacer--md) !important; }
|
|
460
470
|
.pfext-quick-start__base .pfext-quick-start-task-header__subtitle {
|
|
461
471
|
font-size: var(--pf-global--FontSize--sm);
|
|
462
|
-
color: var(--pf-global--Color--
|
|
472
|
+
color: var(--pf-global--Color--dark-200) !important; }
|
|
463
473
|
.pfext-quick-start__base .pfext-quick-start-task-header__tryagain {
|
|
464
474
|
display: block;
|
|
465
475
|
font-size: var(--pf-global--FontSize--md);
|
|
@@ -520,7 +530,6 @@
|
|
|
520
530
|
align-items: center;
|
|
521
531
|
margin-bottom: var(--pf-global--spacer--xs); }
|
|
522
532
|
.pfext-quick-start__base .pfext-quick-start-tasks__list .pfext-quick-start-task__content {
|
|
523
|
-
margin-left: var(--pf-global--spacer--lg);
|
|
524
533
|
margin-bottom: var(--pf-global--spacer--md); }
|
|
525
534
|
.pfext-quick-start__base .catalog-tile-pf.featured {
|
|
526
535
|
border-top: 2px solid #2b9af3; }
|