@patternfly/quickstarts 5.4.1 → 5.4.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 +1 -1
- package/dist/index.es.js +60 -22
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +59 -21
- package/dist/index.js.map +1 -1
- package/dist/quickstarts-base.css +56 -56
- package/dist/quickstarts-full.es.js +2487 -4934
- package/dist/quickstarts-full.es.js.map +1 -1
- package/dist/quickstarts-standalone.css +6 -0
- package/dist/quickstarts-standalone.min.css +1 -1
- package/dist/quickstarts.css +56 -56
- package/dist/quickstarts.min.css +1 -1
- package/package.json +2 -2
- package/src/ConsoleInternal/components/markdown-view.tsx +46 -23
- package/src/QuickStartPanelContent.tsx +10 -1
- package/src/controller/QuickStartTaskHeader.tsx +11 -1
|
@@ -907,16 +907,6 @@
|
|
|
907
907
|
--pf-v5-c-check__label--FontSize: 14px;
|
|
908
908
|
}
|
|
909
909
|
|
|
910
|
-
.pfext-quick-start-content {
|
|
911
|
-
flex: 1 1 0;
|
|
912
|
-
overflow: auto;
|
|
913
|
-
padding: var(--pf-v5-global--spacer--lg);
|
|
914
|
-
font-size: 16px;
|
|
915
|
-
}
|
|
916
|
-
.pfext-quick-start-content .pf-v5-c-alert__description p {
|
|
917
|
-
font-size: 13px;
|
|
918
|
-
}
|
|
919
|
-
|
|
920
910
|
.pfext-quick-start-footer {
|
|
921
911
|
background-color: var(--pf-v5-global--BackgroundColor--100);
|
|
922
912
|
flex: 0 0 auto;
|
|
@@ -929,6 +919,16 @@
|
|
|
929
919
|
float: right;
|
|
930
920
|
}
|
|
931
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
932
|
.pfext-quick-start-intro__prereq {
|
|
933
933
|
margin-bottom: var(--pf-v5-global--spacer--md);
|
|
934
934
|
}
|
|
@@ -1030,6 +1030,48 @@
|
|
|
1030
1030
|
font-size: 14px;
|
|
1031
1031
|
}
|
|
1032
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
|
+
|
|
1033
1075
|
.pfext-quick-start-task-header {
|
|
1034
1076
|
margin-bottom: var(--pf-v5-global--spacer--sm);
|
|
1035
1077
|
display: grid;
|
|
@@ -1077,52 +1119,6 @@
|
|
|
1077
1119
|
color: var(--pf-v5-global--danger-color--100) !important;
|
|
1078
1120
|
}
|
|
1079
1121
|
|
|
1080
|
-
.pfext-quick-start-task-review-alert {
|
|
1081
|
-
margin: var(--pf-v5-global--spacer--lg) 0;
|
|
1082
|
-
}
|
|
1083
|
-
|
|
1084
|
-
.pfext-quick-start-task-review {
|
|
1085
|
-
font-size: var(--pf-v5-global--FontSize--md);
|
|
1086
|
-
line-height: var(--pf-v5-global--FontSize--xl);
|
|
1087
|
-
font-family: var(--pf-v5-global--FontFamily--heading--sans-serif);
|
|
1088
|
-
}
|
|
1089
|
-
.pfext-quick-start-task-review__actions {
|
|
1090
|
-
display: flex;
|
|
1091
|
-
align-items: flex-start;
|
|
1092
|
-
margin-bottom: var(--pf-v5-global--spacer--sm);
|
|
1093
|
-
}
|
|
1094
|
-
.pfext-quick-start-task-review__actions input[type=radio] {
|
|
1095
|
-
margin-top: 0;
|
|
1096
|
-
margin-right: 0;
|
|
1097
|
-
}
|
|
1098
|
-
.pfext-quick-start-task-review__radio {
|
|
1099
|
-
margin-right: var(--pf-v5-global--spacer--xl) !important;
|
|
1100
|
-
}
|
|
1101
|
-
.pfext-quick-start-task-review--success {
|
|
1102
|
-
color: var(--pf-v5-global--success-color--100) !important;
|
|
1103
|
-
}
|
|
1104
|
-
.pfext-quick-start-task-review--failed {
|
|
1105
|
-
color: var(--pf-chart-global--danger--Color--100);
|
|
1106
|
-
}
|
|
1107
|
-
|
|
1108
|
-
.pfext-quick-start-task-header__list {
|
|
1109
|
-
padding: 0 !important;
|
|
1110
|
-
}
|
|
1111
|
-
.pfext-quick-start-task-header__list button::before {
|
|
1112
|
-
content: none;
|
|
1113
|
-
}
|
|
1114
|
-
.pfext-quick-start-task-header__list li {
|
|
1115
|
-
list-style-type: none;
|
|
1116
|
-
display: flex;
|
|
1117
|
-
flex-wrap: wrap;
|
|
1118
|
-
align-items: center;
|
|
1119
|
-
margin-bottom: var(--pf-v5-global--spacer--xs);
|
|
1120
|
-
}
|
|
1121
|
-
|
|
1122
|
-
.pfext-modal {
|
|
1123
|
-
position: absolute !important;
|
|
1124
|
-
}
|
|
1125
|
-
|
|
1126
1122
|
.pfext-markdown-view .pfext-code-block__pre {
|
|
1127
1123
|
/* override the styles applied by showdown while parsing <pre /> */
|
|
1128
1124
|
display: flex;
|
|
@@ -1157,6 +1153,10 @@
|
|
|
1157
1153
|
word-break: break-word;
|
|
1158
1154
|
}
|
|
1159
1155
|
|
|
1156
|
+
.pfext-modal {
|
|
1157
|
+
position: absolute !important;
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1160
1160
|
@keyframes pfext-spotlight-expand {
|
|
1161
1161
|
0% {
|
|
1162
1162
|
outline-offset: -4px;
|