@ldmjs/ui 1.0.1 → 1.0.3
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/README.md +15 -0
- package/dist/css/calendar.css +1125 -15
- package/dist/css/index.css +11 -9
- package/dist/imask.js +1 -1
- package/dist/index.js +4300 -207
- package/dist/multiselect.js +1 -1
- package/dist/runtime-template.js +1 -1
- package/dist/scss/_buttons.scss +93 -16
- package/dist/scss/_colors.scss +0 -10
- package/dist/scss/_inputs.scss +12 -2
- package/dist/scss/_multiselect.scss +2 -1
- package/dist/types/options.d.ts +1 -0
- package/package.json +6 -5
package/dist/css/calendar.css
CHANGED
|
@@ -1,29 +1,1139 @@
|
|
|
1
|
-
.vc-popover-content-wrapper{--popover-horizontal-content-offset: 8px;--popover-vertical-content-offset: 10px;--popover-caret-horizontal-offset: 18px;--popover-caret-vertical-offset: 8px;position:absolute;display:block;outline:none;z-index:10}.vc-popover-content-wrapper:not(.is-interactive){pointer-events:none}.vc-popover-content{position:relative;color:var(--vc-popover-content-color);font-weight:var(--vc-font-medium);background-color:var(--vc-popover-content-bg);border:1px solid;border-color:var(--vc-popover-content-border);border-radius:var(--vc-rounded-lg);padding:4px;outline:none;z-index:10;box-shadow:var(--vc-shadow-lg)}.vc-popover-content.direction-bottom{margin-top:var(--popover-vertical-content-offset)}.vc-popover-content.direction-top{margin-bottom:var(--popover-vertical-content-offset)}.vc-popover-content.direction-left{margin-right:var(--popover-horizontal-content-offset)}.vc-popover-content.direction-right{margin-left:var(--popover-horizontal-content-offset)}.vc-popover-caret{content:'';position:absolute;display:block;width:12px;height:12px;border-top:inherit;border-left:inherit;background-color:inherit;z-index:-1}.vc-popover-caret.direction-bottom{top:0}.vc-popover-caret.direction-bottom.align-left{transform:translateY(-50%) rotate(45deg)}.vc-popover-caret.direction-bottom.align-center{transform:translateX(-50%) translateY(-50%) rotate(45deg)}.vc-popover-caret.direction-bottom.align-right{transform:translateY(-50%) rotate(45deg)}.vc-popover-caret.direction-top{top:100%}.vc-popover-caret.direction-top.align-left{transform:translateY(-50%) rotate(-135deg)}.vc-popover-caret.direction-top.align-center{transform:translateX(-50%) translateY(-50%) rotate(-135deg)}.vc-popover-caret.direction-top.align-right{transform:translateY(-50%) rotate(-135deg)}.vc-popover-caret.direction-left{left:100%}.vc-popover-caret.direction-left.align-top{transform:translateX(-50%) rotate(135deg)}.vc-popover-caret.direction-left.align-middle{transform:translateY(-50%) translateX(-50%) rotate(135deg)}.vc-popover-caret.direction-left.align-bottom{transform:translateX(-50%) rotate(135deg)}.vc-popover-caret.direction-right{left:0}.vc-popover-caret.direction-right.align-top{transform:translateX(-50%) rotate(-45deg)}.vc-popover-caret.direction-right.align-middle{transform:translateY(-50%) translateX(-50%) rotate(-45deg)}.vc-popover-caret.direction-right.align-bottom{transform:translateX(-50%) rotate(-45deg)}.vc-popover-caret.align-left{left:var(--popover-caret-horizontal-offset)}.vc-popover-caret.align-center{left:50%}.vc-popover-caret.align-right{right:var(--popover-caret-horizontal-offset)}.vc-popover-caret.align-top{top:var(--popover-caret-vertical-offset)}.vc-popover-caret.align-middle{top:50%}.vc-popover-caret.align-bottom{bottom:var(--popover-caret-vertical-offset)}
|
|
2
1
|
|
|
3
|
-
.vc-
|
|
2
|
+
.vc-popover-content-wrapper {
|
|
3
|
+
--popover-horizontal-content-offset: 8px;
|
|
4
|
+
--popover-vertical-content-offset: 10px;
|
|
5
|
+
--popover-caret-horizontal-offset: 18px;
|
|
6
|
+
--popover-caret-vertical-offset: 8px;
|
|
4
7
|
|
|
5
|
-
|
|
8
|
+
position: absolute;
|
|
9
|
+
display: block;
|
|
10
|
+
outline: none;
|
|
11
|
+
z-index: 10;
|
|
12
|
+
&:not(.is-interactive) {
|
|
13
|
+
pointer-events: none;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
.vc-popover-content {
|
|
17
|
+
position: relative;
|
|
18
|
+
color: var(--vc-popover-content-color);
|
|
19
|
+
font-weight: var(--vc-font-medium);
|
|
20
|
+
background-color: var(--vc-popover-content-bg);
|
|
21
|
+
border: 1px solid;
|
|
22
|
+
border-color: var(--vc-popover-content-border);
|
|
23
|
+
border-radius: var(--vc-rounded-lg);
|
|
24
|
+
padding: 4px;
|
|
25
|
+
outline: none;
|
|
26
|
+
z-index: 10;
|
|
27
|
+
box-shadow: var(--vc-shadow-lg);
|
|
28
|
+
&.direction-bottom {
|
|
29
|
+
margin-top: var(--popover-vertical-content-offset);
|
|
30
|
+
}
|
|
31
|
+
&.direction-top {
|
|
32
|
+
margin-bottom: var(--popover-vertical-content-offset);
|
|
33
|
+
}
|
|
34
|
+
&.direction-left {
|
|
35
|
+
margin-right: var(--popover-horizontal-content-offset);
|
|
36
|
+
}
|
|
37
|
+
&.direction-right {
|
|
38
|
+
margin-left: var(--popover-horizontal-content-offset);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
.vc-popover-caret {
|
|
42
|
+
content: '';
|
|
43
|
+
position: absolute;
|
|
44
|
+
display: block;
|
|
45
|
+
width: 12px;
|
|
46
|
+
height: 12px;
|
|
47
|
+
border-top: inherit;
|
|
48
|
+
border-left: inherit;
|
|
49
|
+
background-color: inherit;
|
|
50
|
+
z-index: -1;
|
|
51
|
+
&.direction-bottom {
|
|
52
|
+
top: 0;
|
|
53
|
+
&.align-left {
|
|
54
|
+
transform: translateY(-50%) rotate(45deg);
|
|
55
|
+
}
|
|
56
|
+
&.align-center {
|
|
57
|
+
transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
|
58
|
+
}
|
|
59
|
+
&.align-right {
|
|
60
|
+
transform: translateY(-50%) rotate(45deg);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
&.direction-top {
|
|
64
|
+
top: 100%;
|
|
65
|
+
&.align-left {
|
|
66
|
+
transform: translateY(-50%) rotate(-135deg);
|
|
67
|
+
}
|
|
68
|
+
&.align-center {
|
|
69
|
+
transform: translateX(-50%) translateY(-50%) rotate(-135deg);
|
|
70
|
+
}
|
|
71
|
+
&.align-right {
|
|
72
|
+
transform: translateY(-50%) rotate(-135deg);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
&.direction-left {
|
|
76
|
+
left: 100%;
|
|
77
|
+
&.align-top {
|
|
78
|
+
transform: translateX(-50%) rotate(135deg);
|
|
79
|
+
}
|
|
80
|
+
&.align-middle {
|
|
81
|
+
transform: translateY(-50%) translateX(-50%) rotate(135deg);
|
|
82
|
+
}
|
|
83
|
+
&.align-bottom {
|
|
84
|
+
transform: translateX(-50%) rotate(135deg);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
&.direction-right {
|
|
88
|
+
left: 0;
|
|
89
|
+
&.align-top {
|
|
90
|
+
transform: translateX(-50%) rotate(-45deg);
|
|
91
|
+
}
|
|
92
|
+
&.align-middle {
|
|
93
|
+
transform: translateY(-50%) translateX(-50%) rotate(-45deg);
|
|
94
|
+
}
|
|
95
|
+
&.align-bottom {
|
|
96
|
+
transform: translateX(-50%) rotate(-45deg);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
&.align-left {
|
|
100
|
+
left: var(--popover-caret-horizontal-offset);
|
|
101
|
+
}
|
|
102
|
+
&.align-center {
|
|
103
|
+
left: 50%;
|
|
104
|
+
}
|
|
105
|
+
&.align-right {
|
|
106
|
+
right: var(--popover-caret-horizontal-offset);
|
|
107
|
+
}
|
|
108
|
+
&.align-top {
|
|
109
|
+
top: var(--popover-caret-vertical-offset);
|
|
110
|
+
}
|
|
111
|
+
&.align-middle {
|
|
112
|
+
top: 50%;
|
|
113
|
+
}
|
|
114
|
+
&.align-bottom {
|
|
115
|
+
bottom: var(--popover-caret-vertical-offset);
|
|
116
|
+
}
|
|
117
|
+
}
|
|
6
118
|
|
|
7
|
-
.vc-header{display:grid;grid-gap:4px;align-items:center;height:30px;margin-top:10px;padding-left:10px;padding-right:10px}.vc-header.is-lg{font-size:var(--vc-text-lg)}.vc-header.is-xl{font-size:var(--vc-text-xl)}.vc-header.is-2xl{font-size:var(--vc-text-2xl)}.vc-header .vc-title-wrapper{grid-row:1;grid-column:title}.vc-header .vc-prev{grid-row:1;grid-column:prev}.vc-header .vc-next{grid-row:1;grid-column:next}.vc-header .vc-title,.vc-header .vc-prev,.vc-header .vc-next{display:flex;align-items:center;border:0;border-radius:var(--vc-rounded);pointer-events:auto;user-select:none;cursor:pointer}.vc-header .vc-title{color:var(--vc-header-title-color);font-weight:var(--vc-font-semibold);white-space:nowrap;padding:0 8px;margin:0;line-height:30px}.vc-header .vc-title:hover{opacity:0.75}.vc-header .vc-arrow{display:flex;justify-content:center;align-items:center;color:var(--vc-header-arrow-color);width:28px;height:30px;margin:0;padding:0}.vc-header .vc-arrow:hover{background:var(--vc-header-arrow-hover-bg)}.vc-header .vc-arrow:disabled{opacity:0.25;pointer-events:none}
|
|
8
119
|
|
|
9
|
-
.vc-
|
|
120
|
+
.vc-day-popover-row {
|
|
121
|
+
display: flex;
|
|
122
|
+
align-items: center;
|
|
123
|
+
transition: var(--vc-day-content-transition);
|
|
124
|
+
}
|
|
125
|
+
.vc-day-popover-row-indicator {
|
|
126
|
+
display: flex;
|
|
127
|
+
justify-content: center;
|
|
128
|
+
align-items: center;
|
|
129
|
+
flex-grow: 0;
|
|
130
|
+
width: 15px;
|
|
131
|
+
& span {
|
|
132
|
+
transition: var(--vc-day-content-transition);
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
.vc-day-popover-row-label {
|
|
136
|
+
display: flex;
|
|
137
|
+
align-items: center;
|
|
138
|
+
flex-wrap: none;
|
|
139
|
+
flex-grow: 1;
|
|
140
|
+
width: max-content;
|
|
141
|
+
margin-left: 4px;
|
|
142
|
+
margin-right: 4px;
|
|
143
|
+
font-size: var(--vc-text-xs);
|
|
144
|
+
line-height: var(--vc-leading-normal);
|
|
145
|
+
}
|
|
146
|
+
.vc-day-popover-row-highlight {
|
|
147
|
+
width: 8px;
|
|
148
|
+
height: 5px;
|
|
149
|
+
border-radius: 3px;
|
|
150
|
+
}
|
|
151
|
+
.vc-day-popover-row-dot {
|
|
152
|
+
}
|
|
153
|
+
.vc-day-popover-row-bar {
|
|
154
|
+
width: 10px;
|
|
155
|
+
height: 3px;
|
|
156
|
+
}
|
|
10
157
|
|
|
11
|
-
.vc-day{position:relative;min-height:32px;z-index:1}.vc-monthly .is-not-in-month *{opacity:0;pointer-events:none}.vc-day-layer{position:absolute;left:0;right:0;top:0;bottom:0;pointer-events:none}.vc-day-box-center-center{display:flex;justify-content:center;align-items:center;transform-origin:50% 50%}.vc-day-box-left-center{display:flex;justify-content:flex-start;align-items:center;transform-origin:0% 50%}.vc-day-box-right-center{display:flex;justify-content:flex-end;align-items:center;transform-origin:100% 50%}.vc-day-box-center-bottom{display:flex;justify-content:center;align-items:flex-end}.vc-day-content{display:flex;justify-content:center;align-items:center;font-size:var(--vc-text-sm);font-weight:var(--vc-font-medium);width:28px;height:28px;line-height:28px;border-radius:var(--vc-rounded-full);user-select:none;cursor:pointer}.vc-day-content:hover{background-color:var(--vc-day-content-hover-bg)}.vc-day-content.vc-disabled{color:var(--vc-day-content-disabled-color)}.vc-content:not(.vc-base){font-weight:var(--vc-font-bold);color:var(--vc-content-color)}.vc-highlights{overflow:hidden;pointer-events:none;z-index:-1}.vc-highlight{width:28px;height:28px}.vc-highlight.vc-highlight-base-start{width:50% !important;border-radius:0 !important;border-right-width:0 !important}.vc-highlight.vc-highlight-base-end{width:50% !important;border-radius:0 !important;border-left-width:0 !important}.vc-highlight.vc-highlight-base-middle{width:100%;border-radius:0 !important;border-left-width:0 !important;border-right-width:0 !important;margin:0 -1px}.vc-highlight-bg-outline,.vc-highlight-bg-none{background-color:var(--vc-highlight-outline-bg);border:2px solid;border-color:var(--vc-highlight-outline-border);border-radius:var(--vc-rounded-full)}.vc-highlight-bg-light{background-color:var(--vc-highlight-light-bg);border-radius:var(--vc-rounded-full)}.vc-highlight-bg-solid{background-color:var(--vc-highlight-solid-bg);border-radius:var(--vc-rounded-full)}.vc-highlight-content-outline,.vc-highlight-content-none{font-weight:var(--vc-font-bold);color:var(--vc-highlight-outline-content-color)}.vc-highlight-content-light{font-weight:var(--vc-font-bold);color:var(--vc-highlight-light-content-color)}.vc-highlight-content-solid{font-weight:var(--vc-font-bold);color:var(--vc-highlight-solid-content-color)}.vc-dots{display:flex;justify-content:center;align-items:center}.vc-dot{width:5px;height:5px;border-radius:9999px;transition:var(--vc-day-content-transition)}.vc-dot:not(:last-child){margin-right:3px}.vc-bars{display:flex;justify-content:flex-start;align-items:center;width:75%}.vc-bar{flex-grow:1;height:3px;transition:var(--vc-day-content-transition)}.vc-dot{background-color:var(--vc-dot-bg)}.vc-bar{background-color:var(--vc-bar-bg)}
|
|
12
158
|
|
|
13
|
-
.vc-
|
|
159
|
+
.vc-base-icon {
|
|
160
|
+
display: inline-block;
|
|
161
|
+
stroke: currentColor;
|
|
162
|
+
stroke-width: 2;
|
|
163
|
+
fill: none;
|
|
164
|
+
}
|
|
14
165
|
|
|
15
|
-
.vc-pane-container{width:100%;position:relative}.vc-pane-container.in-transition{overflow:hidden}.vc-pane-layout{display:grid}.vc-pane-header-wrapper{position:absolute;top:0;width:100%;pointer-events:none}.vc-day-popover-container{font-size:var(--vc-text-xs);font-weight:var(--vc-font-medium)}.vc-day-popover-header{font-size:var(--vc-text-xs);color:var(--vc-day-popover-header-color);font-weight:var(--vc-font-semibold);text-align:center}
|
|
16
166
|
|
|
17
|
-
.vc-
|
|
167
|
+
.vc-header {
|
|
168
|
+
display: grid;
|
|
169
|
+
grid-gap: 4px;
|
|
170
|
+
align-items: center;
|
|
171
|
+
height: 30px;
|
|
172
|
+
margin-top: 10px;
|
|
173
|
+
padding-left: 10px;
|
|
174
|
+
padding-right: 10px;
|
|
175
|
+
&.is-lg {
|
|
176
|
+
font-size: var(--vc-text-lg);
|
|
177
|
+
}
|
|
178
|
+
&.is-xl {
|
|
179
|
+
font-size: var(--vc-text-xl);
|
|
180
|
+
}
|
|
181
|
+
&.is-2xl {
|
|
182
|
+
font-size: var(--vc-text-2xl);
|
|
183
|
+
}
|
|
184
|
+
.vc-title-wrapper {
|
|
185
|
+
grid-row: 1;
|
|
186
|
+
grid-column: title;
|
|
187
|
+
}
|
|
188
|
+
.vc-prev {
|
|
189
|
+
grid-row: 1;
|
|
190
|
+
grid-column: prev;
|
|
191
|
+
}
|
|
192
|
+
.vc-next {
|
|
193
|
+
grid-row: 1;
|
|
194
|
+
grid-column: next;
|
|
195
|
+
}
|
|
196
|
+
.vc-title,
|
|
197
|
+
.vc-prev,
|
|
198
|
+
.vc-next {
|
|
199
|
+
display: flex;
|
|
200
|
+
align-items: center;
|
|
201
|
+
border: 0;
|
|
202
|
+
border-radius: var(--vc-rounded);
|
|
203
|
+
pointer-events: auto;
|
|
204
|
+
user-select: none;
|
|
205
|
+
cursor: pointer;
|
|
206
|
+
}
|
|
207
|
+
.vc-title {
|
|
208
|
+
color: var(--vc-header-title-color);
|
|
209
|
+
font-weight: var(--vc-font-semibold);
|
|
210
|
+
white-space: nowrap;
|
|
211
|
+
padding: 0 8px;
|
|
212
|
+
margin: 0;
|
|
213
|
+
line-height: 30px;
|
|
214
|
+
&:hover {
|
|
215
|
+
opacity: 0.75;
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
.vc-arrow {
|
|
219
|
+
display: flex;
|
|
220
|
+
justify-content: center;
|
|
221
|
+
align-items: center;
|
|
222
|
+
color: var(--vc-header-arrow-color);
|
|
223
|
+
width: 28px;
|
|
224
|
+
height: 30px;
|
|
225
|
+
margin: 0;
|
|
226
|
+
padding: 0;
|
|
227
|
+
&:hover {
|
|
228
|
+
background: var(--vc-header-arrow-hover-bg);
|
|
229
|
+
}
|
|
230
|
+
&:disabled {
|
|
231
|
+
opacity: 0.25;
|
|
232
|
+
pointer-events: none;
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
}
|
|
18
236
|
|
|
19
|
-
.vc-time-picker{display:flex;flex-direction:column;align-items:center;padding:8px 4px}.vc-time-picker.vc-invalid{pointer-events:none;opacity:0.5}.vc-time-picker.vc-attached{border-top:1px solid var(--vc-time-picker-border)}.vc-time-picker>*+*{margin-top:4px}.vc-time-header{display:flex;align-items:center;font-size:var(--vc-text-sm);font-weight:var(--vc-font-semibold);text-transform:uppercase;margin-top:-4px;padding-left:4px;padding-right:4px;line-height:21px}.vc-time-select-group{display:inline-flex;align-items:center;padding:0 4px;background:var(--vc-time-select-group-bg);border-radius:var(--vc-rounded-md);border:1px solid var(--vc-time-select-group-border)}.vc-time-select-group .vc-base-icon{margin-right:4px;color:var(--vc-time-select-group-icon-color)}.vc-time-select-group select{background:transparent;padding:0px 4px}.vc-time-weekday{color:var(--vc-time-weekday-color);letter-spacing:var(--tracking-wide)}.vc-time-month{color:var(--vc-time-month-color);margin-left:8px}.vc-time-day{color:var(--vc-time-day-color);margin-left:4px}.vc-time-year{color:var(--vc-time-year-color);margin-left:8px}.vc-time-colon{margin:0 1px 2px 2px}.vc-time-decimal{margin:0 0 0 1px}
|
|
20
237
|
|
|
21
|
-
.vc-
|
|
238
|
+
.vc-nav-header {
|
|
239
|
+
display: flex;
|
|
240
|
+
justify-content: space-between;
|
|
241
|
+
}
|
|
242
|
+
.vc-nav-title,
|
|
243
|
+
.vc-nav-arrow,
|
|
244
|
+
.vc-nav-item {
|
|
245
|
+
font-size: var(--vc-text-sm);
|
|
246
|
+
margin: 0;
|
|
247
|
+
cursor: pointer;
|
|
248
|
+
user-select: none;
|
|
249
|
+
border: 0;
|
|
250
|
+
border-radius: var(--vc-rounded);
|
|
251
|
+
white-space: nowrap;
|
|
252
|
+
&:hover {
|
|
253
|
+
background-color: var(--vc-nav-hover-bg);
|
|
254
|
+
}
|
|
255
|
+
&:disabled {
|
|
256
|
+
opacity: 0.25;
|
|
257
|
+
pointer-events: none;
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
.vc-nav-title {
|
|
261
|
+
color: var(--vc-nav-title-color);
|
|
262
|
+
font-weight: var(--vc-font-bold);
|
|
263
|
+
line-height: var(--vc-leading-snug);
|
|
264
|
+
height: 30px;
|
|
265
|
+
padding: 0 6px;
|
|
266
|
+
}
|
|
267
|
+
.vc-nav-arrow {
|
|
268
|
+
display: flex;
|
|
269
|
+
justify-content: center;
|
|
270
|
+
align-items: center;
|
|
271
|
+
color: var(--vc-header-arrow-color);
|
|
272
|
+
width: 26px;
|
|
273
|
+
height: 30px;
|
|
274
|
+
padding: 0;
|
|
275
|
+
}
|
|
276
|
+
.vc-nav-items {
|
|
277
|
+
display: grid;
|
|
278
|
+
grid-template-columns: repeat(3, 1fr);
|
|
279
|
+
grid-row-gap: 2px;
|
|
280
|
+
grid-column-gap: 5px;
|
|
281
|
+
margin-top: 2px;
|
|
282
|
+
}
|
|
283
|
+
.vc-nav-item {
|
|
284
|
+
width: 48px;
|
|
285
|
+
text-align: center;
|
|
286
|
+
font-weight: var(--vc-font-semibold);
|
|
287
|
+
line-height: var(--vc-leading-snug);
|
|
288
|
+
padding: 6px 0;
|
|
289
|
+
&.is-active {
|
|
290
|
+
color: var(--vc-nav-item-active-color);
|
|
291
|
+
background-color: var(--vc-nav-item-active-bg);
|
|
292
|
+
font-weight: var(--vc-font-bold);
|
|
293
|
+
&:not(:focus) {
|
|
294
|
+
box-shadow: var(--vc-nav-item-active-box-shadow);
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
&.is-current {
|
|
298
|
+
color: var(--vc-nav-item-current-color);
|
|
299
|
+
}
|
|
300
|
+
}
|
|
22
301
|
|
|
23
|
-
|
|
302
|
+
|
|
303
|
+
.vc-day {
|
|
304
|
+
position: relative;
|
|
305
|
+
min-height: 32px;
|
|
306
|
+
z-index: 1;
|
|
307
|
+
/* &.is-not-in-month * {
|
|
308
|
+
opacity: 0;
|
|
309
|
+
pointer-events: none;
|
|
310
|
+
} */
|
|
311
|
+
}
|
|
312
|
+
.vc-monthly .is-not-in-month * {
|
|
313
|
+
opacity: 0;
|
|
314
|
+
pointer-events: none;
|
|
315
|
+
}
|
|
316
|
+
.vc-day-layer {
|
|
317
|
+
position: absolute;
|
|
318
|
+
left: 0;
|
|
319
|
+
right: 0;
|
|
320
|
+
top: 0;
|
|
321
|
+
bottom: 0;
|
|
322
|
+
pointer-events: none;
|
|
323
|
+
}
|
|
324
|
+
.vc-day-box-center-center {
|
|
325
|
+
display: flex;
|
|
326
|
+
justify-content: center;
|
|
327
|
+
align-items: center;
|
|
328
|
+
transform-origin: 50% 50%;
|
|
329
|
+
}
|
|
330
|
+
.vc-day-box-left-center {
|
|
331
|
+
display: flex;
|
|
332
|
+
justify-content: flex-start;
|
|
333
|
+
align-items: center;
|
|
334
|
+
transform-origin: 0% 50%;
|
|
335
|
+
}
|
|
336
|
+
.vc-day-box-right-center {
|
|
337
|
+
display: flex;
|
|
338
|
+
justify-content: flex-end;
|
|
339
|
+
align-items: center;
|
|
340
|
+
transform-origin: 100% 50%;
|
|
341
|
+
}
|
|
342
|
+
.vc-day-box-center-bottom {
|
|
343
|
+
display: flex;
|
|
344
|
+
justify-content: center;
|
|
345
|
+
align-items: flex-end;
|
|
346
|
+
}
|
|
347
|
+
.vc-day-content {
|
|
348
|
+
display: flex;
|
|
349
|
+
justify-content: center;
|
|
350
|
+
align-items: center;
|
|
351
|
+
font-size: var(--vc-text-sm);
|
|
352
|
+
font-weight: var(--vc-font-medium);
|
|
353
|
+
width: 28px;
|
|
354
|
+
height: 28px;
|
|
355
|
+
line-height: 28px;
|
|
356
|
+
border-radius: var(--vc-rounded-full);
|
|
357
|
+
user-select: none;
|
|
358
|
+
cursor: pointer;
|
|
359
|
+
&:hover {
|
|
360
|
+
background-color: var(--vc-day-content-hover-bg);
|
|
361
|
+
}
|
|
362
|
+
&.vc-disabled {
|
|
363
|
+
color: var(--vc-day-content-disabled-color);
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
/* ----Content---- */
|
|
368
|
+
.vc-content:not(.vc-base) {
|
|
369
|
+
font-weight: var(--vc-font-bold);
|
|
370
|
+
color: var(--vc-content-color);
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
/* ----Highlights---- */
|
|
374
|
+
.vc-highlights {
|
|
375
|
+
overflow: hidden;
|
|
376
|
+
pointer-events: none;
|
|
377
|
+
z-index: -1;
|
|
378
|
+
}
|
|
379
|
+
.vc-highlight {
|
|
380
|
+
width: 28px;
|
|
381
|
+
height: 28px;
|
|
382
|
+
&.vc-highlight-base-start {
|
|
383
|
+
width: 50% !important;
|
|
384
|
+
border-radius: 0 !important;
|
|
385
|
+
border-right-width: 0 !important;
|
|
386
|
+
}
|
|
387
|
+
&.vc-highlight-base-end {
|
|
388
|
+
width: 50% !important;
|
|
389
|
+
border-radius: 0 !important;
|
|
390
|
+
border-left-width: 0 !important;
|
|
391
|
+
}
|
|
392
|
+
&.vc-highlight-base-middle {
|
|
393
|
+
width: 100%;
|
|
394
|
+
border-radius: 0 !important;
|
|
395
|
+
border-left-width: 0 !important;
|
|
396
|
+
border-right-width: 0 !important;
|
|
397
|
+
margin: 0 -1px;
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
.vc-highlight-bg-outline,
|
|
401
|
+
.vc-highlight-bg-none {
|
|
402
|
+
background-color: var(--vc-highlight-outline-bg);
|
|
403
|
+
border: 2px solid;
|
|
404
|
+
border-color: var(--vc-highlight-outline-border);
|
|
405
|
+
border-radius: var(--vc-rounded-full);
|
|
406
|
+
}
|
|
407
|
+
.vc-highlight-bg-light {
|
|
408
|
+
background-color: var(--vc-highlight-light-bg);
|
|
409
|
+
border-radius: var(--vc-rounded-full);
|
|
410
|
+
}
|
|
411
|
+
.vc-highlight-bg-solid {
|
|
412
|
+
background-color: var(--vc-highlight-solid-bg);
|
|
413
|
+
border-radius: var(--vc-rounded-full);
|
|
414
|
+
}
|
|
415
|
+
.vc-highlight-content-outline,
|
|
416
|
+
.vc-highlight-content-none {
|
|
417
|
+
font-weight: var(--vc-font-bold);
|
|
418
|
+
color: var(--vc-highlight-outline-content-color);
|
|
419
|
+
}
|
|
420
|
+
.vc-highlight-content-light {
|
|
421
|
+
font-weight: var(--vc-font-bold);
|
|
422
|
+
color: var(--vc-highlight-light-content-color);
|
|
423
|
+
}
|
|
424
|
+
.vc-highlight-content-solid {
|
|
425
|
+
font-weight: var(--vc-font-bold);
|
|
426
|
+
color: var(--vc-highlight-solid-content-color);
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
/* ----Dots---- */
|
|
430
|
+
.vc-dots {
|
|
431
|
+
display: flex;
|
|
432
|
+
justify-content: center;
|
|
433
|
+
align-items: center;
|
|
434
|
+
}
|
|
435
|
+
.vc-dot {
|
|
436
|
+
width: 5px;
|
|
437
|
+
height: 5px;
|
|
438
|
+
border-radius: 9999px;
|
|
439
|
+
transition: var(--vc-day-content-transition);
|
|
440
|
+
&:not(:last-child) {
|
|
441
|
+
margin-right: 3px;
|
|
442
|
+
}
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
/* ----Bars---- */
|
|
446
|
+
.vc-bars {
|
|
447
|
+
display: flex;
|
|
448
|
+
justify-content: flex-start;
|
|
449
|
+
align-items: center;
|
|
450
|
+
width: 75%;
|
|
451
|
+
}
|
|
452
|
+
.vc-bar {
|
|
453
|
+
flex-grow: 1;
|
|
454
|
+
height: 3px;
|
|
455
|
+
transition: var(--vc-day-content-transition);
|
|
456
|
+
}
|
|
457
|
+
.vc-dot {
|
|
458
|
+
background-color: var(--vc-dot-bg);
|
|
459
|
+
}
|
|
460
|
+
.vc-bar {
|
|
461
|
+
background-color: var(--vc-bar-bg);
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
.vc-pane {
|
|
466
|
+
min-width: 250px;
|
|
467
|
+
}
|
|
468
|
+
.vc-weeknumber {
|
|
469
|
+
display: flex;
|
|
470
|
+
justify-content: center;
|
|
471
|
+
align-items: center;
|
|
472
|
+
position: absolute;
|
|
473
|
+
&.is-left {
|
|
474
|
+
left: calc(var(--vc-weeknumber-offset-inside) * -1);
|
|
475
|
+
}
|
|
476
|
+
&.is-right {
|
|
477
|
+
right: calc(var(--vc-weeknumber-offset-inside) * -1);
|
|
478
|
+
}
|
|
479
|
+
&.is-left-outside {
|
|
480
|
+
left: calc(var(--vc-weeknumber-offset-outside) * -1);
|
|
481
|
+
}
|
|
482
|
+
&.is-right-outside {
|
|
483
|
+
right: calc(var(--vc-weeknumber-offset-outside) * -1);
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
.vc-weeknumber-content {
|
|
487
|
+
display: flex;
|
|
488
|
+
justify-content: center;
|
|
489
|
+
align-items: center;
|
|
490
|
+
font-size: var(--vc-text-xs);
|
|
491
|
+
font-weight: var(--vc-font-medium);
|
|
492
|
+
font-style: italic;
|
|
493
|
+
width: 28px;
|
|
494
|
+
height: 28px;
|
|
495
|
+
margin-top: 2px;
|
|
496
|
+
color: var(--vc-weeknumber-color);
|
|
497
|
+
user-select: none;
|
|
498
|
+
}
|
|
499
|
+
.vc-weeks {
|
|
500
|
+
position: relative;
|
|
501
|
+
/* overflow: auto; */
|
|
502
|
+
-webkit-overflow-scrolling: touch;
|
|
503
|
+
padding: 6px;
|
|
504
|
+
min-width: 232px;
|
|
505
|
+
&.vc-show-weeknumbers-left {
|
|
506
|
+
margin-left: var(--vc-weeknumber-offset-inside);
|
|
507
|
+
}
|
|
508
|
+
&.vc-show-weeknumbers-right {
|
|
509
|
+
margin-right: var(--vc-weeknumber-offset-inside);
|
|
510
|
+
}
|
|
511
|
+
}
|
|
512
|
+
.vc-weekday {
|
|
513
|
+
text-align: center;
|
|
514
|
+
color: var(--vc-weekday-color);
|
|
515
|
+
font-size: var(--vc-text-sm);
|
|
516
|
+
font-weight: var(--vc-font-bold);
|
|
517
|
+
line-height: 14px;
|
|
518
|
+
padding-top: 4px;
|
|
519
|
+
padding-bottom: 8px;
|
|
520
|
+
cursor: default;
|
|
521
|
+
user-select: none;
|
|
522
|
+
}
|
|
523
|
+
.vc-week,
|
|
524
|
+
.vc-weekdays {
|
|
525
|
+
display: grid;
|
|
526
|
+
grid-template-columns: repeat(7, 1fr);
|
|
527
|
+
position: relative;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
.vc-pane-container {
|
|
532
|
+
width: 100%;
|
|
533
|
+
position: relative;
|
|
534
|
+
&.in-transition {
|
|
535
|
+
overflow: hidden;
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
.vc-pane-layout {
|
|
539
|
+
display: grid;
|
|
540
|
+
}
|
|
541
|
+
.vc-pane-header-wrapper {
|
|
542
|
+
position: absolute;
|
|
543
|
+
top: 0;
|
|
544
|
+
width: 100%;
|
|
545
|
+
pointer-events: none;
|
|
546
|
+
}
|
|
547
|
+
.vc-day-popover-container {
|
|
548
|
+
font-size: var(--vc-text-xs);
|
|
549
|
+
font-weight: var(--vc-font-medium);
|
|
550
|
+
}
|
|
551
|
+
.vc-day-popover-header {
|
|
552
|
+
font-size: var(--vc-text-xs);
|
|
553
|
+
color: var(--vc-day-popover-header-color);
|
|
554
|
+
font-weight: var(--vc-font-semibold);
|
|
555
|
+
text-align: center;
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
|
|
559
|
+
.vc-base-select {
|
|
560
|
+
position: relative;
|
|
561
|
+
display: flex;
|
|
562
|
+
justify-content: center;
|
|
563
|
+
align-items: center;
|
|
564
|
+
height: 30px;
|
|
565
|
+
font-size: var(--vc-text-base);
|
|
566
|
+
font-weight: var(--vc-font-medium);
|
|
567
|
+
&.vc-has-icon {
|
|
568
|
+
& select {
|
|
569
|
+
padding: 0 27px 0 9px;
|
|
570
|
+
}
|
|
571
|
+
& .vc-base-sizer {
|
|
572
|
+
padding: 0 28px 0 10px;
|
|
573
|
+
}
|
|
574
|
+
}
|
|
575
|
+
&.vc-fit-content {
|
|
576
|
+
& select {
|
|
577
|
+
position: absolute;
|
|
578
|
+
top: 0;
|
|
579
|
+
left: 0;
|
|
580
|
+
width: 100%;
|
|
581
|
+
}
|
|
582
|
+
}
|
|
583
|
+
& .vc-base-icon {
|
|
584
|
+
position: absolute;
|
|
585
|
+
top: 6px;
|
|
586
|
+
right: 4px;
|
|
587
|
+
opacity: 0.6;
|
|
588
|
+
pointer-events: none;
|
|
589
|
+
}
|
|
590
|
+
& .vc-base-sizer {
|
|
591
|
+
font-size: var(--vc-text-base);
|
|
592
|
+
font-weight: var(--vc-font-medium);
|
|
593
|
+
color: transparent;
|
|
594
|
+
padding: 0px 8px;
|
|
595
|
+
margin: 0;
|
|
596
|
+
}
|
|
597
|
+
& select {
|
|
598
|
+
display: inline-flex;
|
|
599
|
+
justify-content: center;
|
|
600
|
+
color: var(--vc-select-color);
|
|
601
|
+
display: block;
|
|
602
|
+
appearance: none;
|
|
603
|
+
background-color: var(--vc-select-bg);
|
|
604
|
+
border-radius: var(--vc-rounded);
|
|
605
|
+
height: 30px;
|
|
606
|
+
width: max-content;
|
|
607
|
+
padding: 0px 7px;
|
|
608
|
+
margin: 0;
|
|
609
|
+
line-height: var(--leading-none);
|
|
610
|
+
text-indent: 0px;
|
|
611
|
+
background-image: none;
|
|
612
|
+
cursor: pointer;
|
|
613
|
+
text-align: center;
|
|
614
|
+
&:hover {
|
|
615
|
+
background-color: var(--vc-select-hover-bg);
|
|
616
|
+
}
|
|
617
|
+
&.vc-align-left {
|
|
618
|
+
text-align: left;
|
|
619
|
+
}
|
|
620
|
+
&.vc-align-right {
|
|
621
|
+
text-align: right;
|
|
622
|
+
}
|
|
623
|
+
}
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
|
|
627
|
+
.vc-time-picker {
|
|
628
|
+
display: flex;
|
|
629
|
+
flex-direction: column;
|
|
630
|
+
align-items: center;
|
|
631
|
+
padding: 8px 4px;
|
|
632
|
+
&.vc-invalid {
|
|
633
|
+
pointer-events: none;
|
|
634
|
+
opacity: 0.5;
|
|
635
|
+
}
|
|
636
|
+
&.vc-attached {
|
|
637
|
+
border-top: 1px solid var(--vc-time-picker-border);
|
|
638
|
+
}
|
|
639
|
+
> * + * {
|
|
640
|
+
margin-top: 4px;
|
|
641
|
+
}
|
|
642
|
+
}
|
|
643
|
+
.vc-time-header {
|
|
644
|
+
display: flex;
|
|
645
|
+
align-items: center;
|
|
646
|
+
font-size: var(--vc-text-sm);
|
|
647
|
+
font-weight: var(--vc-font-semibold);
|
|
648
|
+
text-transform: uppercase;
|
|
649
|
+
margin-top: -4px;
|
|
650
|
+
padding-left: 4px;
|
|
651
|
+
padding-right: 4px;
|
|
652
|
+
line-height: 21px;
|
|
653
|
+
}
|
|
654
|
+
.vc-time-select-group {
|
|
655
|
+
display: inline-flex;
|
|
656
|
+
align-items: center;
|
|
657
|
+
padding: 0 4px;
|
|
658
|
+
background: var(--vc-time-select-group-bg);
|
|
659
|
+
border-radius: var(--vc-rounded-md);
|
|
660
|
+
border: 1px solid var(--vc-time-select-group-border);
|
|
661
|
+
.vc-base-icon {
|
|
662
|
+
margin-right: 4px;
|
|
663
|
+
color: var(--vc-time-select-group-icon-color);
|
|
664
|
+
}
|
|
665
|
+
select {
|
|
666
|
+
background: transparent;
|
|
667
|
+
padding: 0px 4px;
|
|
668
|
+
}
|
|
669
|
+
}
|
|
670
|
+
.vc-time-weekday {
|
|
671
|
+
color: var(--vc-time-weekday-color);
|
|
672
|
+
letter-spacing: var(--tracking-wide);
|
|
673
|
+
}
|
|
674
|
+
.vc-time-month {
|
|
675
|
+
color: var(--vc-time-month-color);
|
|
676
|
+
margin-left: 8px;
|
|
677
|
+
}
|
|
678
|
+
.vc-time-day {
|
|
679
|
+
color: var(--vc-time-day-color);
|
|
680
|
+
margin-left: 4px;
|
|
681
|
+
}
|
|
682
|
+
.vc-time-year {
|
|
683
|
+
color: var(--vc-time-year-color);
|
|
684
|
+
margin-left: 8px;
|
|
685
|
+
}
|
|
686
|
+
.vc-time-colon {
|
|
687
|
+
margin: 0 1px 2px 2px;
|
|
688
|
+
}
|
|
689
|
+
.vc-time-decimal {
|
|
690
|
+
margin: 0 0 0 1px;
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
.vc-none-enter-active,
|
|
694
|
+
.vc-none-leave-active {
|
|
695
|
+
transition-duration: 0s;
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
.vc-fade-enter-active,
|
|
699
|
+
.vc-fade-leave-active,
|
|
700
|
+
.vc-slide-left-enter-active,
|
|
701
|
+
.vc-slide-left-leave-active,
|
|
702
|
+
.vc-slide-right-enter-active,
|
|
703
|
+
.vc-slide-right-leave-active,
|
|
704
|
+
.vc-slide-up-enter-active,
|
|
705
|
+
.vc-slide-up-leave-active,
|
|
706
|
+
.vc-slide-down-enter-active,
|
|
707
|
+
.vc-slide-down-leave-active,
|
|
708
|
+
.vc-slide-fade-enter-active,
|
|
709
|
+
.vc-slide-fade-leave-active {
|
|
710
|
+
transition: transform var(--vc-slide-duration) var(--vc-slide-timing),
|
|
711
|
+
opacity var(--vc-slide-duration) var(--vc-slide-timing);
|
|
712
|
+
backface-visibility: hidden;
|
|
713
|
+
pointer-events: none;
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
.vc-none-leave-active,
|
|
717
|
+
.vc-fade-leave-active,
|
|
718
|
+
.vc-slide-left-leave-active,
|
|
719
|
+
.vc-slide-right-leave-active,
|
|
720
|
+
.vc-slide-up-leave-active,
|
|
721
|
+
.vc-slide-down-leave-active {
|
|
722
|
+
position: absolute !important;
|
|
723
|
+
width: 100%;
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
.vc-none-enter-from,
|
|
727
|
+
.vc-none-leave-to,
|
|
728
|
+
.vc-fade-enter-from,
|
|
729
|
+
.vc-fade-leave-to,
|
|
730
|
+
.vc-slide-left-enter-from,
|
|
731
|
+
.vc-slide-left-leave-to,
|
|
732
|
+
.vc-slide-right-enter-from,
|
|
733
|
+
.vc-slide-right-leave-to,
|
|
734
|
+
.vc-slide-up-enter-from,
|
|
735
|
+
.vc-slide-up-leave-to,
|
|
736
|
+
.vc-slide-down-enter-from,
|
|
737
|
+
.vc-slide-down-leave-to,
|
|
738
|
+
.vc-slide-fade-enter-from,
|
|
739
|
+
.vc-slide-fade-leave-to {
|
|
740
|
+
opacity: 0;
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
.vc-slide-left-enter-from,
|
|
744
|
+
.vc-slide-right-leave-to,
|
|
745
|
+
.vc-slide-fade-enter-from.direction-left,
|
|
746
|
+
.vc-slide-fade-leave-to.direction-left {
|
|
747
|
+
transform: translateX(var(--vc-slide-translate));
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
.vc-slide-right-enter-from,
|
|
751
|
+
.vc-slide-left-leave-to,
|
|
752
|
+
.vc-slide-fade-enter-from.direction-right,
|
|
753
|
+
.vc-slide-fade-leave-to.direction-right {
|
|
754
|
+
transform: translateX(calc(-1 * var(--vc-slide-translate)));
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
.vc-slide-up-enter-from,
|
|
758
|
+
.vc-slide-down-leave-to,
|
|
759
|
+
.vc-slide-fade-enter-from.direction-top,
|
|
760
|
+
.vc-slide-fade-leave-to.direction-top {
|
|
761
|
+
transform: translateY(var(--vc-slide-translate));
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
.vc-slide-down-enter-from,
|
|
765
|
+
.vc-slide-up-leave-to,
|
|
766
|
+
.vc-slide-fade-enter-from.direction-bottom,
|
|
767
|
+
.vc-slide-fade-leave-to.direction-bottom {
|
|
768
|
+
transform: translateY(calc(-1 * var(--vc-slide-translate)));
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
:root {
|
|
772
|
+
--vc-white: #ffffff;
|
|
773
|
+
--vc-black: #000000;
|
|
774
|
+
|
|
775
|
+
--vc-gray-50: #f8fafc;
|
|
776
|
+
--vc-gray-100: #f1f5f9;
|
|
777
|
+
--vc-gray-200: #e2e8f0;
|
|
778
|
+
--vc-gray-300: #cbd5e1;
|
|
779
|
+
--vc-gray-400: #94a3b8;
|
|
780
|
+
--vc-gray-500: #64748b;
|
|
781
|
+
--vc-gray-600: #475569;
|
|
782
|
+
--vc-gray-700: #334155;
|
|
783
|
+
--vc-gray-800: #1e293b;
|
|
784
|
+
--vc-gray-900: #0f172a;
|
|
785
|
+
|
|
786
|
+
--vc-font-family: BlinkMacSystemFont, -apple-system, 'Segoe UI', 'Roboto',
|
|
24
787
|
'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
|
25
|
-
'Helvetica', 'Arial', sans-serif
|
|
26
|
-
|
|
788
|
+
'Helvetica', 'Arial', sans-serif;
|
|
789
|
+
|
|
790
|
+
--vc-font-normal: 400;
|
|
791
|
+
--vc-font-medium: 500;
|
|
792
|
+
--vc-font-semibold: 600;
|
|
793
|
+
--vc-font-bold: 700;
|
|
794
|
+
|
|
795
|
+
--vc-text-2xs: 10px;
|
|
796
|
+
--vc-text-xs: 12px;
|
|
797
|
+
--vc-text-sm: 14px;
|
|
798
|
+
--vc-text-base: 16px;
|
|
799
|
+
--vc-text-lg: 18px;
|
|
800
|
+
--vc-text-xl: 20px;
|
|
801
|
+
--vc-text-2xl: 24px;
|
|
802
|
+
|
|
803
|
+
--vc-leading-none: 1;
|
|
804
|
+
--vc-leading-tight: 1.25;
|
|
805
|
+
--vc-leading-snug: 1.375;
|
|
806
|
+
--vc-leading-normal: 1.5;
|
|
807
|
+
|
|
808
|
+
--vc-rounded: 0.25rem;
|
|
809
|
+
--vc-rounded-md: 0.375rem;
|
|
810
|
+
--vc-rounded-lg: 0.5rem;
|
|
811
|
+
--vc-rounded-full: 9999px;
|
|
812
|
+
|
|
813
|
+
--vc-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
|
814
|
+
--vc-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
|
|
815
|
+
0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
816
|
+
--vc-shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
|
|
817
|
+
|
|
818
|
+
--vc-slide-translate: 22px;
|
|
819
|
+
--vc-slide-duration: 0.15s;
|
|
820
|
+
--vc-slide-timing: ease;
|
|
821
|
+
|
|
822
|
+
--vc-day-content-transition: all 0.13s ease-in;
|
|
823
|
+
--vc-weeknumber-offset-inside: 26px;
|
|
824
|
+
--vc-weeknumber-offset-outside: 34px;
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
.vc-gray {
|
|
828
|
+
--vc-accent-50: var(--vc-gray-50);
|
|
829
|
+
--vc-accent-100: var(--vc-gray-100);
|
|
830
|
+
--vc-accent-200: var(--vc-gray-200);
|
|
831
|
+
--vc-accent-300: var(--vc-gray-300);
|
|
832
|
+
--vc-accent-400: var(--vc-gray-400);
|
|
833
|
+
--vc-accent-500: var(--vc-gray-500);
|
|
834
|
+
--vc-accent-600: var(--vc-gray-600);
|
|
835
|
+
--vc-accent-700: var(--vc-gray-700);
|
|
836
|
+
--vc-accent-800: var(--vc-gray-800);
|
|
837
|
+
--vc-accent-900: var(--vc-gray-900);
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
.vc-red {
|
|
841
|
+
--vc-accent-50: #fef2f2;
|
|
842
|
+
--vc-accent-100: #fee2e2;
|
|
843
|
+
--vc-accent-200: #fecaca;
|
|
844
|
+
--vc-accent-300: #fca5a5;
|
|
845
|
+
--vc-accent-400: #f87171;
|
|
846
|
+
--vc-accent-500: #ef4444;
|
|
847
|
+
--vc-accent-600: #dc2626;
|
|
848
|
+
--vc-accent-700: #b91c1c;
|
|
849
|
+
--vc-accent-800: #991b1b;
|
|
850
|
+
--vc-accent-900: #7f1d1d;
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
.vc-orange {
|
|
854
|
+
--vc-accent-50: #fff7ed;
|
|
855
|
+
--vc-accent-100: #ffedd5;
|
|
856
|
+
--vc-accent-200: #fed7aa;
|
|
857
|
+
--vc-accent-300: #fdba74;
|
|
858
|
+
--vc-accent-400: #fb923c;
|
|
859
|
+
--vc-accent-500: #f97316;
|
|
860
|
+
--vc-accent-600: #ea580c;
|
|
861
|
+
--vc-accent-700: #c2410c;
|
|
862
|
+
--vc-accent-800: #9a3412;
|
|
863
|
+
--vc-accent-900: #7c2d12;
|
|
864
|
+
}
|
|
865
|
+
|
|
866
|
+
.vc-yellow {
|
|
867
|
+
--vc-accent-50: #fefce8;
|
|
868
|
+
--vc-accent-100: #fef9c3;
|
|
869
|
+
--vc-accent-200: #fef08a;
|
|
870
|
+
--vc-accent-300: #fde047;
|
|
871
|
+
--vc-accent-400: #facc15;
|
|
872
|
+
--vc-accent-500: #eab308;
|
|
873
|
+
--vc-accent-600: #ca8a04;
|
|
874
|
+
--vc-accent-700: #a16207;
|
|
875
|
+
--vc-accent-800: #854d0e;
|
|
876
|
+
--vc-accent-900: #713f12;
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
.vc-green {
|
|
880
|
+
--vc-accent-50: #f0fdf4;
|
|
881
|
+
--vc-accent-100: #dcfce7;
|
|
882
|
+
--vc-accent-200: #bbf7d0;
|
|
883
|
+
--vc-accent-300: #86efac;
|
|
884
|
+
--vc-accent-400: #4ade80;
|
|
885
|
+
--vc-accent-500: #22c55e;
|
|
886
|
+
--vc-accent-600: #16a34a;
|
|
887
|
+
--vc-accent-700: #15803d;
|
|
888
|
+
--vc-accent-800: #166534;
|
|
889
|
+
--vc-accent-900: #14532d;
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
.vc-teal {
|
|
893
|
+
--vc-accent-50: #f0fdfa;
|
|
894
|
+
--vc-accent-100: #ccfbf1;
|
|
895
|
+
--vc-accent-200: #99f6e4;
|
|
896
|
+
--vc-accent-300: #5eead4;
|
|
897
|
+
--vc-accent-400: #2dd4bf;
|
|
898
|
+
--vc-accent-500: #14b8a6;
|
|
899
|
+
--vc-accent-600: #0d9488;
|
|
900
|
+
--vc-accent-700: #0f766e;
|
|
901
|
+
--vc-accent-800: #115e59;
|
|
902
|
+
--vc-accent-900: #134e4a;
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
.vc-blue {
|
|
906
|
+
--vc-accent-50: #eff6ff;
|
|
907
|
+
--vc-accent-100: #dbeafe;
|
|
908
|
+
--vc-accent-200: #bfdbfe;
|
|
909
|
+
--vc-accent-300: #93c5fd;
|
|
910
|
+
--vc-accent-400: #60a5fa;
|
|
911
|
+
--vc-accent-500: #3b82f6;
|
|
912
|
+
--vc-accent-600: #2563eb;
|
|
913
|
+
--vc-accent-700: #1d4ed8;
|
|
914
|
+
--vc-accent-800: #1e40af;
|
|
915
|
+
--vc-accent-900: #1e3a8a;
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
.vc-indigo {
|
|
919
|
+
--vc-accent-50: #eef2ff;
|
|
920
|
+
--vc-accent-100: #e0e7ff;
|
|
921
|
+
--vc-accent-200: #c7d2fe;
|
|
922
|
+
--vc-accent-300: #a5b4fc;
|
|
923
|
+
--vc-accent-400: #818cf8;
|
|
924
|
+
--vc-accent-500: #6366f1;
|
|
925
|
+
--vc-accent-600: #4f46e5;
|
|
926
|
+
--vc-accent-700: #4338ca;
|
|
927
|
+
--vc-accent-800: #3730a3;
|
|
928
|
+
--vc-accent-900: #312e81;
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
.vc-purple {
|
|
932
|
+
--vc-accent-50: #faf5ff;
|
|
933
|
+
--vc-accent-100: #f3e8ff;
|
|
934
|
+
--vc-accent-200: #e9d5ff;
|
|
935
|
+
--vc-accent-300: #d8b4fe;
|
|
936
|
+
--vc-accent-400: #c084fc;
|
|
937
|
+
--vc-accent-500: #a855f7;
|
|
938
|
+
--vc-accent-600: #9333ea;
|
|
939
|
+
--vc-accent-700: #7e22ce;
|
|
940
|
+
--vc-accent-800: #6b21a8;
|
|
941
|
+
--vc-accent-900: #581c87;
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
.vc-pink {
|
|
945
|
+
--vc-accent-50: #fdf2f8;
|
|
946
|
+
--vc-accent-100: #fce7f3;
|
|
947
|
+
--vc-accent-200: #fbcfe8;
|
|
948
|
+
--vc-accent-300: #f9a8d4;
|
|
949
|
+
--vc-accent-400: #f472b6;
|
|
950
|
+
--vc-accent-500: #ec4899;
|
|
951
|
+
--vc-accent-600: #db2777;
|
|
952
|
+
--vc-accent-700: #be185d;
|
|
953
|
+
--vc-accent-800: #9d174d;
|
|
954
|
+
--vc-accent-900: #831843;
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
.vc-focus {
|
|
958
|
+
&:focus-within {
|
|
959
|
+
outline: 0;
|
|
960
|
+
box-shadow: var(--vc-focus-ring);
|
|
961
|
+
}
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
.vc-light {
|
|
965
|
+
/* Base */
|
|
966
|
+
--vc-color: var(--vc-gray-900);
|
|
967
|
+
--vc-bg: var(--vc-white);
|
|
968
|
+
--vc-border: var(--vc-gray-300);
|
|
969
|
+
--vc-hover-bg: hsla(211, 25%, 84%, 0.3);
|
|
970
|
+
--vc-focus-ring: 0 0 0 2px rgb(59, 131, 246, 0.4);
|
|
971
|
+
/* Calendar header */
|
|
972
|
+
--vc-header-arrow-color: var(--vc-gray-500);
|
|
973
|
+
--vc-header-arrow-hover-bg: var(--vc-gray-200);
|
|
974
|
+
--vc-header-title-color: var(--vc-gray-900);
|
|
975
|
+
/* Calendar weekdays */
|
|
976
|
+
--vc-weekday-color: var(--vc-gray-500);
|
|
977
|
+
/* Calendar weeknumbers */
|
|
978
|
+
--vc-weeknumber-color: var(--vc-gray-400);
|
|
979
|
+
/* Calendar nav */
|
|
980
|
+
--vc-nav-hover-bg: var(--vc-gray-200);
|
|
981
|
+
--vc-nav-title-color: var(--vc-gray-900);
|
|
982
|
+
--vc-nav-item-hover-box-shadow: none;
|
|
983
|
+
--vc-nav-item-active-color: var(--vc-white);
|
|
984
|
+
--vc-nav-item-active-bg: var(--vc-accent-500);
|
|
985
|
+
--vc-nav-item-active-box-shadow: var(--vc-shadow);
|
|
986
|
+
--vc-nav-item-current-color: var(--vc-accent-600);
|
|
987
|
+
/* Calendar day popover */
|
|
988
|
+
--vc-day-popover-container-color: var(--vc-white);
|
|
989
|
+
--vc-day-popover-container-bg: var(--vc-gray-800);
|
|
990
|
+
--vc-day-popover-container-border: var(--vc-gray-700);
|
|
991
|
+
--vc-day-popover-header-color: var(--vc-gray-700);
|
|
992
|
+
/* Popover content */
|
|
993
|
+
--vc-popover-content-color: var(--vc-gray-900);
|
|
994
|
+
--vc-popover-content-bg: var(--vc-gray-50);
|
|
995
|
+
--vc-popover-content-border: var(--vc-gray-300);
|
|
996
|
+
/* Time picker */
|
|
997
|
+
--vc-time-picker-border: var(--vc-gray-300);
|
|
998
|
+
--vc-time-weekday-color: var(--vc-gray-700);
|
|
999
|
+
--vc-time-month-color: var(--vc-accent-600);
|
|
1000
|
+
--vc-time-day-color: var(--vc-accent-600);
|
|
1001
|
+
--vc-time-year-color: var(--vc-gray-500);
|
|
1002
|
+
/* Time select group */
|
|
1003
|
+
--vc-time-select-group-bg: var(--vc-gray-50);
|
|
1004
|
+
--vc-time-select-group-border: var(--vc-gray-300);
|
|
1005
|
+
--vc-time-select-group-icon-color: var(--vc-accent-500);
|
|
1006
|
+
/* Base select */
|
|
1007
|
+
--vc-select-color: var(--vc-gray-900);
|
|
1008
|
+
--vc-select-bg: var(--vc-gray-100);
|
|
1009
|
+
--vc-select-hover-bg: var(--vc-gray-200);
|
|
1010
|
+
/* Calendar day */
|
|
1011
|
+
--vc-day-content-hover-bg: var(--vc-hover-bg);
|
|
1012
|
+
--vc-day-content-disabled-color: var(--vc-gray-400);
|
|
1013
|
+
/* Calendar attributes */
|
|
1014
|
+
&.vc-attr,
|
|
1015
|
+
& .vc-attr {
|
|
1016
|
+
--vc-content-color: var(--vc-accent-600);
|
|
1017
|
+
--vc-highlight-outline-bg: var(--vc-white);
|
|
1018
|
+
--vc-highlight-outline-border: var(--vc-accent-600);
|
|
1019
|
+
--vc-highlight-outline-content-color: var(--vc-accent-700);
|
|
1020
|
+
--vc-highlight-light-bg: var(--vc-accent-200);
|
|
1021
|
+
--vc-highlight-light-content-color: var(--vc-accent-900);
|
|
1022
|
+
--vc-highlight-solid-bg: var(--vc-accent-600);
|
|
1023
|
+
--vc-highlight-solid-content-color: var(--vc-white);
|
|
1024
|
+
--vc-dot-bg: var(--vc-accent-600);
|
|
1025
|
+
--vc-bar-bg: var(--vc-accent-600);
|
|
1026
|
+
}
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
.vc-dark {
|
|
1030
|
+
/* Base */
|
|
1031
|
+
--vc-color: var(--vc-white);
|
|
1032
|
+
--vc-bg: var(--vc-gray-900);
|
|
1033
|
+
--vc-border: var(--vc-gray-700);
|
|
1034
|
+
--vc-hover-bg: hsla(216, 15%, 52%, 0.3);
|
|
1035
|
+
--vc-focus-ring: 0 0 0 2px rgb(59 130 246 / 0.7);
|
|
1036
|
+
/* Calendar header */
|
|
1037
|
+
--vc-header-arrow-color: var(--vc-gray-300);
|
|
1038
|
+
--vc-header-arrow-hover-bg: var(--vc-gray-800);
|
|
1039
|
+
--vc-header-title-color: var(--vc-gray-100);
|
|
1040
|
+
/* Calendar weekdays */
|
|
1041
|
+
--vc-weekday-color: var(--vc-accent-200);
|
|
1042
|
+
/* Calendar weeknumbers */
|
|
1043
|
+
--vc-weeknumber-color: var(--vc-gray-500);
|
|
1044
|
+
/* Calendar nav */
|
|
1045
|
+
--vc-nav-hover-bg: var(--vc-gray-700);
|
|
1046
|
+
--vc-nav-title-color: var(--vc-gray-100);
|
|
1047
|
+
--vc-nav-item-hover-box-shadow: none;
|
|
1048
|
+
--vc-nav-item-active-color: var(--vc-white);
|
|
1049
|
+
--vc-nav-item-active-bg: var(--vc-accent-500);
|
|
1050
|
+
--vc-nav-item-active-box-shadow: none;
|
|
1051
|
+
--vc-nav-item-current-color: var(--vc-accent-400);
|
|
1052
|
+
/* Calendar day popover */
|
|
1053
|
+
--vc-day-popover-container-color: var(--vc-gray-800);
|
|
1054
|
+
--vc-day-popover-container-bg: var(--vc-white);
|
|
1055
|
+
--vc-day-popover-container-border: var(--vc-gray-100);
|
|
1056
|
+
--vc-day-popover-header-color: var(--vc-gray-300);
|
|
1057
|
+
/* Popover content */
|
|
1058
|
+
--vc-popover-content-color: var(--vc-white);
|
|
1059
|
+
--vc-popover-content-bg: var(--vc-gray-800);
|
|
1060
|
+
--vc-popover-content-border: var(--vc-gray-700);
|
|
1061
|
+
/* Time picker */
|
|
1062
|
+
--vc-time-picker-border: var(--vc-gray-700);
|
|
1063
|
+
--vc-time-weekday-color: var(--vc-gray-400);
|
|
1064
|
+
--vc-time-month-color: var(--vc-accent-400);
|
|
1065
|
+
--vc-time-day-color: var(--vc-accent-400);
|
|
1066
|
+
--vc-time-year-color: var(--vc-gray-500);
|
|
1067
|
+
/* Time select group */
|
|
1068
|
+
--vc-time-select-group-bg: var(--vc-gray-700);
|
|
1069
|
+
--vc-time-select-group-border: var(--vc-gray-500);
|
|
1070
|
+
--vc-time-select-group-icon-color: var(--vc-accent-400);
|
|
1071
|
+
/* Base select */
|
|
1072
|
+
--vc-select-color: var(--vc-gray-200);
|
|
1073
|
+
--vc-select-bg: var(--vc-gray-700);
|
|
1074
|
+
--vc-select-hover-bg: var(--vc-gray-600);
|
|
1075
|
+
/* Calendar day */
|
|
1076
|
+
--vc-day-content-hover-bg: var(--vc-hover-bg);
|
|
1077
|
+
--vc-day-content-disabled-color: var(--vc-gray-600);
|
|
1078
|
+
/* Calendar attributes */
|
|
1079
|
+
&.vc-attr,
|
|
1080
|
+
& .vc-attr {
|
|
1081
|
+
--vc-content-color: var(--vc-accent-500);
|
|
1082
|
+
--vc-highlight-outline-bg: var(--vc-gray-900);
|
|
1083
|
+
--vc-highlight-outline-border: var(--vc-accent-300);
|
|
1084
|
+
--vc-highlight-outline-content-color: var(--vc-accent-200);
|
|
1085
|
+
--vc-highlight-light-bg: var(--vc-accent-800);
|
|
1086
|
+
--vc-highlight-light-content-color: var(--vc-accent-100);
|
|
1087
|
+
--vc-highlight-solid-bg: var(--vc-accent-500);
|
|
1088
|
+
--vc-highlight-solid-content-color: var(--vc-white);
|
|
1089
|
+
--vc-dot-bg: var(--vc-accent-500);
|
|
1090
|
+
--vc-bar-bg: var(--vc-accent-500);
|
|
1091
|
+
}
|
|
1092
|
+
}
|
|
1093
|
+
|
|
1094
|
+
.vc-container {
|
|
1095
|
+
position: relative;
|
|
1096
|
+
display: inline-flex;
|
|
1097
|
+
width: max-content;
|
|
1098
|
+
height: max-content;
|
|
1099
|
+
font-family: var(--vc-font-family);
|
|
1100
|
+
color: var(--vc-color);
|
|
1101
|
+
background-color: var(--vc-bg);
|
|
1102
|
+
-webkit-font-smoothing: antialiased;
|
|
1103
|
+
-moz-osx-font-smoothing: grayscale;
|
|
1104
|
+
-webkit-tap-highlight-color: transparent;
|
|
1105
|
+
&,
|
|
1106
|
+
& * {
|
|
1107
|
+
box-sizing: border-box;
|
|
1108
|
+
&:focus {
|
|
1109
|
+
outline: none;
|
|
1110
|
+
}
|
|
1111
|
+
}
|
|
1112
|
+
/* Hides double border within popovers */
|
|
1113
|
+
& .vc-container {
|
|
1114
|
+
border: none;
|
|
1115
|
+
}
|
|
1116
|
+
}
|
|
1117
|
+
|
|
1118
|
+
.vc-bordered {
|
|
1119
|
+
border: 1px solid;
|
|
1120
|
+
border-color: var(--vc-border);
|
|
1121
|
+
border-radius: var(--vc-rounded-lg);
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
.vc-expanded {
|
|
1125
|
+
min-width: 100%;
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
.vc-transparent {
|
|
1129
|
+
background-color: transparent;
|
|
1130
|
+
}
|
|
27
1131
|
|
|
28
|
-
.vc-
|
|
1132
|
+
.vc-date-picker-content {
|
|
1133
|
+
padding: 0;
|
|
1134
|
+
background-color: var(--vc-bg);
|
|
1135
|
+
.vc-container {
|
|
1136
|
+
border: 0;
|
|
1137
|
+
}
|
|
1138
|
+
}
|
|
29
1139
|
|