@patternfly/quickstarts 6.0.0-alpha.2 → 6.0.0-alpha.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.
Files changed (119) hide show
  1. package/dist/ConsoleInternal/components/markdown-view.d.ts +0 -1
  2. package/dist/ConsoleShared/src/components/markdown-extensions/accordion-extension.d.ts +0 -1
  3. package/dist/ConsoleShared/src/components/markdown-extensions/admonition-extension.d.ts +0 -1
  4. package/dist/ConsoleShared/src/components/markdown-extensions/code-extension.d.ts +0 -1
  5. package/dist/ConsoleShared/src/components/markdown-extensions/inline-clipboard-extension.d.ts +0 -1
  6. package/dist/ConsoleShared/src/components/markdown-extensions/multiline-clipboard-extension.d.ts +0 -1
  7. package/dist/ConsoleShared/src/components/modal/Modal.d.ts +1 -2
  8. package/dist/ConsoleShared/src/components/spotlight/InteractiveSpotlight.d.ts +0 -1
  9. package/dist/ConsoleShared/src/components/spotlight/StaticSpotlight.d.ts +0 -1
  10. package/dist/HelpTopicDrawer.d.ts +0 -1
  11. package/dist/HelpTopicPanelContent.d.ts +0 -1
  12. package/dist/QuickStartDrawer.d.ts +0 -1
  13. package/dist/QuickStartPanelContent.d.ts +2 -2
  14. package/dist/catalog/QuickStartCatalog.d.ts +0 -1
  15. package/dist/catalog/QuickStartTile.d.ts +16 -2
  16. package/dist/catalog/QuickStartTileDescription.d.ts +0 -1
  17. package/dist/catalog/QuickStartTileFooter.d.ts +1 -0
  18. package/dist/catalog/QuickStartTileHeader.d.ts +1 -17
  19. package/dist/catalog/Toolbar/QuickStartCatalogFilter.d.ts +0 -1
  20. package/dist/catalog/index.d.ts +1 -1
  21. package/dist/controller/QuickStartContent.d.ts +1 -1
  22. package/dist/controller/QuickStartFooter.d.ts +1 -1
  23. package/dist/controller/QuickStartIntroduction.d.ts +0 -1
  24. package/dist/controller/QuickStartTaskHeaderList.d.ts +0 -1
  25. package/dist/controller/QuickStartTaskReview.d.ts +0 -1
  26. package/dist/controller/QuickStartTasks.d.ts +0 -1
  27. package/dist/index.es.js +188 -291
  28. package/dist/index.es.js.map +1 -1
  29. package/dist/index.js +189 -292
  30. package/dist/index.js.map +1 -1
  31. package/dist/patternfly-docs/quick-starts/examples/HelpTopic.jsx +4 -4
  32. package/dist/patternfly-docs/quick-starts/examples/example-data/example-help-topics.js +9 -18
  33. package/dist/patternfly-global.css +7 -53
  34. package/dist/patternfly-nested.css +1749 -1778
  35. package/dist/quickstarts-base.css +40 -420
  36. package/dist/quickstarts-full.es.js +1181 -1238
  37. package/dist/quickstarts-full.es.js.map +1 -1
  38. package/dist/quickstarts-standalone.css +41 -382
  39. package/dist/quickstarts-standalone.min.css +3 -3
  40. package/dist/quickstarts-vendor.css +6 -11
  41. package/dist/quickstarts.css +46 -431
  42. package/dist/quickstarts.min.css +1 -1
  43. package/dist/utils/quick-start-types.d.ts +1 -1
  44. package/package.json +10 -11
  45. package/src/ConsoleInternal/components/markdown-view.tsx +29 -9
  46. package/src/ConsoleShared/src/components/markdown-extensions/accordion-extension.tsx +10 -17
  47. package/src/ConsoleShared/src/components/markdown-extensions/admonition-extension.tsx +5 -11
  48. package/src/ConsoleShared/src/components/markdown-extensions/code-extension.tsx +2 -2
  49. package/src/ConsoleShared/src/components/markdown-extensions/inline-clipboard-extension.tsx +0 -1
  50. package/src/ConsoleShared/src/components/markdown-extensions/multiline-clipboard-extension.tsx +2 -6
  51. package/src/ConsoleShared/src/components/markdown-extensions/utils.ts +2 -1
  52. package/src/ConsoleShared/src/components/modal/Modal.tsx +1 -2
  53. package/src/ConsoleShared/src/components/popper/SimplePopper.tsx +5 -2
  54. package/src/ConsoleShared/src/components/spotlight/InteractiveSpotlight.tsx +0 -1
  55. package/src/ConsoleShared/src/components/spotlight/StaticSpotlight.tsx +0 -1
  56. package/src/ConsoleShared/src/components/status/icons.tsx +1 -5
  57. package/src/HelpTopicDrawer.tsx +1 -4
  58. package/src/HelpTopicPanelContent.tsx +4 -16
  59. package/src/QuickStartCatalogPage.tsx +34 -25
  60. package/src/QuickStartCloseModal.tsx +2 -2
  61. package/src/QuickStartController.tsx +1 -1
  62. package/src/QuickStartDrawer.tsx +2 -7
  63. package/src/QuickStartPanelContent.scss +7 -39
  64. package/src/QuickStartPanelContent.tsx +20 -44
  65. package/src/catalog/Catalog/QuickStartCatalogHeader.tsx +5 -4
  66. package/src/catalog/Catalog/QuickStartCatalogSection.tsx +1 -1
  67. package/src/catalog/Catalog/QuickStartCatalogToolbar.tsx +1 -3
  68. package/src/catalog/QuickStartCatalog.tsx +12 -16
  69. package/src/catalog/QuickStartTile.scss +11 -9
  70. package/src/catalog/QuickStartTile.tsx +133 -72
  71. package/src/catalog/QuickStartTileDescription.tsx +28 -42
  72. package/src/catalog/QuickStartTileFooter.tsx +13 -19
  73. package/src/catalog/QuickStartTileHeader.tsx +9 -86
  74. package/src/catalog/Toolbar/QuickStartCatalogFilter.tsx +8 -10
  75. package/src/catalog/Toolbar/QuickStartCatalogFilterItems.tsx +2 -5
  76. package/src/catalog/__tests__/QuickStartCatalog.spec.tsx +3 -3
  77. package/src/catalog/__tests__/QuickStartTile.spec.tsx +5 -5
  78. package/src/catalog/__tests__/QuickStartTileDescription.spec.tsx +1 -1
  79. package/src/catalog/index.ts +1 -1
  80. package/src/controller/QuickStartConclusion.tsx +4 -4
  81. package/src/controller/QuickStartContent.scss +3 -7
  82. package/src/controller/QuickStartContent.tsx +3 -5
  83. package/src/controller/QuickStartFooter.scss +1 -11
  84. package/src/controller/QuickStartFooter.tsx +27 -21
  85. package/src/controller/QuickStartIntroduction.tsx +11 -16
  86. package/src/controller/QuickStartTaskHeader.scss +20 -42
  87. package/src/controller/QuickStartTaskHeader.tsx +21 -60
  88. package/src/controller/QuickStartTaskHeaderList.tsx +4 -6
  89. package/src/controller/QuickStartTaskReview.tsx +6 -12
  90. package/src/controller/QuickStartTasks.tsx +6 -8
  91. package/src/controller/__tests__/QuickStartConclusion.spec.tsx +6 -19
  92. package/src/controller/__tests__/QuickStartFooter.spec.tsx +9 -54
  93. package/src/controller/__tests__/QuickStartTaskHeader.spec.tsx +1 -1
  94. package/src/controller/__tests__/QuickStartTaskReview.spec.tsx +3 -6
  95. package/src/controller/__tests__/QuickStartTasks.spec.tsx +3 -6
  96. package/src/styles/_base.scss +3 -45
  97. package/src/styles/style.scss +1 -6
  98. package/src/utils/help-topic-context.tsx +2 -3
  99. package/src/utils/quick-start-context.tsx +10 -13
  100. package/src/utils/quick-start-types.ts +1 -1
  101. package/src/utils/quick-start-utils.ts +4 -2
  102. package/src/ConsoleInternal/components/_icon-and-text.scss +0 -14
  103. package/src/ConsoleInternal/components/_markdown-view.scss +0 -19
  104. package/src/ConsoleInternal/components/catalog/_catalog.scss +0 -392
  105. package/src/ConsoleInternal/components/utils/_status-box.scss +0 -58
  106. package/src/ConsoleShared/src/components/layout/PageLayout.scss +0 -29
  107. package/src/ConsoleShared/src/components/markdown-extensions/showdown-extension.scss +0 -52
  108. package/src/ConsoleShared/src/components/modal/Modal.scss +0 -3
  109. package/src/ConsoleShared/src/components/spotlight/spotlight.scss +0 -63
  110. package/src/QuickStartDrawer.scss +0 -11
  111. package/src/catalog/QuickStartCatalog.scss +0 -8
  112. package/src/catalog/QuickStartTileDescription.scss +0 -29
  113. package/src/catalog/QuickStartTileHeader.scss +0 -16
  114. package/src/catalog/Toolbar/QuickStartCatalogFilter.scss +0 -25
  115. package/src/controller/QuickStartIntroduction.scss +0 -35
  116. package/src/controller/QuickStartTaskHeaderList.scss +0 -17
  117. package/src/controller/QuickStartTaskReview.scss +0 -30
  118. package/src/controller/QuickStartTasks.scss +0 -90
  119. package/src/styles/_dark-custom-override.scss +0 -47
