@patternfly/quickstarts 6.3.0-prerelease.1 → 6.3.0-prerelease.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/ConsoleShared/src/components/spotlight/InteractiveSpotlight.d.ts +1 -0
- package/dist/ConsoleShared/src/components/spotlight/StaticSpotlight.d.ts +1 -0
- package/dist/index.es.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/quickstarts-base.css +65 -4
- package/dist/quickstarts-full.es.js.map +1 -1
- package/dist/quickstarts.css +65 -4
- package/dist/quickstarts.min.css +1 -1
- package/package.json +2 -2
- package/src/ConsoleShared/src/components/spotlight/InteractiveSpotlight.tsx +1 -0
- package/src/ConsoleShared/src/components/spotlight/StaticSpotlight.tsx +1 -0
- package/src/ConsoleShared/src/components/spotlight/spotlight.scss +63 -0
|
@@ -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);
|
|
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;
|
|
@@ -178,6 +174,10 @@
|
|
|
178
174
|
height: initial;
|
|
179
175
|
}
|
|
180
176
|
|
|
177
|
+
.pfext-quick-start-footer {
|
|
178
|
+
padding-top: var(--pf-t--global--spacer--md);
|
|
179
|
+
}
|
|
180
|
+
|
|
181
181
|
.pfext-quick-start-task-header button.pf-v6-c-wizard__nav-link {
|
|
182
182
|
margin-bottom: var(--pf-t--global--spacer--md);
|
|
183
183
|
}
|
|
@@ -207,4 +207,65 @@
|
|
|
207
207
|
font-size: var(--pf-t--global--font--size--body--default);
|
|
208
208
|
color: var(--pf-t--global--text--color--subtle);
|
|
209
209
|
font-weight: var(--pf-t--global--font--weight--body);
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
@keyframes pfext-spotlight-expand {
|
|
213
|
+
0% {
|
|
214
|
+
outline-offset: -4px;
|
|
215
|
+
outline-width: 4px;
|
|
216
|
+
opacity: 1;
|
|
217
|
+
}
|
|
218
|
+
100% {
|
|
219
|
+
outline-offset: 21px;
|
|
220
|
+
outline-width: 12px;
|
|
221
|
+
opacity: 0;
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
@keyframes pfext-spotlight-fade-in {
|
|
225
|
+
0% {
|
|
226
|
+
opacity: 0;
|
|
227
|
+
}
|
|
228
|
+
100% {
|
|
229
|
+
opacity: 1;
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
@keyframes pfext-spotlight-fade-out {
|
|
233
|
+
0% {
|
|
234
|
+
opacity: 1;
|
|
235
|
+
}
|
|
236
|
+
100% {
|
|
237
|
+
opacity: 0;
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
.pfext-spotlight {
|
|
241
|
+
pointer-events: none;
|
|
242
|
+
position: absolute;
|
|
243
|
+
}
|
|
244
|
+
.pfext-spotlight__with-backdrop {
|
|
245
|
+
mix-blend-mode: hard-light;
|
|
246
|
+
}
|
|
247
|
+
.pfext-spotlight__element-highlight-noanimate {
|
|
248
|
+
border: var(--pf-t--global--border--width--strong) solid var(--pf-t--global--border--color--brand--default);
|
|
249
|
+
background-color: var(--pf-t--color--gray--40);
|
|
250
|
+
z-index: 9999;
|
|
251
|
+
}
|
|
252
|
+
.pfext-spotlight__element-highlight-animate {
|
|
253
|
+
pointer-events: none;
|
|
254
|
+
position: absolute;
|
|
255
|
+
box-shadow: inset 0px 0px 0px 4px var(--pf-t--global--color--brand--default);
|
|
256
|
+
opacity: 0;
|
|
257
|
+
animation: 0.4s pfext-spotlight-fade-in 0s ease-in-out, 5s pfext-spotlight-fade-out 12.8s ease-in-out;
|
|
258
|
+
animation-fill-mode: forwards;
|
|
259
|
+
}
|
|
260
|
+
.pfext-spotlight__element-highlight-animate::after {
|
|
261
|
+
content: "";
|
|
262
|
+
position: absolute;
|
|
263
|
+
left: 0;
|
|
264
|
+
right: 0;
|
|
265
|
+
top: 0;
|
|
266
|
+
bottom: 0;
|
|
267
|
+
animation: 1.2s pfext-spotlight-expand 1.6s ease-out;
|
|
268
|
+
animation-fill-mode: forwards;
|
|
269
|
+
outline: 4px solid var(--pf-t--global--color--brand--default);
|
|
270
|
+
outline-offset: -4px;
|
|
210
271
|
}
|