@patternfly/quickstarts 6.3.0-prerelease.2 → 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 +61 -0
- package/dist/quickstarts-full.es.js.map +1 -1
- package/dist/quickstarts.css +61 -0
- package/dist/quickstarts.min.css +1 -1
- package/package.json +1 -1
- 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
|
@@ -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
|
}
|