@geomak/ui 7.4.3 → 7.5.0
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.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/styles.css +21 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -761,6 +761,27 @@ video {
|
|
|
761
761
|
*::-webkit-scrollbar-corner {
|
|
762
762
|
background: transparent;
|
|
763
763
|
}
|
|
764
|
+
input:-webkit-autofill,
|
|
765
|
+
input:-webkit-autofill:hover,
|
|
766
|
+
input:-webkit-autofill:focus,
|
|
767
|
+
textarea:-webkit-autofill,
|
|
768
|
+
select:-webkit-autofill {
|
|
769
|
+
box-shadow: 0 0 0 1000px var(--color-surface) inset;
|
|
770
|
+
-webkit-text-fill-color: var(--color-foreground);
|
|
771
|
+
caret-color: var(--color-foreground);
|
|
772
|
+
-webkit-transition: background-color 9999999s ease-out 0s;
|
|
773
|
+
transition: background-color 9999999s ease-out 0s;
|
|
774
|
+
}
|
|
775
|
+
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
|
|
776
|
+
background-color: var(--color-surface);
|
|
777
|
+
color: var(--color-foreground);
|
|
778
|
+
}
|
|
779
|
+
input:autofill,
|
|
780
|
+
textarea:autofill,
|
|
781
|
+
select:autofill {
|
|
782
|
+
background-color: var(--color-surface);
|
|
783
|
+
color: var(--color-foreground);
|
|
784
|
+
}
|
|
764
785
|
.container {
|
|
765
786
|
width: 100%;
|
|
766
787
|
}
|