optimized-react-component-library-xyz123 0.10.1 → 0.10.3
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/darkMode.css +10 -0
- package/src/css/questions.css +12 -0
package/package.json
CHANGED
package/src/css/darkMode.css
CHANGED
|
@@ -181,6 +181,16 @@
|
|
|
181
181
|
color: var(--dark-text);
|
|
182
182
|
}
|
|
183
183
|
|
|
184
|
+
input:-webkit-autofill,
|
|
185
|
+
input:-webkit-autofill:hover,
|
|
186
|
+
input:-webkit-autofill:focus,
|
|
187
|
+
input:-webkit-autofill:active {
|
|
188
|
+
-webkit-box-shadow: 0 0 0 1000px var(--input-bg) inset !important;
|
|
189
|
+
box-shadow: 0 0 0 1000px var(--dark-main) inset !important;
|
|
190
|
+
-webkit-text-fill-color: var(--dark-info) !important;
|
|
191
|
+
transition: background-color 9999s ease-in-out 0s !important;
|
|
192
|
+
}
|
|
193
|
+
|
|
184
194
|
|
|
185
195
|
/* ---------- STEPPER BUTTON ---------- */
|
|
186
196
|
|
package/src/css/questions.css
CHANGED
|
@@ -109,6 +109,18 @@ div.pts-root-question:last-child {
|
|
|
109
109
|
height: 4.8rem;
|
|
110
110
|
}
|
|
111
111
|
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
input:-webkit-autofill,
|
|
115
|
+
input:-webkit-autofill:hover,
|
|
116
|
+
input:-webkit-autofill:focus,
|
|
117
|
+
input:-webkit-autofill:active {
|
|
118
|
+
-webkit-box-shadow: 0 0 0 1000px var(--input-bg) inset !important;
|
|
119
|
+
box-shadow: 0 0 0 1000px #FFFFFF inset !important;
|
|
120
|
+
-webkit-text-fill-color: var(--info) !important;
|
|
121
|
+
transition: background-color 9999s ease-in-out 0s !important;
|
|
122
|
+
}
|
|
123
|
+
|
|
112
124
|
/* ---------- RADIO MULTIPLE ---------- */
|
|
113
125
|
|
|
114
126
|
.pts-radioMultiple-container input[type='radio'] {
|