@trackunit/css-core 1.3.165 → 1.4.0
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/lib/react-calendar.css +34 -10
package/package.json
CHANGED
|
@@ -60,12 +60,16 @@
|
|
|
60
60
|
|
|
61
61
|
.react-calendar__month-view__weekdays {
|
|
62
62
|
text-align: center;
|
|
63
|
-
text-transform: uppercase;
|
|
64
63
|
font: inherit;
|
|
65
64
|
font-size: 0.75em;
|
|
65
|
+
color: #94a3b8;
|
|
66
66
|
font-weight: bold;
|
|
67
67
|
}
|
|
68
68
|
|
|
69
|
+
.react-calendar__viewContainer abbr:where([title]) {
|
|
70
|
+
text-decoration: none !important;
|
|
71
|
+
}
|
|
72
|
+
|
|
69
73
|
.react-calendar__month-view__weekdays__weekday {
|
|
70
74
|
padding: 0.5em;
|
|
71
75
|
}
|
|
@@ -76,11 +80,14 @@
|
|
|
76
80
|
justify-content: center;
|
|
77
81
|
font: inherit;
|
|
78
82
|
font-size: 0.75em;
|
|
79
|
-
font-weight:
|
|
83
|
+
font-weight: 600;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.react-calendar__month-view__days {
|
|
87
|
+
row-gap: 8px;
|
|
80
88
|
}
|
|
81
89
|
|
|
82
90
|
.react-calendar__month-view__days__day--weekend {
|
|
83
|
-
color: #d10000;
|
|
84
91
|
}
|
|
85
92
|
|
|
86
93
|
.react-calendar__month-view__days__day--neighboringMonth,
|
|
@@ -120,13 +127,13 @@
|
|
|
120
127
|
background-color: #e6e6e6;
|
|
121
128
|
}
|
|
122
129
|
|
|
123
|
-
.react-calendar__tile--now {
|
|
124
|
-
|
|
130
|
+
.react-calendar__tile--now:not(.react-calendar__tile--active) {
|
|
131
|
+
color: #2563eb;
|
|
125
132
|
}
|
|
126
133
|
|
|
127
134
|
.react-calendar__tile--now:enabled:hover,
|
|
128
135
|
.react-calendar__tile--now:enabled:focus {
|
|
129
|
-
background: #
|
|
136
|
+
background: #1d50bc;
|
|
130
137
|
}
|
|
131
138
|
|
|
132
139
|
.react-calendar__tile--hasActive {
|
|
@@ -139,15 +146,32 @@
|
|
|
139
146
|
}
|
|
140
147
|
|
|
141
148
|
.react-calendar__tile--active {
|
|
142
|
-
background: #
|
|
143
|
-
|
|
149
|
+
background: #eff6ff;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.react-calendar__tile:not(.react-calendar__tile--active):enabled:hover {
|
|
153
|
+
border-radius: 8px 8px 8px 8px;
|
|
144
154
|
}
|
|
145
155
|
|
|
146
156
|
.react-calendar__tile--active:enabled:hover,
|
|
147
157
|
.react-calendar__tile--active:enabled:focus {
|
|
148
|
-
background: #
|
|
158
|
+
background: #eff6ff;
|
|
159
|
+
border-radius: none !important;
|
|
149
160
|
}
|
|
150
161
|
|
|
151
162
|
.react-calendar--selectRange .react-calendar__tile--hover {
|
|
152
|
-
background-color: #
|
|
163
|
+
background-color: #eff6ff;
|
|
164
|
+
border-radius: none !important;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.react-calendar__tile--rangeStart {
|
|
168
|
+
background: #006edc !important;
|
|
169
|
+
border-radius: 8px 8px 8px 8px;
|
|
170
|
+
color: white;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.react-calendar__tile--rangeEnd {
|
|
174
|
+
background: #006edc !important;
|
|
175
|
+
border-radius: 8px 8px 8px 8px;
|
|
176
|
+
color: white;
|
|
153
177
|
}
|