@uniai-fe/uds-foundation 0.4.1 → 0.4.2
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 +3 -3
- package/package.json +1 -1
- package/src/init/reset.scss +4 -5
package/dist/index.css
CHANGED
|
@@ -205,11 +205,11 @@
|
|
|
205
205
|
opacity: 1;
|
|
206
206
|
color: #959595;
|
|
207
207
|
}
|
|
208
|
-
input:
|
|
208
|
+
input:not([readonly], [disabled]):focus::-moz-placeholder, textarea:not([readonly], [disabled]):focus::-moz-placeholder {
|
|
209
209
|
color: transparent;
|
|
210
210
|
}
|
|
211
|
-
input:
|
|
212
|
-
textarea:
|
|
211
|
+
input:not([readonly], [disabled]):focus::placeholder,
|
|
212
|
+
textarea:not([readonly], [disabled]):focus::placeholder {
|
|
213
213
|
color: transparent;
|
|
214
214
|
}
|
|
215
215
|
[type=button],
|
package/package.json
CHANGED
package/src/init/reset.scss
CHANGED
|
@@ -224,11 +224,10 @@
|
|
|
224
224
|
color: #959595;
|
|
225
225
|
}
|
|
226
226
|
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
}
|
|
227
|
+
// Turbopack 호환을 위해 상태 selector를 pseudo-element 앞에 고정한다.
|
|
228
|
+
input:not([readonly], [disabled]):focus::placeholder,
|
|
229
|
+
textarea:not([readonly], [disabled]):focus::placeholder {
|
|
230
|
+
color: transparent;
|
|
232
231
|
}
|
|
233
232
|
|
|
234
233
|
[type="button"],
|