@uniai-fe/uds-primitives 0.4.3 → 0.4.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/dist/styles.css
CHANGED
|
@@ -1580,6 +1580,10 @@
|
|
|
1580
1580
|
color: var(--color-common-100);
|
|
1581
1581
|
}
|
|
1582
1582
|
|
|
1583
|
+
.calendar-day:where(:disabled, [data-disabled=true]) {
|
|
1584
|
+
color: var(--color-label-disabled);
|
|
1585
|
+
}
|
|
1586
|
+
|
|
1583
1587
|
.calendar-day:where(:not([data-disabled=true])):hover {
|
|
1584
1588
|
background-color: var(--color-secondary-default);
|
|
1585
1589
|
color: var(--color-label-standard);
|
package/package.json
CHANGED
|
@@ -229,6 +229,11 @@
|
|
|
229
229
|
color: var(--color-common-100);
|
|
230
230
|
}
|
|
231
231
|
|
|
232
|
+
.calendar-day:where(:disabled, [data-disabled="true"]) {
|
|
233
|
+
// 변경: disabled day는 배경 변경 없이 텍스트 컬러만 낮춰 상태를 드러낸다.
|
|
234
|
+
color: var(--color-label-disabled);
|
|
235
|
+
}
|
|
236
|
+
|
|
232
237
|
.calendar-day:where(:not([data-disabled="true"])):hover {
|
|
233
238
|
background-color: var(--color-secondary-default);
|
|
234
239
|
color: var(--color-label-standard);
|