optimized-react-component-library-xyz123 0.41.3 → 0.41.4
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/package.json +1 -1
- package/src/css/styles.css +12 -12
package/package.json
CHANGED
package/src/css/styles.css
CHANGED
|
@@ -195,6 +195,18 @@ textarea:focus-visible,
|
|
|
195
195
|
box-shadow: 0 0 0 4px #000 !important;
|
|
196
196
|
}
|
|
197
197
|
|
|
198
|
+
/* Autofill (grund) */
|
|
199
|
+
input:-webkit-autofill,
|
|
200
|
+
input:-webkit-autofill:hover,
|
|
201
|
+
input:-webkit-autofill:focus {
|
|
202
|
+
-webkit-text-fill-color: #000 !important;
|
|
203
|
+
transition: background-color 9999s ease-out 0s; /* minskar blink i vissa fall */
|
|
204
|
+
|
|
205
|
+
/* Måla över autofill-bakgrunden */
|
|
206
|
+
-webkit-box-shadow: 0 0 0 1000px #fff inset !important;
|
|
207
|
+
box-shadow: 0 0 0 1000px #fff inset !important;
|
|
208
|
+
}
|
|
209
|
+
|
|
198
210
|
/* Autofill + focus-visible (tangentbord) */
|
|
199
211
|
input:focus-visible:-webkit-autofill {
|
|
200
212
|
outline: 2px solid #fff !important;
|
|
@@ -825,15 +837,3 @@ input:focus-visible:-webkit-autofill {
|
|
|
825
837
|
white-space: nowrap;
|
|
826
838
|
border: 0;
|
|
827
839
|
}
|
|
828
|
-
|
|
829
|
-
/* Autofill (grund) */
|
|
830
|
-
input:-webkit-autofill,
|
|
831
|
-
input:-webkit-autofill:hover,
|
|
832
|
-
input:-webkit-autofill:focus {
|
|
833
|
-
-webkit-text-fill-color: #000 !important;
|
|
834
|
-
transition: background-color 9999s ease-out 0s; /* minskar blink i vissa fall */
|
|
835
|
-
|
|
836
|
-
/* Måla över autofill-bakgrunden */
|
|
837
|
-
-webkit-box-shadow: 0 0 0 1000px #fff inset !important;
|
|
838
|
-
box-shadow: 0 0 0 1000px #fff inset !important;
|
|
839
|
-
}
|