@macroui/macroui 1.0.31 → 4.0.1
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/LICENSE +21 -0
- package/README.md +27 -193
- package/dist/base.js +1 -0
- package/dist/{macroui.css → full.css} +0 -9014
- package/dist/index.d.ts +122 -0
- package/dist/index.js +149 -0
- package/dist/styled.css +5192 -0
- package/dist/styled.js +1 -0
- package/dist/themes.css +2118 -0
- package/dist/unstyled.css +1330 -0
- package/dist/unstyled.js +1 -0
- package/dist/utilities-styled.js +1 -0
- package/dist/utilities-unstyled.js +1 -0
- package/dist/utilities.js +1 -0
- package/package.json +30 -66
- package/src/base/properties.css +5 -0
- package/src/base/reset.css +130 -0
- package/src/base/rootcolor.css +9 -0
- package/src/base/rootscrollgutter.css +21 -0
- package/src/base/rootscrolllock.css +4 -0
- package/src/base/scrollbar.css +3 -0
- package/src/base/svg.css +3 -0
- package/src/components/alert.css +126 -0
- package/src/components/avatar.css +60 -0
- package/src/components/badge.css +151 -0
- package/src/components/breadcrumbs.css +40 -0
- package/src/components/button.css +362 -0
- package/src/components/calendar.css +549 -0
- package/src/components/card.css +203 -0
- package/src/components/carousel.css +59 -0
- package/src/components/chat.css +157 -0
- package/src/components/checkbox.css +174 -0
- package/src/components/collapse.css +302 -0
- package/src/components/countdown.css +56 -0
- package/src/components/diff.css +93 -0
- package/src/components/divider.css +148 -0
- package/src/components/dock.css +123 -0
- package/src/components/drawer.css +166 -0
- package/src/components/dropdown.css +247 -0
- package/src/components/fab.css +139 -0
- package/src/components/fieldset.css +23 -0
- package/src/components/fileinput.css +265 -0
- package/src/components/filter.css +42 -0
- package/src/components/footer.css +45 -0
- package/src/components/hero.css +21 -0
- package/src/components/hover3d.css +128 -0
- package/src/components/hovergallery.css +87 -0
- package/src/components/indicator.css +76 -0
- package/src/components/input.css +263 -0
- package/src/components/kbd.css +49 -0
- package/src/components/label.css +101 -0
- package/src/components/link.css +116 -0
- package/src/components/list.css +58 -0
- package/src/components/loading.css +76 -0
- package/src/components/mask.css +108 -0
- package/src/components/menu.css +298 -0
- package/src/components/mockup.css +150 -0
- package/src/components/modal.css +182 -0
- package/src/components/navbar.css +36 -0
- package/src/components/progress.css +108 -0
- package/src/components/radialprogress.css +39 -0
- package/src/components/radio.css +158 -0
- package/src/components/range.css +186 -0
- package/src/components/rating.css +114 -0
- package/src/components/select.css +284 -0
- package/src/components/skeleton.css +41 -0
- package/src/components/stack.css +80 -0
- package/src/components/stat.css +73 -0
- package/src/components/status.css +92 -0
- package/src/components/steps.css +168 -0
- package/src/components/swap.css +94 -0
- package/src/components/tab.css +557 -0
- package/src/components/table.css +126 -0
- package/src/components/textarea.css +179 -0
- package/src/components/textrotate.css +71 -0
- package/src/components/timeline.css +250 -0
- package/src/components/toast.css +68 -0
- package/src/components/toggle.css +239 -0
- package/src/components/tooltip.css +203 -0
- package/src/components/validator.css +47 -0
- package/src/themes/abyss.css +29 -0
- package/src/themes/acid.css +29 -0
- package/src/themes/aqua.css +29 -0
- package/src/themes/autumn.css +29 -0
- package/src/themes/black.css +29 -0
- package/src/themes/bumblebee.css +29 -0
- package/src/themes/business.css +29 -0
- package/src/themes/caramellatte.css +29 -0
- package/src/themes/cmyk.css +29 -0
- package/src/themes/coffee.css +29 -0
- package/src/themes/corporate.css +29 -0
- package/src/themes/cupcake.css +29 -0
- package/src/themes/cyberpunk.css +29 -0
- package/src/themes/dark.css +29 -0
- package/src/themes/dim.css +29 -0
- package/src/themes/dracula.css +29 -0
- package/src/themes/emerald.css +29 -0
- package/src/themes/fantasy.css +29 -0
- package/src/themes/forest.css +29 -0
- package/src/themes/garden.css +29 -0
- package/src/themes/halloween.css +29 -0
- package/src/themes/lemonade.css +29 -0
- package/src/themes/light.css +29 -0
- package/src/themes/lofi.css +29 -0
- package/src/themes/luxury.css +29 -0
- package/src/themes/night.css +29 -0
- package/src/themes/nord.css +29 -0
- package/src/themes/pastel.css +29 -0
- package/src/themes/retro.css +29 -0
- package/src/themes/silk.css +29 -0
- package/src/themes/sunset.css +29 -0
- package/src/themes/synthwave.css +29 -0
- package/src/themes/valentine.css +29 -0
- package/src/themes/winter.css +29 -0
- package/src/themes/wireframe.css +29 -0
- package/src/utilities/glass.css +20 -0
- package/src/utilities/join.css +207 -0
- package/src/utilities/radius.css +119 -0
- package/src/utilities/typography.css +31 -0
- package/dist/index.cjs.js +0 -19742
- package/dist/index.es.js +0 -19564
|
@@ -0,0 +1,549 @@
|
|
|
1
|
+
.cally {
|
|
2
|
+
@layer daisyui.l1.l2.l3 {
|
|
3
|
+
font-size: 0.7rem;
|
|
4
|
+
|
|
5
|
+
&::part(container) {
|
|
6
|
+
padding: 0.5rem 1rem;
|
|
7
|
+
user-select: none;
|
|
8
|
+
}
|
|
9
|
+
::part(th) {
|
|
10
|
+
font-weight: normal;
|
|
11
|
+
block-size: auto;
|
|
12
|
+
}
|
|
13
|
+
&::part(header) {
|
|
14
|
+
direction: ltr;
|
|
15
|
+
}
|
|
16
|
+
::part(head) {
|
|
17
|
+
opacity: 0.5;
|
|
18
|
+
font-size: 0.7rem;
|
|
19
|
+
}
|
|
20
|
+
&::part(button) {
|
|
21
|
+
border-radius: var(--radius-field);
|
|
22
|
+
border: none;
|
|
23
|
+
padding: 0.5rem;
|
|
24
|
+
background: #0000;
|
|
25
|
+
}
|
|
26
|
+
&::part(button):hover {
|
|
27
|
+
background: var(--color-base-200);
|
|
28
|
+
}
|
|
29
|
+
::part(day) {
|
|
30
|
+
border-radius: var(--radius-field);
|
|
31
|
+
font-size: 0.7rem;
|
|
32
|
+
}
|
|
33
|
+
::part(day):hover {
|
|
34
|
+
&:not(selected, today) {
|
|
35
|
+
background: var(--color-base-200);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
::part(button day today) {
|
|
39
|
+
background: var(--color-primary);
|
|
40
|
+
color: var(--color-primary-content);
|
|
41
|
+
}
|
|
42
|
+
::part(selected) {
|
|
43
|
+
color: var(--color-base-100);
|
|
44
|
+
background: var(--color-base-content);
|
|
45
|
+
border-radius: var(--radius-field);
|
|
46
|
+
}
|
|
47
|
+
::part(range-inner) {
|
|
48
|
+
border-radius: 0;
|
|
49
|
+
}
|
|
50
|
+
::part(range-start) {
|
|
51
|
+
border-start-end-radius: 0;
|
|
52
|
+
border-end-end-radius: 0;
|
|
53
|
+
}
|
|
54
|
+
::part(range-end) {
|
|
55
|
+
border-start-start-radius: 0;
|
|
56
|
+
border-end-start-radius: 0;
|
|
57
|
+
}
|
|
58
|
+
::part(range-start range-end) {
|
|
59
|
+
border-radius: var(--radius-field);
|
|
60
|
+
}
|
|
61
|
+
calendar-month {
|
|
62
|
+
width: 100%;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.react-day-picker {
|
|
68
|
+
@layer daisyui.l1.l2.l3 {
|
|
69
|
+
user-select: none;
|
|
70
|
+
background-color: var(--color-base-100);
|
|
71
|
+
border-radius: var(--radius-box);
|
|
72
|
+
border: var(--border) solid var(--color-base-200);
|
|
73
|
+
font-size: 0.75rem;
|
|
74
|
+
display: inline-block;
|
|
75
|
+
position: relative;
|
|
76
|
+
overflow: clip;
|
|
77
|
+
&[dir="rtl"] {
|
|
78
|
+
.rdp-nav {
|
|
79
|
+
.rdp-chevron {
|
|
80
|
+
transform-origin: 50%;
|
|
81
|
+
transform: rotate(180deg);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
* {
|
|
86
|
+
box-sizing: border-box;
|
|
87
|
+
}
|
|
88
|
+
.rdp-day {
|
|
89
|
+
width: 2.25rem;
|
|
90
|
+
height: 2.25rem;
|
|
91
|
+
text-align: center;
|
|
92
|
+
}
|
|
93
|
+
.rdp-day_button {
|
|
94
|
+
cursor: pointer;
|
|
95
|
+
font: inherit;
|
|
96
|
+
color: inherit;
|
|
97
|
+
width: 2.25rem;
|
|
98
|
+
height: 2.25rem;
|
|
99
|
+
border: 2px solid #0000;
|
|
100
|
+
border-radius: var(--radius-field);
|
|
101
|
+
background: 0 0;
|
|
102
|
+
justify-content: center;
|
|
103
|
+
align-items: center;
|
|
104
|
+
margin: 0;
|
|
105
|
+
padding: 0;
|
|
106
|
+
display: flex;
|
|
107
|
+
&:disabled {
|
|
108
|
+
cursor: revert;
|
|
109
|
+
}
|
|
110
|
+
&:hover {
|
|
111
|
+
background-color: var(--color-base-200);
|
|
112
|
+
}
|
|
113
|
+
&:disabled:hover,
|
|
114
|
+
&[aria-disabled="true"]:hover {
|
|
115
|
+
background-color: transparent;
|
|
116
|
+
cursor: not-allowed;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
.rdp-caption_label {
|
|
120
|
+
z-index: 1;
|
|
121
|
+
white-space: nowrap;
|
|
122
|
+
border: 0;
|
|
123
|
+
align-items: center;
|
|
124
|
+
display: inline-flex;
|
|
125
|
+
position: relative;
|
|
126
|
+
}
|
|
127
|
+
.rdp-button_next {
|
|
128
|
+
border-radius: var(--radius-field);
|
|
129
|
+
&:hover {
|
|
130
|
+
background-color: var(--color-base-200);
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
.rdp-button_previous {
|
|
134
|
+
border-radius: var(--radius-field);
|
|
135
|
+
&:hover {
|
|
136
|
+
background-color: var(--color-base-200);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
.rdp-button_next,
|
|
140
|
+
.rdp-button_previous {
|
|
141
|
+
cursor: pointer;
|
|
142
|
+
font: inherit;
|
|
143
|
+
color: inherit;
|
|
144
|
+
appearance: none;
|
|
145
|
+
width: 2.25rem;
|
|
146
|
+
height: 2.25rem;
|
|
147
|
+
background: 0 0;
|
|
148
|
+
border: none;
|
|
149
|
+
justify-content: center;
|
|
150
|
+
align-items: center;
|
|
151
|
+
margin: 0;
|
|
152
|
+
padding: 0;
|
|
153
|
+
display: inline-flex;
|
|
154
|
+
position: relative;
|
|
155
|
+
|
|
156
|
+
&:disabled,
|
|
157
|
+
&[aria-disabled="true"] {
|
|
158
|
+
cursor: revert;
|
|
159
|
+
opacity: 0.5;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
&:disabled:hover,
|
|
163
|
+
&[aria-disabled="true"]:hover {
|
|
164
|
+
background-color: transparent;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
.rdp-chevron {
|
|
168
|
+
fill: var(--color-base-content);
|
|
169
|
+
width: 1rem;
|
|
170
|
+
height: 1rem;
|
|
171
|
+
display: inline-block;
|
|
172
|
+
}
|
|
173
|
+
.rdp-dropdowns {
|
|
174
|
+
align-items: center;
|
|
175
|
+
gap: 0.5rem;
|
|
176
|
+
display: inline-flex;
|
|
177
|
+
position: relative;
|
|
178
|
+
}
|
|
179
|
+
.rdp-dropdown {
|
|
180
|
+
z-index: 2;
|
|
181
|
+
opacity: 0;
|
|
182
|
+
appearance: none;
|
|
183
|
+
cursor: inherit;
|
|
184
|
+
line-height: inherit;
|
|
185
|
+
border: none;
|
|
186
|
+
width: 100%;
|
|
187
|
+
margin: 0;
|
|
188
|
+
padding: 0;
|
|
189
|
+
position: absolute;
|
|
190
|
+
inset-block: 0;
|
|
191
|
+
inset-inline-start: 0;
|
|
192
|
+
&:focus-visible {
|
|
193
|
+
~ .rdp-caption_label {
|
|
194
|
+
outline: 5px auto highlight;
|
|
195
|
+
outline: 5px auto -webkit-focus-ring-color;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
.rdp-dropdown_root {
|
|
200
|
+
align-items: center;
|
|
201
|
+
display: inline-flex;
|
|
202
|
+
position: relative;
|
|
203
|
+
&[data-disabled="true"] {
|
|
204
|
+
.rdp-chevron {
|
|
205
|
+
opacity: 0.5;
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
.rdp-month_caption {
|
|
210
|
+
height: 2.75rem;
|
|
211
|
+
font-size: 0.75rem;
|
|
212
|
+
font-weight: inherit;
|
|
213
|
+
place-content: center;
|
|
214
|
+
display: flex;
|
|
215
|
+
}
|
|
216
|
+
.rdp-months {
|
|
217
|
+
gap: 2rem;
|
|
218
|
+
flex-wrap: wrap;
|
|
219
|
+
max-width: fit-content;
|
|
220
|
+
padding: 0.5rem;
|
|
221
|
+
display: flex;
|
|
222
|
+
position: relative;
|
|
223
|
+
}
|
|
224
|
+
.rdp-month_grid {
|
|
225
|
+
border-collapse: collapse;
|
|
226
|
+
}
|
|
227
|
+
.rdp-nav {
|
|
228
|
+
height: 2.75rem;
|
|
229
|
+
inset-block-start: 0;
|
|
230
|
+
inset-inline-end: 0;
|
|
231
|
+
justify-content: space-between;
|
|
232
|
+
align-items: center;
|
|
233
|
+
width: 100%;
|
|
234
|
+
padding-inline: 0.5rem;
|
|
235
|
+
display: flex;
|
|
236
|
+
position: absolute;
|
|
237
|
+
top: 0.25rem;
|
|
238
|
+
}
|
|
239
|
+
.rdp-weekday {
|
|
240
|
+
opacity: 0.6;
|
|
241
|
+
padding: 0.5rem 0rem;
|
|
242
|
+
text-align: center;
|
|
243
|
+
font-size: smaller;
|
|
244
|
+
font-weight: 500;
|
|
245
|
+
}
|
|
246
|
+
.rdp-week_number {
|
|
247
|
+
opacity: 0.6;
|
|
248
|
+
height: 2.25rem;
|
|
249
|
+
width: 2.25rem;
|
|
250
|
+
border: none;
|
|
251
|
+
border-radius: 100%;
|
|
252
|
+
text-align: center;
|
|
253
|
+
font-size: small;
|
|
254
|
+
font-weight: 400;
|
|
255
|
+
}
|
|
256
|
+
.rdp-today:not(.rdp-outside) {
|
|
257
|
+
.rdp-day_button {
|
|
258
|
+
background: var(--color-primary);
|
|
259
|
+
color: var(--color-primary-content);
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
.rdp-selected {
|
|
263
|
+
font-weight: inherit;
|
|
264
|
+
font-size: 0.75rem;
|
|
265
|
+
.rdp-day_button {
|
|
266
|
+
color: var(--color-base-100);
|
|
267
|
+
background-color: var(--color-base-content);
|
|
268
|
+
border-radius: var(--radius-field);
|
|
269
|
+
border: none;
|
|
270
|
+
&:hover {
|
|
271
|
+
background-color: var(--color-base-content);
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
.rdp-outside {
|
|
276
|
+
opacity: 0.75;
|
|
277
|
+
}
|
|
278
|
+
.rdp-disabled {
|
|
279
|
+
opacity: 0.5;
|
|
280
|
+
}
|
|
281
|
+
.rdp-hidden {
|
|
282
|
+
visibility: hidden;
|
|
283
|
+
color: var(--color-base-content);
|
|
284
|
+
}
|
|
285
|
+
.rdp-range_start {
|
|
286
|
+
.rdp-day_button {
|
|
287
|
+
border-radius: var(--radius-field) 0 0 var(--radius-field);
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
.rdp-range_start .rdp-day_button {
|
|
291
|
+
background-color: var(--color-base-content);
|
|
292
|
+
color: var(--color-base-100);
|
|
293
|
+
}
|
|
294
|
+
.rdp-range_middle {
|
|
295
|
+
background-color: var(--color-base-200);
|
|
296
|
+
}
|
|
297
|
+
.rdp-range_middle .rdp-day_button {
|
|
298
|
+
border: unset;
|
|
299
|
+
border-radius: unset;
|
|
300
|
+
color: inherit;
|
|
301
|
+
}
|
|
302
|
+
.rdp-range_end {
|
|
303
|
+
color: var(--color-base-content);
|
|
304
|
+
.rdp-day_button {
|
|
305
|
+
border-radius: 0 var(--radius-field) var(--radius-field) 0;
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
.rdp-range_end .rdp-day_button {
|
|
309
|
+
background-color: var(--color-base-content);
|
|
310
|
+
color: var(--color-base-100);
|
|
311
|
+
}
|
|
312
|
+
.rdp-range_start.rdp-range_end {
|
|
313
|
+
background: revert;
|
|
314
|
+
}
|
|
315
|
+
.rdp-focusable {
|
|
316
|
+
cursor: pointer;
|
|
317
|
+
}
|
|
318
|
+
.rdp-footer {
|
|
319
|
+
border-top: var(--border) solid var(--color-base-200);
|
|
320
|
+
padding: 0.5rem;
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.pika-single {
|
|
326
|
+
@layer daisyui.l1.l2.l3 {
|
|
327
|
+
&:is(div) {
|
|
328
|
+
user-select: none;
|
|
329
|
+
font-size: 0.75rem;
|
|
330
|
+
z-index: 999;
|
|
331
|
+
display: inline-block;
|
|
332
|
+
position: relative;
|
|
333
|
+
color: var(--color-base-content);
|
|
334
|
+
background-color: var(--color-base-100);
|
|
335
|
+
border-radius: var(--radius-box);
|
|
336
|
+
border: var(--border) solid var(--color-base-200);
|
|
337
|
+
padding: 0.5rem;
|
|
338
|
+
&:before,
|
|
339
|
+
&:after {
|
|
340
|
+
content: "";
|
|
341
|
+
display: table;
|
|
342
|
+
}
|
|
343
|
+
&:after {
|
|
344
|
+
clear: both;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
&.is-hidden {
|
|
348
|
+
display: none;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
&.is-bound {
|
|
352
|
+
position: absolute;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
.pika-lendar {
|
|
356
|
+
float: left;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.pika-title {
|
|
360
|
+
position: relative;
|
|
361
|
+
text-align: center;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.pika-label {
|
|
365
|
+
display: inline-block;
|
|
366
|
+
position: relative;
|
|
367
|
+
z-index: 999;
|
|
368
|
+
overflow: hidden;
|
|
369
|
+
margin: 0;
|
|
370
|
+
padding: 5px 3px;
|
|
371
|
+
background-color: var(--color-base-100);
|
|
372
|
+
}
|
|
373
|
+
.pika-title {
|
|
374
|
+
select {
|
|
375
|
+
cursor: pointer;
|
|
376
|
+
position: absolute;
|
|
377
|
+
z-index: 999;
|
|
378
|
+
margin: 0;
|
|
379
|
+
left: 0;
|
|
380
|
+
top: 5px;
|
|
381
|
+
opacity: 0;
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.pika-prev,
|
|
386
|
+
.pika-next {
|
|
387
|
+
display: block;
|
|
388
|
+
cursor: pointer;
|
|
389
|
+
position: absolute;
|
|
390
|
+
top: 0;
|
|
391
|
+
outline: none;
|
|
392
|
+
border: 0;
|
|
393
|
+
width: 2.25rem;
|
|
394
|
+
height: 2.25rem;
|
|
395
|
+
color: #0000;
|
|
396
|
+
font-size: 1.2em;
|
|
397
|
+
border-radius: var(--radius-field);
|
|
398
|
+
&:hover {
|
|
399
|
+
background-color: var(--color-base-200);
|
|
400
|
+
}
|
|
401
|
+
&.is-disabled {
|
|
402
|
+
cursor: default;
|
|
403
|
+
opacity: 0.2;
|
|
404
|
+
}
|
|
405
|
+
&:before {
|
|
406
|
+
display: inline-block;
|
|
407
|
+
width: 2.25rem;
|
|
408
|
+
height: 2.25rem;
|
|
409
|
+
line-height: 2.25;
|
|
410
|
+
color: var(--color-base-content);
|
|
411
|
+
}
|
|
412
|
+
}
|
|
413
|
+
.pika-prev {
|
|
414
|
+
left: 0;
|
|
415
|
+
&:before {
|
|
416
|
+
--tw-content: "‹";
|
|
417
|
+
content: var(--tw-content);
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
.pika-next {
|
|
422
|
+
right: 0;
|
|
423
|
+
&:before {
|
|
424
|
+
--tw-content: "›";
|
|
425
|
+
content: var(--tw-content);
|
|
426
|
+
}
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.pika-select {
|
|
430
|
+
display: inline-block;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
.pika-table {
|
|
434
|
+
width: 100%;
|
|
435
|
+
border-collapse: collapse;
|
|
436
|
+
border-spacing: 0;
|
|
437
|
+
border: 0;
|
|
438
|
+
}
|
|
439
|
+
.pika-table {
|
|
440
|
+
th,
|
|
441
|
+
td {
|
|
442
|
+
padding: 0;
|
|
443
|
+
}
|
|
444
|
+
th {
|
|
445
|
+
opacity: 0.6;
|
|
446
|
+
text-align: center;
|
|
447
|
+
width: 2.25rem;
|
|
448
|
+
height: 2.25rem;
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.pika-button {
|
|
453
|
+
cursor: pointer;
|
|
454
|
+
display: block;
|
|
455
|
+
outline: none;
|
|
456
|
+
border: 0;
|
|
457
|
+
margin: 0;
|
|
458
|
+
width: 2.25rem;
|
|
459
|
+
height: 2.25rem;
|
|
460
|
+
padding: 5px;
|
|
461
|
+
text-align: right;
|
|
462
|
+
text-align: center;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
.pika-week {
|
|
466
|
+
color: var(--color-base-content);
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
.is-today {
|
|
470
|
+
.pika-button {
|
|
471
|
+
background: var(--color-primary);
|
|
472
|
+
color: var(--color-primary-content);
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
.is-selected,
|
|
476
|
+
.has-event {
|
|
477
|
+
.pika-button {
|
|
478
|
+
&,
|
|
479
|
+
&:hover {
|
|
480
|
+
color: var(--color-base-100);
|
|
481
|
+
background-color: var(--color-base-content);
|
|
482
|
+
border-radius: var(--radius-field);
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
.has-event {
|
|
488
|
+
.pika-button {
|
|
489
|
+
background: var(--color-base-primary);
|
|
490
|
+
}
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
.is-disabled,
|
|
494
|
+
.is-inrange {
|
|
495
|
+
.pika-button {
|
|
496
|
+
background: var(--color-base-primary);
|
|
497
|
+
}
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
.is-startrange {
|
|
501
|
+
.pika-button {
|
|
502
|
+
color: var(--color-base-100);
|
|
503
|
+
background: var(--color-base-content);
|
|
504
|
+
border-radius: var(--radius-field);
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
.is-endrange {
|
|
509
|
+
.pika-button {
|
|
510
|
+
color: var(--color-base-100);
|
|
511
|
+
background: var(--color-base-content);
|
|
512
|
+
border-radius: var(--radius-field);
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.is-disabled {
|
|
517
|
+
.pika-button {
|
|
518
|
+
pointer-events: none;
|
|
519
|
+
cursor: default;
|
|
520
|
+
color: var(--color-base-content);
|
|
521
|
+
opacity: 0.3;
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.is-outside-current-month {
|
|
526
|
+
.pika-button {
|
|
527
|
+
color: var(--color-base-content);
|
|
528
|
+
opacity: 0.3;
|
|
529
|
+
}
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
.is-selection-disabled {
|
|
533
|
+
pointer-events: none;
|
|
534
|
+
cursor: default;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
.pika-button:hover,
|
|
538
|
+
.pika-row.pick-whole-week:hover .pika-button {
|
|
539
|
+
color: var(--color-base-content);
|
|
540
|
+
background-color: var(--color-base-200);
|
|
541
|
+
border-radius: var(--radius-field);
|
|
542
|
+
}
|
|
543
|
+
.pika-table abbr {
|
|
544
|
+
text-decoration: none;
|
|
545
|
+
font-weight: normal;
|
|
546
|
+
}
|
|
547
|
+
}
|
|
548
|
+
}
|
|
549
|
+
}
|