@kerkhoff-ict/solora 2.1.5 → 2.1.7
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/index.css +35 -0
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -643,6 +643,41 @@
|
|
|
643
643
|
.sol-input-error:focus {
|
|
644
644
|
box-shadow: 0 0 0 4px var(--color-error-glow, rgba(220, 53, 69, 0.15)) !important;
|
|
645
645
|
}
|
|
646
|
+
.sol-input::-webkit-outer-spin-button,
|
|
647
|
+
.sol-input::-webkit-inner-spin-button {
|
|
648
|
+
-webkit-appearance: none;
|
|
649
|
+
margin: 0;
|
|
650
|
+
}
|
|
651
|
+
.sol-input[type=number] {
|
|
652
|
+
-moz-appearance: textfield;
|
|
653
|
+
appearance: textfield;
|
|
654
|
+
}
|
|
655
|
+
.sol-input-group {
|
|
656
|
+
position: relative;
|
|
657
|
+
}
|
|
658
|
+
.sol-error-message {
|
|
659
|
+
color: var(--color-danger, #ff453a);
|
|
660
|
+
font-size: 0.75rem;
|
|
661
|
+
font-weight: 500;
|
|
662
|
+
margin-top: 0.2rem;
|
|
663
|
+
margin-left: 0.2rem;
|
|
664
|
+
display: none;
|
|
665
|
+
animation: solFadeIn 0.2s ease-out;
|
|
666
|
+
}
|
|
667
|
+
@keyframes solFadeIn {
|
|
668
|
+
from {
|
|
669
|
+
opacity: 0;
|
|
670
|
+
transform: translateY(-5px);
|
|
671
|
+
}
|
|
672
|
+
to {
|
|
673
|
+
opacity: 1;
|
|
674
|
+
transform: translateY(0);
|
|
675
|
+
}
|
|
676
|
+
}
|
|
677
|
+
.sol-input.is-invalid {
|
|
678
|
+
border-color: var(--color-danger, #ff453a) !important;
|
|
679
|
+
box-shadow: 0 0 0 4px var(--color-error-glow, rgba(255, 69, 58, 0.15)) !important;
|
|
680
|
+
}
|
|
646
681
|
:root.dark .sol-label {
|
|
647
682
|
color: var(--color-text-light, #fff);
|
|
648
683
|
opacity: 0.6;
|