@@ -1,392 +0,0 @@
1
- @use 'sass:math';
2
-
3
- // frontend/public/style/_vars.scss
4
- $font-size-base: 14px;
5
- $pfext-m-catalog-tile-height: 100%;
6
- $pfext-m-catalog-tile-width: 260px;
7
-
8
- $catalog-capability-level-icon-left: -20px;
9
- $catalog-capability-level-icon-top: 4px;
10
- $catalog-capability-level-inactive-color: var(--pf-t--global--text--color--disabled);
11
- $catalog-item-icon-size-lg: 40px;
12
- $catalog-item-icon-size-sm: 24px;
13
- $pfext-modal-ignore-warning-icon-width: 30px;
14
- $catalog-tile-width: $pfext-m-catalog-tile-width;
15
-
16
- // reset font size back to 13px since console h5 font size is 14px
17
- .catalog-item-header-pf-subtitle {
18
- font-size: 13px;
19
- }
20
-
21
- .catalog-tile-pf-body .catalog-tile-pf-subtitle {
22
- font-size: ($font-size-base - 1);
23
- }
24
-
25
- .pfext-catalog {
26
- display: flex;
27
- flex-direction: column;
28
- min-height: 100%;
29
- min-width: 515px; // in order to accommodate filters and tiles at mobile
30
- }
31
-
32
- .pfext-catalog-tile-view {
33
- display: flex;
34
- flex-wrap: wrap;
35
- --pf-v6-l-gallery--GridTemplateColumns: repeat(auto-fill, 260px) !important;
36
- }
37
-
38
- .pfext-catalog__body {
39
- min-width: 575px; // Minimum shrinkable width of .pfext-catalog child elements => 15 + ((220 + 15) + (30 + 250 + 30)) + 15
40
- @media (min-width: $screen-sm-min) {
41
- min-width: 590px; // Left margin 30 instead of 15
42
- }
43
- }
44
-
45
- .pfext-catalog-item-details {
46
- display: flex;
47
- margin: 0 0 10px;
48
-
49
- &__description {
50
- white-space: pre-wrap;
51
- }
52
-
53
- &__kind-label {
54
- font-weight: var(--pf-t--global--font--weight--body--bold);
55
- }
56
-
57
- &__name {
58
- margin-bottom: 10px;
59
- }
60
-
61
- &__provider,
62
- &__tags {
63
- margin-bottom: 5px;
64
- }
65
-
66
- &__tag {
67
- color: $color-pf-black-600;
68
- font-size: ($font-size-base - 1);
69
- margin-right: 5px;
70
- text-transform: uppercase;
71
- }
72
- }
73
-
74
- .pfext-catalog-item-icon {
75
- padding-right: 10px;
76
-
77
- &__icon {
78
- font-size: $catalog-item-icon-size-sm;
79
-
80
- &--large {
81
- font-size: $catalog-item-icon-size-lg;
82
- }
83
- }
84
-
85
- &__img {
86
- max-height: $catalog-item-icon-size-sm;
87
- max-width: $catalog-item-icon-size-sm;
88
-
89
- &[src$='.svg'] {
90
- width: $catalog-item-icon-size-sm;
91
- }
92
-
93
- &--large {
94
- max-height: $catalog-item-icon-size-lg;
95
- max-width: $catalog-item-icon-size-lg;
96
-
97
- &[src$='.svg'] {
98
- width: $catalog-item-icon-size-lg;
99
- }
100
- }
101
- }
102
- }
103
-
104
- .pfext-catalog-page {
105
- background: $color-pf-white;
106
- border: 1px solid var(--pf-t--global--border--color--default);
107
- display: flex;
108
- flex: 1;
109
- padding-top: math.div($grid-gutter-width, 2);
110
-
111
- &--with-sidebar {
112
- margin: 0 math.div($grid-gutter-width, 2);
113
- padding-bottom: math.div($grid-gutter-width, 2);
114
- }
115
-
116
- &__btn-group__group-by {
117
- display: inline;
118
- margin-left: var(--pf-t--global--spacer--md);
119
- }
120
-
121
- &__content {
122
- flex: 1 1 auto;
123
- overflow: hidden;
124
- }
125
-
126
- &__description {
127
- margin-top: -10px;
128
- padding: 0 math.div($grid-gutter-width, 2) 10px;
129
- @media (min-width: $grid-float-breakpoint) {
130
- padding-left: $grid-gutter-width;
131
- padding-right: $grid-gutter-width;
132
- }
133
- }
134
-
135
- &__filter {
136
- display: flex;
137
- justify-content: space-between;
138
- }
139
-
140
- &__filter-toggle {
141
- margin-top: 5px;
142
- }
143
-
144
- &__grid {
145
- background-color: $color-pf-black-150;
146
- }
147
-
148
- &__grouped-items {
149
- margin-bottom: var(--pf-t--global--spacer--md);
150
- }
151
-
152
- &__group-title {
153
- margin-bottom: var(--pf-t--global--spacer--sm);
154
- }
155
-
156
- &__header {
157
- margin: 0 $grid-gutter-width 0 0;
158
- }
159
-
160
- &__heading {
161
- font-size: 16px;
162
- margin: 0 0 20px 30px;
163
- }
164
-
165
- &__hint {
166
- margin: 0 0 var(--pf-t--global--spacer--md) 0;
167
- }
168
-
169
- &__input {
170
- display: inline-flex !important;
171
- margin: 0 0 20px 30px;
172
- width: auto !important;
173
- }
174
-
175
- &__sort {
176
- display: inline;
177
- margin-left: var(--pf-t--global--spacer--md);
178
- }
179
-
180
- &__num-items {
181
- font-weight: var(--pf-t--global--font--weight--body--bold);
182
- padding: 0 0 20px;
183
- }
184
-
185
- &__info-icon {
186
- vertical-align: middle;
187
- color: #6a6e73;
188
- &:hover {
189
- color: #151515;
190
- }
191
- }
192
-
193
- // Enable scrolling on the modal
194
- &__overlay {
195
- border: 0 !important; // Collapse default PF4 modal border-width
196
-
197
- .modal-body .pfext-hint-block {
198
- margin-bottom: 10px;
199
- }
200
-
201
- .properties-side-panel-pf {
202
- flex: 0 0 auto;
203
- }
204
- }
205
-
206
- &__overlay--right {
207
- bottom: 0;
208
- padding: 0 !important;
209
- right: 0;
210
- top: 4.75rem; // --pf-v6-c-page__header--MinHeight
211
-
212
- .pf-v6-c-modal-box__body {
213
- // Required to position scroll shadows correctly on Chrome
214
- display: flex;
215
- flex-direction: column;
216
- margin: 0 !important;
217
- padding: 0;
218
- }
219
-
220
- .modal-body-inner-shadow-covers {
221
- padding-left: 0 !important;
222
- padding-right: 0 !important;
223
- }
224
-
225
- h1 {
226
- white-space: normal;
227
- }
228
- }
229
-
230
- &__overlay-action {
231
- align-items: baseline;
232
- display: inline-flex !important;
233
- margin: var(--pf-t--global--spacer--sm) var(--pf-t--global--spacer--sm) 0 0;
234
- overflow-x: hidden;
235
- }
236
-
237
- &__overlay-action-icon {
238
- flex-shrink: 0;
239
- font-size: $font-size-base;
240
- margin-left: 6px;
241
- }
242
-
243
- &__overlay-action-label {
244
- overflow-x: hidden;
245
- text-overflow: ellipsis;
246
- }
247
-
248
- &__overlay-actions {
249
- display: flex;
250
- flex-wrap: wrap;
251
- margin-bottom: var(--pf-t--global--spacer--md);
252
- white-space: normal;
253
- }
254
-
255
- &__overlay-header {
256
- margin-bottom: var(--pf-t--global--spacer--md);
257
- }
258
-
259
- &__overlay-body {
260
- margin: 0;
261
- padding-left: var(--pf-t--global--spacer--lg);
262
- padding-right: var(--pf-t--global--spacer--lg);
263
- padding-top: var(--pf-t--global--spacer--md);
264
- @media (min-width: $screen-sm-min) {
265
- display: flex;
266
- }
267
- }
268
-
269
- &__overlay-description {
270
- margin: 20px 0 0;
271
- white-space: pre-wrap;
272
- // TODO: find fix for urls that don't wrap
273
- // fix below causes undesirable wrapping on non-urls
274
- // word-break: break-all;
275
- h1,
276
- h2,
277
- h3 {
278
- color: #333; // same color as styles hardcoded in markdown text component
279
- }
280
-
281
- h2 {
282
- font-size: 20px;
283
- }
284
-
285
- p,
286
- li,
287
- ol {
288
- color: #333; // same color as styles hardcoded in markdown text component
289
- font-size: $font-size-base !important;
290
- }
291
-
292
- @media (min-width: $screen-sm-min) {
293
- flex: 1 1 auto;
294
- margin-left: 20px;
295
- margin-top: 0;
296
- }
297
- }
298
-
299
- &__tabs {
300
- flex: 0 0 220px;
301
- margin: 0 math.div($grid-gutter-width, 2) 0 0;
302
- }
303
- }
304
-
305
- @media screen and (min-width: $screen-sm) {
306
- .pf-v6-c-modal-box.pfext-catalog-page__overlay {
307
- width: 600px;
308
- }
309
- }
310
-
311
- @media screen and (min-width: $screen-md) {
312
- .pf-v6-c-modal-box.pfext-catalog-page__overlay {
313
- width: 900px;
314
- }
315
- }
316
-
317
- .pfext-catalog-tab__empty {
318
- color: $color-pf-black-600;
319
- }
320
-
321
- .pfext-modal-ignore-warning {
322
- height: initial;
323
-
324
- &__checkbox.checkbox {
325
- margin-bottom: 0;
326
- padding-top: 15px;
327
- }
328
- &__content {
329
- display: flex;
330
- }
331
- &__icon {
332
- font-size: $pfext-modal-ignore-warning-icon-width;
333
- margin-right: 15px;
334
- // Avoid the dialog shifting when the icon loads.
335
- min-width: $pfext-modal-ignore-warning-icon-width;
336
- }
337
- &__link {
338
- display: block;
339
- margin: 10px 0;
340
- }
341
- }
342
-
343
- .properties-side-panel-pf-property-label {
344
- font-size: ($font-size-base - 1);
345
- }
346
-
347
- .properties-side-panel-pf-property-value__capability-level {
348
- color: $catalog-capability-level-inactive-color;
349
- margin-bottom: 5px;
350
- position: relative;
351
-
352
- &--active {
353
- color: inherit;
354
-
355
- &::before {
356
- display: none; // hide empty circle since icon is present
357
- }
358
- }
359
-
360
- &::before {
361
- // empty circle
362
- border: 1px solid $catalog-capability-level-inactive-color;
363
- border-radius: 10px;
364
- content: '';
365
- height: 14px;
366
- left: $catalog-capability-level-icon-left;
367
- position: absolute;
368
- top: $catalog-capability-level-icon-top;
369
- width: 14px;
370
- }
371
-
372
- &:not(:last-child)::after {
373
- // pipe after circle
374
- background: $catalog-capability-level-inactive-color;
375
- content: '';
376
- height: 6px;
377
- left: -13px;
378
- position: absolute;
379
- top: 21px;
380
- width: 1px;
381
- }
382
- }
383
-
384
- .properties-side-panel-pf-property-value__capability-level-icon {
385
- left: $catalog-capability-level-icon-left;
386
- position: absolute;
387
- top: $catalog-capability-level-icon-top;
388
- }
389
-
390
- .properties-side-panel-pf-property-value__capability-levels {
391
- list-style: none;
392
- }
@@ -1,58 +0,0 @@
1
- .pfext-status-box {
2
- padding: 40px 20px;
3
-
4
- &__loading-message {
5
- margin-top: var(--pf-t--global--spacer--sm);
6
- }
7
- }
8
-
9
- .pfext-status-box--loading {
10
- align-items: center;
11
- display: flex;
12
- height: 100%;
13
- justify-content: center;
14
- min-height: 50px;
15
- width: 100%;
16
- flex-direction: column;
17
- }
18
-
19
- .pfext-m-loader {
20
- min-width: 18px;
21
- }
22
-
23
- .pfext-m-loader-dot__one,
24
- .pfext-m-loader-dot__two,
25
- .pfext-m-loader-dot__three {
26
- animation-delay: 0;
27
- animation-direction: normal;
28
- animation-duration: 1s;
29
- animation-fill-mode: forwards;
30
- animation-iteration-count: infinite;
31
- animation-name: bouncedelay;
32
- animation-play-state: running;
33
- animation-timing-function: ease-in-out;
34
- background: #419eda;
35
- border-radius: 100%;
36
- display: inline-block;
37
- height: 6px;
38
- width: 6px;
39
- }
40
-
41
- .pfext-m-loader-dot__one {
42
- animation-delay: -0.32s;
43
- }
44
-
45
- .pfext-m-loader-dot__two {
46
- animation-delay: -0.16s;
47
- }
48
-
49
- @keyframes bouncedelay {
50
- 0%,
51
- 80%,
52
- 100% {
53
- transform: scale(0.25, 0.25);
54
- }
55
- 40% {
56
- transform: scale(1, 1);
57
- }
58
- }
@@ -1,29 +0,0 @@
1
- .pfext-page-layout {
2
- &__content {
3
- padding: var(--pf-t--global--spacer--lg);
4
- flex: 1;
5
- }
6
-
7
- &__header {
8
- padding-top: 1px;
9
- background-color: var(--pf-t--global--background--color--primary--default);
10
- }
11
-
12
- &__hint {
13
- padding-left: var(--pf-t--global--spacer--lg);
14
- padding-right: var(--pf-t--global--spacer--lg);
15
- padding-bottom: var(--pf-t--global--spacer--md);
16
- font-size: 14px;
17
- }
18
-
19
- &__title {
20
- padding-left: var(--pf-t--global--spacer--lg);
21
- padding-right: var(--pf-t--global--spacer--lg);
22
- font-size: var(--pf-t--global--font--size--heading--h1);
23
- margin-top: 23px;
24
- margin-bottom: 11.5px;
25
- font-family: var(--pf-t--global--font--family--heading);
26
- font-weight: var(--pf-t--global--font--weight--heading);
27
- line-height: 1.1;
28
- }
29
- }
@@ -1,52 +0,0 @@
1
- .pfext-markdown-view {
2
- .pfext-code-block__pre {
3
- /* override the styles applied by showdown while parsing <pre /> */
4
- display: flex;
5
- border: none;
6
- border-radius: none;
7
- background-color: transparent;
8
- margin: 0;
9
- padding: 0;
10
- }
11
-
12
- .pfext-markdown-execute-snippet {
13
-
14
- &__button {
15
- & > i.fa-check {
16
- display: none;
17
- }
18
-
19
- & > i.fa-play {
20
- display: inline;
21
- }
22
-
23
- &[data-executed] {
24
- & > i.fa-check {
25
- display: inline;
26
- }
27
-
28
- & > i.fa-play {
29
- display: none;
30
- }
31
- }
32
- }
33
- }
34
-
35
- .pfext-markdown-admonition {
36
- &.pf-v6-c-alert {
37
- // add margins to match design
38
- margin: var(--pf-t--global--spacer--md) 0;
39
- .pf-v6-c-alert__title {
40
- // remove margins from markdown css
41
- margin-top: 0;
42
- margin-bottom: 0;
43
- // lift PF style specificity to override markdown css
44
- font-weight: var(--pf-v6-c-alert__title--FontWeight);
45
- font-family: inherit;
46
- line-height: inherit;
47
- color: var(--pf-v6-c-alert__title--Color);
48
- word-break: break-word;
49
- }
50
- }
51
- }
52
- }
@@ -1,3 +0,0 @@
1
- .pfext-modal {
2
- position: absolute !important;
3
- }
@@ -1,63 +0,0 @@
1
- @keyframes pfext-spotlight-expand {
2
- 0% {
3
- outline-offset: -4px;
4
- outline-width: 4px;
5
- opacity: 1;
6
- }
7
- 100% {
8
- outline-offset: 21px;
9
- outline-width: 12px;
10
- opacity: 0;
11
- }
12
- }
13
-
14
- @keyframes pfext-spotlight-fade-in {
15
- 0% {
16
- opacity: 0;
17
- }
18
- 100% {
19
- opacity: 1;
20
- }
21
- }
22
-
23
- @keyframes pfext-spotlight-fade-out {
24
- 0% {
25
- opacity: 1;
26
- }
27
- 100% {
28
- opacity: 0;
29
- }
30
- }
31
-
32
- .pfext-spotlight {
33
- pointer-events: none;
34
- position: absolute;
35
- &__with-backdrop {
36
- mix-blend-mode: hard-light;
37
- }
38
- &__element-highlight-noanimate {
39
- border: var(--pf-t--global--border--width--strong) solid var(--pf-t--global--border--color--brand--default);
40
- background-color: var(--pf-t--color--gray--40);
41
- z-index: 9999;
42
- }
43
- &__element-highlight-animate {
44
- pointer-events: none;
45
- position: absolute;
46
- box-shadow: inset 0px 0px 0px 4px var(--pf-t--global--color--brand--default);
47
- opacity: 0;
48
- animation: 0.4s pfext-spotlight-fade-in 0s ease-in-out, 5s pfext-spotlight-fade-out 12.8s ease-in-out;
49
- animation-fill-mode: forwards;
50
- &::after {
51
- content: '';
52
- position: absolute;
53
- left: 0;
54
- right: 0;
55
- top: 0;
56
- bottom: 0;
57
- animation: 1.2s pfext-spotlight-expand 1.6s ease-out;
58
- animation-fill-mode: forwards;
59
- outline: 4px solid var(--pf-t--global--color--brand--default);
60
- outline-offset: -4px;
61
- }
62
- }
63
- }
@@ -1,11 +0,0 @@
1
- .pfext-quick-start-drawer {
2
- &__body {
3
- display: flex;
4
- flex-direction: column;
5
- z-index: 0;
6
- position: relative;
7
- }
8
- &__modal > .pf-v6-c-modal-box__footer {
9
- display: block;
10
- }
11
- }
@@ -1,8 +0,0 @@
1
- .pfext-quick-start-catalog {
2
- &__gallery {
3
- --pf-v6-l-gallery--GridTemplateColumns: repeat(auto-fill, 300px) !important;
4
- }
5
- &__gallery-item {
6
- display: inherit !important;
7
- }
8
- }
@@ -1,29 +0,0 @@
1
- .pfext-quick-start-tile {
2
- &-description {
3
- display: -webkit-box;
4
- overflow: hidden;
5
- -webkit-box-orient: vertical;
6
- -webkit-line-clamp: 3;
7
-
8
- p {
9
- margin: 0 0 11.5px;
10
- }
11
- }
12
-
13
- &-prerequisites {
14
- display: inline-flex;
15
- &__text {
16
- margin-right: var(--pf-t--global--spacer--sm);
17
- font-size: var(--pf-t--global--font--size--md);
18
- margin-top: 11.5px;
19
- margin-bottom: 11.5px;
20
- font-family: var(--pf-t--global--font--family--heading);
21
- font-weight: var(--pf-t--global--font--weight--heading);
22
- line-height: 1.1;
23
- }
24
-
25
- &-list {
26
- padding-left: 20px;
27
- }
28
- }
29
- }
@@ -1,16 +0,0 @@
1
- .pfext-quick-start-tile-header {
2
- &__status {
3
- margin: var(--pf-t--global--spacer--sm) 0;
4
- }
5
- &--margin {
6
- margin-right: var(--pf-t--global--spacer--sm);
7
- margin-bottom: var(--pf-t--global--spacer--sm);
8
- }
9
- & .pf-v6-c-badge:not(:last-of-type) {
10
- margin-right: var(--pf-t--global--spacer--sm);
11
- }
12
-
13
- h3 {
14
- flex: 1;
15
- }
16
- }
@@ -1,25 +0,0 @@
1
- .pfext-quick-start-catalog-filter {
2
- &__input {
3
- flex-grow: 1;
4
- max-width: 500px;
5
- }
6
-
7
- &__count {
8
- font-weight: var(--pf-t--global--font--weight--body--bold);
9
- }
10
- }
11
-
12
- .pf-v6-c-toolbar.pf-m-page-insets.pfext-quick-start-catalog-filter__flex {
13
- --pf-v6-c-toolbar--PaddingBottom: var(--pf-t--global--spacer--sm);
14
- --pf-v6-c-toolbar--PaddingTop: var(--pf-t--global--spacer--sm);
15
- --pf-v6-c-toolbar--RowGap: 0;
16
- font-size: 14px;
17
-
18
- .pf-v6-c-select {
19
- --pf-v6-c-select__toggle--FontSize: 14px;
20
- }
21
-
22
- .pf-v6-c-check {
23
- --pf-v6-c-check__label--FontSize: 14px;
24
- }
25
- }