@fluityy/designsystem 0.2.22 → 0.2.23
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/styles.css +72 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -541,3 +541,75 @@
|
|
|
541
541
|
animation: flui-drawer-out-bottom 220ms cubic-bezier(0.32, 0, 0.67, 0) forwards;
|
|
542
542
|
}
|
|
543
543
|
|
|
544
|
+
|
|
545
|
+
/* flui-* utility classes */
|
|
546
|
+
.flui-ai-border {
|
|
547
|
+
position: relative;
|
|
548
|
+
}
|
|
549
|
+
.flui-ai-border::after {
|
|
550
|
+
content: "";
|
|
551
|
+
position: absolute;
|
|
552
|
+
inset: 0;
|
|
553
|
+
border-radius: inherit;
|
|
554
|
+
pointer-events: none;
|
|
555
|
+
opacity: 0;
|
|
556
|
+
background: linear-gradient(
|
|
557
|
+
110deg,
|
|
558
|
+
color-mix(in srgb, var(--color-primary) 22%, transparent),
|
|
559
|
+
color-mix(in srgb, var(--color-primary) 100%, transparent) 35%,
|
|
560
|
+
color-mix(in srgb, var(--color-primary) 28%, transparent) 70%
|
|
561
|
+
);
|
|
562
|
+
background-size: 240% 100%;
|
|
563
|
+
transition: opacity 120ms ease-out;
|
|
564
|
+
filter: drop-shadow(0 0 6px color-mix(in srgb, var(--color-primary) 52%, transparent));
|
|
565
|
+
-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
|
|
566
|
+
-webkit-mask-composite: xor;
|
|
567
|
+
mask-composite: exclude;
|
|
568
|
+
padding: 2px;
|
|
569
|
+
}
|
|
570
|
+
.flui-ai-border:has(button[aria-busy="true"])::after {
|
|
571
|
+
opacity: 1;
|
|
572
|
+
animation: flui-ai-border-pan 1.25s linear infinite;
|
|
573
|
+
}
|
|
574
|
+
.flui-ai-border:has(button[aria-busy="true"]) input,
|
|
575
|
+
.flui-ai-border:has(button[aria-busy="true"]) textarea {
|
|
576
|
+
animation: flui-ai-text-refine 1s ease-in-out infinite;
|
|
577
|
+
}
|
|
578
|
+
.flui-ai-refined-blur-in {
|
|
579
|
+
animation: flui-ai-text-blur-in 420ms ease-out;
|
|
580
|
+
}
|
|
581
|
+
.flui-ai-badge-glow {
|
|
582
|
+
position: relative;
|
|
583
|
+
overflow: hidden;
|
|
584
|
+
isolation: isolate;
|
|
585
|
+
}
|
|
586
|
+
.flui-ai-badge-glow::after {
|
|
587
|
+
content: "";
|
|
588
|
+
position: absolute;
|
|
589
|
+
top: -35%;
|
|
590
|
+
bottom: -35%;
|
|
591
|
+
left: -35%;
|
|
592
|
+
width: 46%;
|
|
593
|
+
border-radius: inherit;
|
|
594
|
+
pointer-events: none;
|
|
595
|
+
background: linear-gradient(
|
|
596
|
+
100deg,
|
|
597
|
+
color-mix(in srgb, white 0%, transparent) 0%,
|
|
598
|
+
color-mix(in srgb, white 70%, transparent) 50%,
|
|
599
|
+
color-mix(in srgb, white 0%, transparent) 100%
|
|
600
|
+
);
|
|
601
|
+
filter: blur(0.6px);
|
|
602
|
+
will-change: transform;
|
|
603
|
+
animation: flui-ai-badge-sheen 3.2s linear infinite;
|
|
604
|
+
}
|
|
605
|
+
.flui-chart .recharts-surface,
|
|
606
|
+
.flui-chart .recharts-wrapper,
|
|
607
|
+
.flui-chart svg {
|
|
608
|
+
outline: none !important;
|
|
609
|
+
}
|
|
610
|
+
.flui-chart .recharts-surface:focus,
|
|
611
|
+
.flui-chart .recharts-surface:focus-visible,
|
|
612
|
+
.flui-chart .recharts-wrapper:focus,
|
|
613
|
+
.flui-chart .recharts-wrapper:focus-visible {
|
|
614
|
+
outline: none !important;
|
|
615
|
+
}
|