@patternfly/quickstarts 5.4.0 → 5.4.2
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 +53 -22
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +52 -21
- package/dist/index.js.map +1 -1
- package/dist/patternfly-docs/quick-starts/design-guidelines/design-guidelines.md +1 -1
- package/dist/quickstarts-base.css +61 -61
- package/dist/quickstarts-full.es.js +2480 -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 +61 -61
- package/dist/quickstarts.min.css +1 -1
- package/package.json +5 -6
- package/src/ConsoleInternal/components/markdown-view.tsx +34 -23
- package/src/QuickStartPanelContent.tsx +10 -1
- package/src/controller/QuickStartTaskHeader.tsx +11 -1
|
@@ -98,7 +98,7 @@ Here are some general guidelines to follow when authoring quick start content:
|
|
|
98
98
|
* Provide links at the end of quick starts if the user is likely to need or want additional technical information upon completion.
|
|
99
99
|
* Provide links in the check your work module when a user answers **No** if more robust information can help the user understand what actions they must take to complete the task.
|
|
100
100
|
|
|
101
|
-
For more specific quick start content guidelines, refer to
|
|
101
|
+
For more specific quick start content guidelines, refer to _Best practices for writing quick starts_ on [UXD Hub](https://www.uxd-hub.com/entries/resource/best-practices-for-writing-quick-starts). The [Red Hat OpenShift documentation](https://docs.openshift.com/container-platform/4.16/web_console/creating-quick-start-tutorials.html) contains similar guidelines geared toward Red Hat OpenShift.
|
|
102
102
|
|
|
103
103
|
## Quick starts in context
|
|
104
104
|
|
|
@@ -818,17 +818,6 @@
|
|
|
818
818
|
display: inherit !important;
|
|
819
819
|
}
|
|
820
820
|
|
|
821
|
-
.pfext-quick-start-tile {
|
|
822
|
-
height: 100%;
|
|
823
|
-
}
|
|
824
|
-
.pfext-quick-start-tile .catalog-tile-pf-description .has-footer {
|
|
825
|
-
display: block;
|
|
826
|
-
-webkit-line-clamp: unset;
|
|
827
|
-
}
|
|
828
|
-
.pfext-quick-start-tile .catalog-tile-pf-icon {
|
|
829
|
-
display: flex;
|
|
830
|
-
}
|
|
831
|
-
|
|
832
821
|
.pfext-quick-start-tile-description {
|
|
833
822
|
display: -webkit-box;
|
|
834
823
|
overflow: hidden;
|
|
@@ -854,6 +843,17 @@
|
|
|
854
843
|
padding-left: 20px;
|
|
855
844
|
}
|
|
856
845
|
|
|
846
|
+
.pfext-quick-start-tile {
|
|
847
|
+
height: 100%;
|
|
848
|
+
}
|
|
849
|
+
.pfext-quick-start-tile .catalog-tile-pf-description .has-footer {
|
|
850
|
+
display: block;
|
|
851
|
+
-webkit-line-clamp: unset;
|
|
852
|
+
}
|
|
853
|
+
.pfext-quick-start-tile .catalog-tile-pf-icon {
|
|
854
|
+
display: flex;
|
|
855
|
+
}
|
|
856
|
+
|
|
857
857
|
.pfext-quick-start-tile-header__status {
|
|
858
858
|
margin: var(--pf-v5-global--spacer--sm) 0;
|
|
859
859
|
}
|
|
@@ -868,24 +868,6 @@
|
|
|
868
868
|
flex: 1;
|
|
869
869
|
}
|
|
870
870
|
|
|
871
|
-
.pfext-markdown-view.is-empty {
|
|
872
|
-
color: #999;
|
|
873
|
-
}
|
|
874
|
-
.pfext-markdown-view table {
|
|
875
|
-
display: block;
|
|
876
|
-
margin-bottom: 11.5px;
|
|
877
|
-
overflow-x: auto;
|
|
878
|
-
}
|
|
879
|
-
.pfext-markdown-view td,
|
|
880
|
-
.pfext-markdown-view th {
|
|
881
|
-
border-bottom: 1px solid #ededed;
|
|
882
|
-
padding: 10px;
|
|
883
|
-
vertical-align: top;
|
|
884
|
-
}
|
|
885
|
-
.pfext-markdown-view th {
|
|
886
|
-
padding-top: 0;
|
|
887
|
-
}
|
|
888
|
-
|
|
889
871
|
.pfext-quick-start-catalog-filter__input {
|
|
890
872
|
flex-grow: 1;
|
|
891
873
|
max-width: 500px;
|
|
@@ -907,6 +889,24 @@
|
|
|
907
889
|
--pf-v5-c-check__label--FontSize: 14px;
|
|
908
890
|
}
|
|
909
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
910
|
.pfext-quick-start-content {
|
|
911
911
|
flex: 1 1 0;
|
|
912
912
|
overflow: auto;
|
|
@@ -1044,6 +1044,34 @@
|
|
|
1044
1044
|
margin-bottom: var(--pf-v5-global--spacer--xs);
|
|
1045
1045
|
}
|
|
1046
1046
|
|
|
1047
|
+
.pfext-quick-start-task-review-alert {
|
|
1048
|
+
margin: var(--pf-v5-global--spacer--lg) 0;
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
.pfext-quick-start-task-review {
|
|
1052
|
+
font-size: var(--pf-v5-global--FontSize--md);
|
|
1053
|
+
line-height: var(--pf-v5-global--FontSize--xl);
|
|
1054
|
+
font-family: var(--pf-v5-global--FontFamily--heading--sans-serif);
|
|
1055
|
+
}
|
|
1056
|
+
.pfext-quick-start-task-review__actions {
|
|
1057
|
+
display: flex;
|
|
1058
|
+
align-items: flex-start;
|
|
1059
|
+
margin-bottom: var(--pf-v5-global--spacer--sm);
|
|
1060
|
+
}
|
|
1061
|
+
.pfext-quick-start-task-review__actions input[type=radio] {
|
|
1062
|
+
margin-top: 0;
|
|
1063
|
+
margin-right: 0;
|
|
1064
|
+
}
|
|
1065
|
+
.pfext-quick-start-task-review__radio {
|
|
1066
|
+
margin-right: var(--pf-v5-global--spacer--xl) !important;
|
|
1067
|
+
}
|
|
1068
|
+
.pfext-quick-start-task-review--success {
|
|
1069
|
+
color: var(--pf-v5-global--success-color--100) !important;
|
|
1070
|
+
}
|
|
1071
|
+
.pfext-quick-start-task-review--failed {
|
|
1072
|
+
color: var(--pf-chart-global--danger--Color--100);
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1047
1075
|
.pfext-quick-start-task-header {
|
|
1048
1076
|
margin-bottom: var(--pf-v5-global--spacer--sm);
|
|
1049
1077
|
display: grid;
|
|
@@ -1091,38 +1119,6 @@
|
|
|
1091
1119
|
color: var(--pf-v5-global--danger-color--100) !important;
|
|
1092
1120
|
}
|
|
1093
1121
|
|
|
1094
|
-
.pfext-quick-start-task-review-alert {
|
|
1095
|
-
margin: var(--pf-v5-global--spacer--lg) 0;
|
|
1096
|
-
}
|
|
1097
|
-
|
|
1098
|
-
.pfext-quick-start-task-review {
|
|
1099
|
-
font-size: var(--pf-v5-global--FontSize--md);
|
|
1100
|
-
line-height: var(--pf-v5-global--FontSize--xl);
|
|
1101
|
-
font-family: var(--pf-v5-global--FontFamily--heading--sans-serif);
|
|
1102
|
-
}
|
|
1103
|
-
.pfext-quick-start-task-review__actions {
|
|
1104
|
-
display: flex;
|
|
1105
|
-
align-items: flex-start;
|
|
1106
|
-
margin-bottom: var(--pf-v5-global--spacer--sm);
|
|
1107
|
-
}
|
|
1108
|
-
.pfext-quick-start-task-review__actions input[type=radio] {
|
|
1109
|
-
margin-top: 0;
|
|
1110
|
-
margin-right: 0;
|
|
1111
|
-
}
|
|
1112
|
-
.pfext-quick-start-task-review__radio {
|
|
1113
|
-
margin-right: var(--pf-v5-global--spacer--xl) !important;
|
|
1114
|
-
}
|
|
1115
|
-
.pfext-quick-start-task-review--success {
|
|
1116
|
-
color: var(--pf-v5-global--success-color--100) !important;
|
|
1117
|
-
}
|
|
1118
|
-
.pfext-quick-start-task-review--failed {
|
|
1119
|
-
color: var(--pf-chart-global--danger--Color--100);
|
|
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;
|