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