@uniai-fe/ui-legacy 0.1.31 → 0.1.33
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
CHANGED
|
@@ -287,14 +287,15 @@ input::placeholder {
|
|
|
287
287
|
opacity: 1;
|
|
288
288
|
color: #959595;
|
|
289
289
|
}
|
|
290
|
-
|
|
290
|
+
/* Turbopack 호환을 위해 상태 selector를 pseudo-element 앞에 유지한다. */
|
|
291
|
+
input:not([readonly], [disabled]):focus::placeholder {
|
|
291
292
|
color: transparent;
|
|
292
293
|
}
|
|
293
294
|
textarea::placeholder {
|
|
294
295
|
opacity: 1;
|
|
295
296
|
color: #959595;
|
|
296
297
|
}
|
|
297
|
-
textarea:focus::placeholder {
|
|
298
|
+
textarea:not([readonly], [disabled]):focus::placeholder {
|
|
298
299
|
color: transparent;
|
|
299
300
|
}
|
|
300
301
|
[type="button"],
|
|
@@ -412,7 +413,7 @@ progress::-webkit-progress-bar {
|
|
|
412
413
|
background-color: #fff;
|
|
413
414
|
}
|
|
414
415
|
progress::-webkit-progress-value {
|
|
415
|
-
background-color:
|
|
416
|
+
background-color: gray;
|
|
416
417
|
}
|
|
417
418
|
|
|
418
419
|
// .readonly {display:none;}
|