@timus-networks/theme 2.0.0 → 2.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.
Files changed (190) hide show
  1. package/README.md +128 -0
  2. package/dist/module.cjs +5 -0
  3. package/dist/module.d.mts +11 -0
  4. package/dist/module.d.ts +11 -0
  5. package/dist/module.json +9 -0
  6. package/dist/module.mjs +159 -0
  7. package/dist/runtime/components/example.button.vue +237 -0
  8. package/dist/runtime/components/example.button.vue.d.ts +10 -0
  9. package/dist/runtime/components/example.checkbox.vue +190 -0
  10. package/dist/runtime/components/example.checkbox.vue.d.ts +24 -0
  11. package/dist/runtime/components/example.dialog.vue +82 -0
  12. package/dist/runtime/components/example.form.vue +494 -0
  13. package/dist/runtime/components/example.input.vue +286 -0
  14. package/dist/runtime/components/example.input.vue.d.ts +20 -0
  15. package/dist/runtime/components/example.popover.vue +161 -0
  16. package/dist/runtime/components/example.radio.vue +165 -0
  17. package/dist/runtime/components/example.radio.vue.d.ts +24 -0
  18. package/dist/runtime/components/example.select.vue +591 -0
  19. package/dist/runtime/components/example.select.vue.d.ts +69 -0
  20. package/dist/runtime/components/example.sidebar.vue +104 -0
  21. package/dist/runtime/components/example.table.vue +126 -0
  22. package/dist/runtime/components/example.tag.vue +279 -0
  23. package/dist/runtime/components/html-encode.vue +37 -0
  24. package/dist/runtime/pages/theme.vue +30 -0
  25. package/dist/runtime/plugins/element-extend-plugin.d.ts +38 -0
  26. package/dist/runtime/plugins/element-extend-plugin.js +39 -0
  27. package/dist/runtime/plugins/element-extend-plugin.mjs +39 -0
  28. package/dist/runtime/plugins/experimental-size-plugin.d.ts +2 -0
  29. package/dist/runtime/plugins/experimental-size-plugin.js +13 -0
  30. package/dist/runtime/plugins/experimental-size-plugin.mjs +13 -0
  31. package/dist/runtime/plugins/sample-plugin.d.ts +20 -0
  32. package/dist/runtime/plugins/sample-plugin.js +5 -0
  33. package/dist/runtime/plugins/sample-plugin.mjs +5 -0
  34. package/dist/runtime/plugins/theme-provider.d.ts +30 -0
  35. package/dist/runtime/plugins/theme-provider.js +46 -0
  36. package/dist/runtime/plugins/theme-provider.mjs +46 -0
  37. package/dist/runtime/public/scss/element-plus/affix.css +277 -0
  38. package/dist/runtime/public/scss/element-plus/alert.css +420 -0
  39. package/dist/runtime/public/scss/element-plus/anchor-link.css +304 -0
  40. package/dist/runtime/public/scss/element-plus/anchor.css +348 -0
  41. package/dist/runtime/public/scss/element-plus/aside.css +280 -0
  42. package/dist/runtime/public/scss/element-plus/autocomplete.css +383 -0
  43. package/dist/runtime/public/scss/element-plus/avatar.css +320 -0
  44. package/dist/runtime/public/scss/element-plus/backtop.css +298 -0
  45. package/dist/runtime/public/scss/element-plus/badge.css +348 -0
  46. package/dist/runtime/public/scss/element-plus/base.css +522 -0
  47. package/dist/runtime/public/scss/element-plus/breadcrumb-item.css +0 -0
  48. package/dist/runtime/public/scss/element-plus/breadcrumb.css +330 -0
  49. package/dist/runtime/public/scss/element-plus/button-group.css +413 -0
  50. package/dist/runtime/public/scss/element-plus/button.css +1043 -0
  51. package/dist/runtime/public/scss/element-plus/calendar.css +342 -0
  52. package/dist/runtime/public/scss/element-plus/card.css +312 -0
  53. package/dist/runtime/public/scss/element-plus/carousel-item.css +322 -0
  54. package/dist/runtime/public/scss/element-plus/carousel.css +447 -0
  55. package/dist/runtime/public/scss/element-plus/cascader-panel.css +400 -0
  56. package/dist/runtime/public/scss/element-plus/cascader.css +532 -0
  57. package/dist/runtime/public/scss/element-plus/check-tag.css +358 -0
  58. package/dist/runtime/public/scss/element-plus/checkbox-button.css +418 -0
  59. package/dist/runtime/public/scss/element-plus/checkbox-group.css +279 -0
  60. package/dist/runtime/public/scss/element-plus/checkbox.css +560 -0
  61. package/dist/runtime/public/scss/element-plus/col.css +3242 -0
  62. package/dist/runtime/public/scss/element-plus/collapse-item.css +0 -0
  63. package/dist/runtime/public/scss/element-plus/collapse-transition.css +0 -0
  64. package/dist/runtime/public/scss/element-plus/collapse.css +462 -0
  65. package/dist/runtime/public/scss/element-plus/color/index.css +0 -0
  66. package/dist/runtime/public/scss/element-plus/color-picker.css +622 -0
  67. package/dist/runtime/public/scss/element-plus/common/popup.css +310 -0
  68. package/dist/runtime/public/scss/element-plus/common/transition.css +392 -0
  69. package/dist/runtime/public/scss/element-plus/common/var.css +274 -0
  70. package/dist/runtime/public/scss/element-plus/config-provider.css +0 -0
  71. package/dist/runtime/public/scss/element-plus/container.css +285 -0
  72. package/dist/runtime/public/scss/element-plus/dark/css-vars.css +325 -0
  73. package/dist/runtime/public/scss/element-plus/dark/var.css +274 -0
  74. package/dist/runtime/public/scss/element-plus/date-picker/date-picker.css +496 -0
  75. package/dist/runtime/public/scss/element-plus/date-picker/date-range-picker.css +378 -0
  76. package/dist/runtime/public/scss/element-plus/date-picker/date-table.css +398 -0
  77. package/dist/runtime/public/scss/element-plus/date-picker/month-table.css +360 -0
  78. package/dist/runtime/public/scss/element-plus/date-picker/picker-panel.css +391 -0
  79. package/dist/runtime/public/scss/element-plus/date-picker/picker.css +634 -0
  80. package/dist/runtime/public/scss/element-plus/date-picker/time-picker.css +344 -0
  81. package/dist/runtime/public/scss/element-plus/date-picker/time-range-picker.css +303 -0
  82. package/dist/runtime/public/scss/element-plus/date-picker/time-spinner.css +362 -0
  83. package/dist/runtime/public/scss/element-plus/date-picker/year-table.css +356 -0
  84. package/dist/runtime/public/scss/element-plus/date-picker.css +1447 -0
  85. package/dist/runtime/public/scss/element-plus/descriptions-item.css +307 -0
  86. package/dist/runtime/public/scss/element-plus/descriptions.css +373 -0
  87. package/dist/runtime/public/scss/element-plus/dialog.css +484 -0
  88. package/dist/runtime/public/scss/element-plus/display.css +329 -0
  89. package/dist/runtime/public/scss/element-plus/divider.css +317 -0
  90. package/dist/runtime/public/scss/element-plus/drawer.css +391 -0
  91. package/dist/runtime/public/scss/element-plus/dropdown-item.css +0 -0
  92. package/dist/runtime/public/scss/element-plus/dropdown-menu.css +0 -0
  93. package/dist/runtime/public/scss/element-plus/dropdown.css +464 -0
  94. package/dist/runtime/public/scss/element-plus/empty.css +327 -0
  95. package/dist/runtime/public/scss/element-plus/footer.css +282 -0
  96. package/dist/runtime/public/scss/element-plus/form-item.css +0 -0
  97. package/dist/runtime/public/scss/element-plus/form.css +499 -0
  98. package/dist/runtime/public/scss/element-plus/header.css +282 -0
  99. package/dist/runtime/public/scss/element-plus/icon.css +315 -0
  100. package/dist/runtime/public/scss/element-plus/image-viewer.css +411 -0
  101. package/dist/runtime/public/scss/element-plus/image.css +315 -0
  102. package/dist/runtime/public/scss/element-plus/index.css +16702 -0
  103. package/dist/runtime/public/scss/element-plus/infinite-scroll.css +0 -0
  104. package/dist/runtime/public/scss/element-plus/input-number.css +450 -0
  105. package/dist/runtime/public/scss/element-plus/input.css +742 -0
  106. package/dist/runtime/public/scss/element-plus/link.css +422 -0
  107. package/dist/runtime/public/scss/element-plus/loading.css +363 -0
  108. package/dist/runtime/public/scss/element-plus/main.css +283 -0
  109. package/dist/runtime/public/scss/element-plus/mention.css +385 -0
  110. package/dist/runtime/public/scss/element-plus/menu-item-group.css +0 -0
  111. package/dist/runtime/public/scss/element-plus/menu-item.css +0 -0
  112. package/dist/runtime/public/scss/element-plus/menu.css +709 -0
  113. package/dist/runtime/public/scss/element-plus/message-box.css +501 -0
  114. package/dist/runtime/public/scss/element-plus/message.css +398 -0
  115. package/dist/runtime/public/scss/element-plus/mixins/config.css +0 -0
  116. package/dist/runtime/public/scss/element-plus/mixins/function.css +0 -0
  117. package/dist/runtime/public/scss/element-plus/mixins/mixins.css +274 -0
  118. package/dist/runtime/public/scss/element-plus/mixins/utils.css +0 -0
  119. package/dist/runtime/public/scss/element-plus/notification.css +381 -0
  120. package/dist/runtime/public/scss/element-plus/option-group.css +303 -0
  121. package/dist/runtime/public/scss/element-plus/option.css +325 -0
  122. package/dist/runtime/public/scss/element-plus/overlay.css +289 -0
  123. package/dist/runtime/public/scss/element-plus/page-header.css +323 -0
  124. package/dist/runtime/public/scss/element-plus/pagination.css +533 -0
  125. package/dist/runtime/public/scss/element-plus/popconfirm.css +287 -0
  126. package/dist/runtime/public/scss/element-plus/popover.css +324 -0
  127. package/dist/runtime/public/scss/element-plus/popper.css +372 -0
  128. package/dist/runtime/public/scss/element-plus/progress.css +421 -0
  129. package/dist/runtime/public/scss/element-plus/radio-button.css +402 -0
  130. package/dist/runtime/public/scss/element-plus/radio-group.css +280 -0
  131. package/dist/runtime/public/scss/element-plus/radio.css +533 -0
  132. package/dist/runtime/public/scss/element-plus/rate.css +356 -0
  133. package/dist/runtime/public/scss/element-plus/reset.css +371 -0
  134. package/dist/runtime/public/scss/element-plus/result.css +353 -0
  135. package/dist/runtime/public/scss/element-plus/row.css +311 -0
  136. package/dist/runtime/public/scss/element-plus/scrollbar.css +345 -0
  137. package/dist/runtime/public/scss/element-plus/segmented.css +432 -0
  138. package/dist/runtime/public/scss/element-plus/select-dropdown-v2.css +323 -0
  139. package/dist/runtime/public/scss/element-plus/select-dropdown.css +323 -0
  140. package/dist/runtime/public/scss/element-plus/select-v2.css +740 -0
  141. package/dist/runtime/public/scss/element-plus/select.css +740 -0
  142. package/dist/runtime/public/scss/element-plus/skeleton-item.css +344 -0
  143. package/dist/runtime/public/scss/element-plus/skeleton.css +307 -0
  144. package/dist/runtime/public/scss/element-plus/slider.css +452 -0
  145. package/dist/runtime/public/scss/element-plus/space.css +289 -0
  146. package/dist/runtime/public/scss/element-plus/spinner.css +314 -0
  147. package/dist/runtime/public/scss/element-plus/statistic.css +308 -0
  148. package/dist/runtime/public/scss/element-plus/step.css +558 -0
  149. package/dist/runtime/public/scss/element-plus/steps.css +291 -0
  150. package/dist/runtime/public/scss/element-plus/sub-menu.css +0 -0
  151. package/dist/runtime/public/scss/element-plus/switch.css +498 -0
  152. package/dist/runtime/public/scss/element-plus/tab-pane.css +0 -0
  153. package/dist/runtime/public/scss/element-plus/table-column.css +354 -0
  154. package/dist/runtime/public/scss/element-plus/table-v2.css +492 -0
  155. package/dist/runtime/public/scss/element-plus/table.css +865 -0
  156. package/dist/runtime/public/scss/element-plus/tabs.css +864 -0
  157. package/dist/runtime/public/scss/element-plus/tag.css +596 -0
  158. package/dist/runtime/public/scss/element-plus/text.css +344 -0
  159. package/dist/runtime/public/scss/element-plus/time-picker.css +942 -0
  160. package/dist/runtime/public/scss/element-plus/time-select.css +884 -0
  161. package/dist/runtime/public/scss/element-plus/timeline-item.css +387 -0
  162. package/dist/runtime/public/scss/element-plus/timeline.css +306 -0
  163. package/dist/runtime/public/scss/element-plus/tooltip-v2.css +382 -0
  164. package/dist/runtime/public/scss/element-plus/tooltip.css +0 -0
  165. package/dist/runtime/public/scss/element-plus/tour.css +433 -0
  166. package/dist/runtime/public/scss/element-plus/transfer.css +469 -0
  167. package/dist/runtime/public/scss/element-plus/tree-select.css +297 -0
  168. package/dist/runtime/public/scss/element-plus/tree.css +510 -0
  169. package/dist/runtime/public/scss/element-plus/upload.css +834 -0
  170. package/dist/runtime/public/scss/element-plus/var.css +361 -0
  171. package/dist/runtime/public/scss/element-plus/virtual-list.css +302 -0
  172. package/dist/runtime/public/scss/theme.css +1191 -0
  173. package/dist/runtime/server/tsconfig.json +6 -0
  174. package/dist/runtime/types.d.ts +40 -0
  175. package/dist/types.d.mts +7 -0
  176. package/dist/types.d.ts +7 -0
  177. package/package.json +29 -12
  178. package/components/TimusIcons.vue +0 -54
  179. package/generate-icon.js +0 -22
  180. package/module.ts +0 -84
  181. package/pages/icons.vue +0 -46
  182. package/plugins/sample-plugin.ts +0 -5
  183. package/public/isax/fonts/iconsax.svg +0 -927
  184. package/public/isax/fonts/iconsax.ttf +0 -0
  185. package/public/isax/fonts/iconsax.woff +0 -0
  186. package/public/isax/icons.json +0 -899
  187. package/public/isax/selection.json +0 -1
  188. package/public/isax/style.css +0 -1
  189. package/public/isax/style.scss +0 -5435
  190. package/public/isax/variables.scss +0 -900
@@ -0,0 +1,1447 @@
1
+ @charset "UTF-8";
2
+ /* Element Chalk Variables */
3
+ :root {
4
+ --bs-white-rgb: 255, 255, 255;
5
+ --bs-black-rgb: 0, 0, 0;
6
+ --bs-bg-opacity: 1;
7
+ --el-color-white: white;
8
+ --el-color-black: black;
9
+ }
10
+ :root {
11
+ --el-color-light-light-1: rgba(255, 255, 255, 0.01);
12
+ }
13
+ :root {
14
+ --el-color-light-light-2: rgba(255, 255, 255, 0.01);
15
+ }
16
+ :root {
17
+ --el-color-light-light-3: rgba(255, 255, 255, 0.01);
18
+ }
19
+ :root {
20
+ --el-color-light-light-4: rgba(255, 255, 255, 0.01);
21
+ }
22
+ :root {
23
+ --el-color-light-light-5: rgba(255, 255, 255, 0.01);
24
+ --el-color-light: rgba(255, 255, 255, 0.01);
25
+ }
26
+ :root {
27
+ --el-color-light-light-6: rgba(255, 255, 255, 0.01);
28
+ }
29
+ :root {
30
+ --el-color-light-light-7: rgba(255, 255, 255, 0.01);
31
+ }
32
+ :root {
33
+ --el-color-light-light-8: rgba(255, 255, 255, 0.01);
34
+ }
35
+ :root {
36
+ --el-color-light-light-9: rgba(255, 255, 255, 0.01);
37
+ }
38
+ :root {
39
+ --el-color-default-light-1: #dee2ff;
40
+ }
41
+ :root {
42
+ --el-color-default-light-2: #c3c8ff;
43
+ }
44
+ :root {
45
+ --el-color-default-light-3: #9fa4ff;
46
+ }
47
+ :root {
48
+ --el-color-default-light-4: #7e79ff;
49
+ }
50
+ :root {
51
+ --el-color-default-light-5: #6959fb;
52
+ --el-color-default: #6959fb;
53
+ }
54
+ :root {
55
+ --el-color-default-light-6: #5c3bf0;
56
+ }
57
+ :root {
58
+ --el-color-default-light-7: #5737d6;
59
+ }
60
+ :root {
61
+ --el-color-default-light-8: #4028ab;
62
+ }
63
+ :root {
64
+ --el-color-default-light-9: #151517;
65
+ }
66
+ :root {
67
+ --el-color-primary-light-1: #dee2ff;
68
+ }
69
+ :root {
70
+ --el-color-primary-light-2: #c3c8ff;
71
+ }
72
+ :root {
73
+ --el-color-primary-light-3: #9fa4ff;
74
+ }
75
+ :root {
76
+ --el-color-primary-light-4: #7e79ff;
77
+ }
78
+ :root {
79
+ --el-color-primary-light-5: #6959fb;
80
+ --el-color-primary: #6959fb;
81
+ }
82
+ :root {
83
+ --el-color-primary-light-6: #5c3bf0;
84
+ }
85
+ :root {
86
+ --el-color-primary-light-7: #5737d6;
87
+ }
88
+ :root {
89
+ --el-color-primary-light-8: #4028ab;
90
+ }
91
+ :root {
92
+ --el-color-primary-light-9: #382887;
93
+ }
94
+ :root {
95
+ --el-color-secondary-light-1: #d5f6e8;
96
+ }
97
+ :root {
98
+ --el-color-secondary-light-2: #aeecd4;
99
+ }
100
+ :root {
101
+ --el-color-secondary-light-3: #7eddbf;
102
+ }
103
+ :root {
104
+ --el-color-secondary-light-4: #43c49f;
105
+ }
106
+ :root {
107
+ --el-color-secondary-light-5: #20a987;
108
+ --el-color-secondary: #20a987;
109
+ }
110
+ :root {
111
+ --el-color-secondary-light-6: #12896e;
112
+ }
113
+ :root {
114
+ --el-color-secondary-light-7: #0f6d5a;
115
+ }
116
+ :root {
117
+ --el-color-secondary-light-8: #0e5748;
118
+ }
119
+ :root {
120
+ --el-color-secondary-light-9: #0d473d;
121
+ }
122
+ :root {
123
+ --el-color-neutral-light-1: #f8f7f8;
124
+ }
125
+ :root {
126
+ --el-color-neutral-light-2: #f3f2f4;
127
+ }
128
+ :root {
129
+ --el-color-neutral-light-3: #dad9dd;
130
+ }
131
+ :root {
132
+ --el-color-neutral-light-4: #c1c0c7;
133
+ }
134
+ :root {
135
+ --el-color-neutral-light-5: #a8a6b1;
136
+ --el-color-neutral: #a8a6b1;
137
+ }
138
+ :root {
139
+ --el-color-neutral-light-6: #8f8d9a;
140
+ }
141
+ :root {
142
+ --el-color-neutral-light-7: #83818f;
143
+ }
144
+ :root {
145
+ --el-color-neutral-light-8: #454157;
146
+ }
147
+ :root {
148
+ --el-color-neutral-light-9: #07021f;
149
+ }
150
+ :root {
151
+ --el-color-info-light-1: #e3f1fb;
152
+ }
153
+ :root {
154
+ --el-color-info-light-2: #c0e5f7;
155
+ }
156
+ :root {
157
+ --el-color-info-light-3: #88d1f1;
158
+ }
159
+ :root {
160
+ --el-color-info-light-4: #3cb5e6;
161
+ }
162
+ :root {
163
+ --el-color-info-light-5: #21a1d6;
164
+ --el-color-info: #21a1d6;
165
+ }
166
+ :root {
167
+ --el-color-info-light-6: #1382b6;
168
+ }
169
+ :root {
170
+ --el-color-info-light-7: #116793;
171
+ }
172
+ :root {
173
+ --el-color-info-light-8: #12587a;
174
+ }
175
+ :root {
176
+ --el-color-info-light-9: #144a66;
177
+ }
178
+ :root {
179
+ --el-color-danger-light-1: #fde3e3;
180
+ }
181
+ :root {
182
+ --el-color-danger-light-2: #fdcbcb;
183
+ }
184
+ :root {
185
+ --el-color-danger-light-3: #faa7a7;
186
+ }
187
+ :root {
188
+ --el-color-danger-light-4: #f35c5c;
189
+ }
190
+ :root {
191
+ --el-color-danger-light-5: #eb4848;
192
+ --el-color-danger: #eb4848;
193
+ }
194
+ :root {
195
+ --el-color-danger-light-6: #d82a2a;
196
+ }
197
+ :root {
198
+ --el-color-danger-light-7: #b52020;
199
+ }
200
+ :root {
201
+ --el-color-danger-light-8: #961e1e;
202
+ }
203
+ :root {
204
+ --el-color-danger-light-9: #7d1f1f;
205
+ }
206
+ :root {
207
+ --el-color-success-light-1: #f0f8ed;
208
+ }
209
+ :root {
210
+ --el-color-success-light-2: #d9edd3;
211
+ }
212
+ :root {
213
+ --el-color-success-light-3: #b4daa7;
214
+ }
215
+ :root {
216
+ --el-color-success-light-4: #8ec87b;
217
+ }
218
+ :root {
219
+ --el-color-success-light-5: #69b64f;
220
+ --el-color-success: #69b64f;
221
+ }
222
+ :root {
223
+ --el-color-success-light-6: #488633;
224
+ }
225
+ :root {
226
+ --el-color-success-light-7: #3a6a2b;
227
+ }
228
+ :root {
229
+ --el-color-success-light-8: #315526;
230
+ }
231
+ :root {
232
+ --el-color-success-light-9: #294621;
233
+ }
234
+ :root {
235
+ --el-color-warning-light-1: #fff5c6;
236
+ }
237
+ :root {
238
+ --el-color-warning-light-2: #ffe988;
239
+ }
240
+ :root {
241
+ --el-color-warning-light-3: #ffd643;
242
+ }
243
+ :root {
244
+ --el-color-warning-light-4: #ffc520;
245
+ }
246
+ :root {
247
+ --el-color-warning-light-5: #f9a307;
248
+ --el-color-warning: #f9a307;
249
+ }
250
+ :root {
251
+ --el-color-warning-light-6: #dd7b02;
252
+ }
253
+ :root {
254
+ --el-color-warning-light-7: #b75606;
255
+ }
256
+ :root {
257
+ --el-color-warning-light-8: #94410c;
258
+ }
259
+ :root {
260
+ --el-color-warning-light-9: #7a370d;
261
+ }
262
+ /**
263
+ Bununla selectorun içerisine variable ekleyebiliyorsun
264
+ .selector{
265
+ // --el-button-text-color: var(--el-color-primary); -> bu eklenir
266
+ @include css-var-from-global(('button-text-color'), ('color-primary'));
267
+
268
+ // bununla property'ye değer atayabilirsin (hiyerarşik alıyor)
269
+ color: getCssVar('colors-neutral-light-2');
270
+
271
+ // bununla da property alınabililyor
272
+ font-size: map.get($select, 'font-size');
273
+ }
274
+ **/
275
+ .el-date-table {
276
+ font-size: 12px;
277
+ user-select: none;
278
+ }
279
+ .el-date-table.is-week-mode .el-date-table__row:hover .el-date-table-cell {
280
+ background-color: var(--el-datepicker-inrange-bg-color);
281
+ }
282
+ .el-date-table.is-week-mode .el-date-table__row:hover td.available:hover {
283
+ color: var(--el-datepicker-text-color);
284
+ }
285
+ .el-date-table.is-week-mode .el-date-table__row:hover td:first-child .el-date-table-cell {
286
+ margin-left: 5px;
287
+ border-top-left-radius: 15px;
288
+ border-bottom-left-radius: 15px;
289
+ }
290
+ .el-date-table.is-week-mode .el-date-table__row:hover td:last-child .el-date-table-cell {
291
+ margin-right: 5px;
292
+ border-top-right-radius: 15px;
293
+ border-bottom-right-radius: 15px;
294
+ }
295
+ .el-date-table.is-week-mode .el-date-table__row.current .el-date-table-cell {
296
+ background-color: var(--el-datepicker-inrange-bg-color);
297
+ }
298
+
299
+ .el-date-table td {
300
+ width: 32px;
301
+ height: 30px;
302
+ padding: 4px 0;
303
+ box-sizing: border-box;
304
+ text-align: center;
305
+ cursor: pointer;
306
+ position: relative;
307
+ }
308
+ .el-date-table td .el-date-table-cell {
309
+ height: 30px;
310
+ padding: 3px 0;
311
+ box-sizing: border-box;
312
+ }
313
+ .el-date-table td .el-date-table-cell .el-date-table-cell__text {
314
+ width: 24px;
315
+ height: 24px;
316
+ display: block;
317
+ margin: 0 auto;
318
+ line-height: 24px;
319
+ position: absolute;
320
+ left: 50%;
321
+ transform: translateX(-50%);
322
+ border-radius: 50%;
323
+ }
324
+ .el-date-table td.next-month, .el-date-table td.prev-month {
325
+ color: var(--el-datepicker-off-text-color);
326
+ }
327
+ .el-date-table td.today {
328
+ position: relative;
329
+ }
330
+ .el-date-table td.today .el-date-table-cell__text {
331
+ color: var(--el-color-primary);
332
+ font-weight: bold;
333
+ }
334
+ .el-date-table td.today.start-date .el-date-table-cell__text, .el-date-table td.today.end-date .el-date-table-cell__text {
335
+ color: #ffffff;
336
+ }
337
+ .el-date-table td.available:hover {
338
+ color: var(--el-datepicker-hover-text-color);
339
+ }
340
+ .el-date-table td.in-range .el-date-table-cell {
341
+ background-color: var(--el-datepicker-inrange-bg-color);
342
+ }
343
+ .el-date-table td.in-range .el-date-table-cell:hover {
344
+ background-color: var(--el-datepicker-inrange-hover-bg-color);
345
+ }
346
+ .el-date-table td.current:not(.disabled) .el-date-table-cell__text {
347
+ color: #ffffff;
348
+ background-color: var(--el-datepicker-active-color);
349
+ }
350
+ .el-date-table td.current:not(.disabled):focus-visible .el-date-table-cell__text {
351
+ outline: 2px solid var(--el-datepicker-active-color);
352
+ outline-offset: 1px;
353
+ }
354
+ .el-date-table td.start-date .el-date-table-cell, .el-date-table td.end-date .el-date-table-cell {
355
+ color: #ffffff;
356
+ }
357
+ .el-date-table td.start-date .el-date-table-cell__text, .el-date-table td.end-date .el-date-table-cell__text {
358
+ background-color: var(--el-datepicker-active-color);
359
+ }
360
+ .el-date-table td.start-date .el-date-table-cell {
361
+ margin-left: 5px;
362
+ border-top-left-radius: 15px;
363
+ border-bottom-left-radius: 15px;
364
+ }
365
+ .el-date-table td.end-date .el-date-table-cell {
366
+ margin-right: 5px;
367
+ border-top-right-radius: 15px;
368
+ border-bottom-right-radius: 15px;
369
+ }
370
+ .el-date-table td.disabled .el-date-table-cell {
371
+ background-color: var(--el-fill-color-light);
372
+ opacity: 1;
373
+ cursor: not-allowed;
374
+ color: var(--el-text-color-placeholder);
375
+ }
376
+ .el-date-table td.selected .el-date-table-cell {
377
+ margin-left: 5px;
378
+ margin-right: 5px;
379
+ border-radius: 15px;
380
+ }
381
+ .el-date-table td.selected .el-date-table-cell__text {
382
+ background-color: var(--el-datepicker-active-color);
383
+ color: #ffffff;
384
+ border-radius: 15px;
385
+ }
386
+ .el-date-table td.week {
387
+ font-size: 80%;
388
+ color: var(--el-datepicker-header-text-color);
389
+ }
390
+ .el-date-table td:focus {
391
+ outline: none;
392
+ }
393
+ .el-date-table th {
394
+ padding: 5px;
395
+ color: var(--el-datepicker-header-text-color);
396
+ font-weight: 400;
397
+ border-bottom: solid 1px var(--el-border-color-lighter);
398
+ }
399
+
400
+ .el-month-table {
401
+ font-size: 12px;
402
+ margin: -1px;
403
+ border-collapse: collapse;
404
+ }
405
+ .el-month-table td {
406
+ width: 68px;
407
+ text-align: center;
408
+ padding: 8px 0;
409
+ cursor: pointer;
410
+ position: relative;
411
+ }
412
+ .el-month-table td .el-date-table-cell {
413
+ height: 48px;
414
+ padding: 6px 0;
415
+ box-sizing: border-box;
416
+ }
417
+ .el-month-table td.today .el-date-table-cell__text {
418
+ color: var(--el-color-primary);
419
+ font-weight: bold;
420
+ }
421
+ .el-month-table td.today.start-date .el-date-table-cell__text, .el-month-table td.today.end-date .el-date-table-cell__text {
422
+ color: #ffffff;
423
+ }
424
+ .el-month-table td.disabled .el-date-table-cell__text {
425
+ background-color: var(--el-fill-color-light);
426
+ cursor: not-allowed;
427
+ color: var(--el-text-color-placeholder);
428
+ }
429
+ .el-month-table td.disabled .el-date-table-cell__text:hover {
430
+ color: var(--el-text-color-placeholder);
431
+ }
432
+ .el-month-table td .el-date-table-cell__text {
433
+ width: 54px;
434
+ height: 36px;
435
+ display: block;
436
+ line-height: 36px;
437
+ color: var(--el-datepicker-text-color);
438
+ margin: 0 auto;
439
+ border-radius: 18px;
440
+ position: absolute;
441
+ left: 50%;
442
+ transform: translateX(-50%);
443
+ }
444
+ .el-month-table td .el-date-table-cell__text:hover {
445
+ color: var(--el-datepicker-hover-text-color);
446
+ }
447
+ .el-month-table td.in-range .el-date-table-cell {
448
+ background-color: var(--el-datepicker-inrange-bg-color);
449
+ }
450
+ .el-month-table td.in-range .el-date-table-cell:hover {
451
+ background-color: var(--el-datepicker-inrange-hover-bg-color);
452
+ }
453
+ .el-month-table td.start-date .el-date-table-cell, .el-month-table td.end-date .el-date-table-cell {
454
+ color: #ffffff;
455
+ }
456
+ .el-month-table td.start-date .el-date-table-cell__text, .el-month-table td.end-date .el-date-table-cell__text {
457
+ color: #ffffff;
458
+ background-color: var(--el-datepicker-active-color);
459
+ }
460
+ .el-month-table td.start-date .el-date-table-cell {
461
+ margin-left: 3px;
462
+ border-top-left-radius: 24px;
463
+ border-bottom-left-radius: 24px;
464
+ }
465
+ .el-month-table td.end-date .el-date-table-cell {
466
+ margin-right: 3px;
467
+ border-top-right-radius: 24px;
468
+ border-bottom-right-radius: 24px;
469
+ }
470
+ .el-month-table td.current:not(.disabled) .el-date-table-cell {
471
+ border-radius: 24px;
472
+ margin-left: 3px;
473
+ margin-right: 3px;
474
+ }
475
+ .el-month-table td.current:not(.disabled) .el-date-table-cell__text {
476
+ color: #ffffff;
477
+ background-color: var(--el-datepicker-active-color);
478
+ }
479
+ .el-month-table td:focus-visible {
480
+ outline: none;
481
+ }
482
+ .el-month-table td:focus-visible .el-date-table-cell__text {
483
+ outline: 2px solid var(--el-datepicker-active-color);
484
+ outline-offset: 1px;
485
+ }
486
+
487
+ .el-year-table {
488
+ font-size: 12px;
489
+ margin: -1px;
490
+ border-collapse: collapse;
491
+ }
492
+ .el-year-table .el-icon {
493
+ color: var(--el-datepicker-icon-color);
494
+ }
495
+ .el-year-table td {
496
+ width: 68px;
497
+ text-align: center;
498
+ padding: 8px 0px;
499
+ cursor: pointer;
500
+ position: relative;
501
+ }
502
+ .el-year-table td .el-date-table-cell {
503
+ height: 48px;
504
+ padding: 6px 0;
505
+ box-sizing: border-box;
506
+ }
507
+ .el-year-table td.today .el-date-table-cell__text {
508
+ color: var(--el-color-primary);
509
+ font-weight: bold;
510
+ }
511
+ .el-year-table td.today.start-date .el-date-table-cell__text, .el-year-table td.today.end-date .el-date-table-cell__text {
512
+ color: #ffffff;
513
+ }
514
+ .el-year-table td.disabled .el-date-table-cell__text {
515
+ background-color: var(--el-fill-color-light);
516
+ cursor: not-allowed;
517
+ color: var(--el-text-color-placeholder);
518
+ }
519
+ .el-year-table td.disabled .el-date-table-cell__text:hover {
520
+ color: var(--el-text-color-placeholder);
521
+ }
522
+ .el-year-table td .el-date-table-cell__text {
523
+ width: 60px;
524
+ height: 36px;
525
+ display: block;
526
+ line-height: 36px;
527
+ color: var(--el-datepicker-text-color);
528
+ border-radius: 18px;
529
+ margin: 0 auto;
530
+ position: absolute;
531
+ left: 50%;
532
+ transform: translateX(-50%);
533
+ }
534
+ .el-year-table td .el-date-table-cell__text:hover {
535
+ color: var(--el-datepicker-hover-text-color);
536
+ }
537
+ .el-year-table td.in-range .el-date-table-cell {
538
+ background-color: var(--el-datepicker-inrange-bg-color);
539
+ }
540
+ .el-year-table td.in-range .el-date-table-cell:hover {
541
+ background-color: var(--el-datepicker-inrange-hover-bg-color);
542
+ }
543
+ .el-year-table td.start-date .el-date-table-cell, .el-year-table td.end-date .el-date-table-cell {
544
+ color: #ffffff;
545
+ }
546
+ .el-year-table td.start-date .el-date-table-cell__text, .el-year-table td.end-date .el-date-table-cell__text {
547
+ color: #ffffff;
548
+ background-color: var(--el-datepicker-active-color);
549
+ }
550
+ .el-year-table td.start-date .el-date-table-cell {
551
+ border-top-left-radius: 24px;
552
+ border-bottom-left-radius: 24px;
553
+ }
554
+ .el-year-table td.end-date .el-date-table-cell {
555
+ border-top-right-radius: 24px;
556
+ border-bottom-right-radius: 24px;
557
+ }
558
+ .el-year-table td.current:not(.disabled) .el-date-table-cell__text {
559
+ color: #ffffff;
560
+ background-color: var(--el-datepicker-active-color);
561
+ }
562
+ .el-year-table td:focus-visible {
563
+ outline: none;
564
+ }
565
+ .el-year-table td:focus-visible .el-date-table-cell__text {
566
+ outline: 2px solid var(--el-datepicker-active-color);
567
+ outline-offset: 1px;
568
+ }
569
+
570
+ .el-time-spinner.has-seconds .el-time-spinner__wrapper {
571
+ width: 33.3%;
572
+ }
573
+ .el-time-spinner__wrapper {
574
+ max-height: 192px;
575
+ overflow: auto;
576
+ display: inline-block;
577
+ width: 50%;
578
+ vertical-align: top;
579
+ position: relative;
580
+ }
581
+ .el-time-spinner__wrapper.el-scrollbar__wrap:not(.el-scrollbar__wrap--hidden-default) {
582
+ padding-bottom: 15px;
583
+ }
584
+ .el-time-spinner__wrapper.is-arrow {
585
+ box-sizing: border-box;
586
+ text-align: center;
587
+ overflow: hidden;
588
+ }
589
+ .el-time-spinner__wrapper.is-arrow .el-time-spinner__list {
590
+ transform: translateY(-32px);
591
+ }
592
+ .el-time-spinner__wrapper.is-arrow .el-time-spinner__item:hover:not(.is-disabled):not(.is-active) {
593
+ background: var(--el-fill-color-light);
594
+ cursor: default;
595
+ }
596
+
597
+ .el-time-spinner__arrow {
598
+ font-size: 12px;
599
+ color: var(--el-text-color-secondary);
600
+ position: absolute;
601
+ left: 0;
602
+ width: 100%;
603
+ z-index: var(--el-index-normal);
604
+ text-align: center;
605
+ height: 30px;
606
+ line-height: 30px;
607
+ cursor: pointer;
608
+ }
609
+ .el-time-spinner__arrow:hover {
610
+ color: var(--el-color-primary);
611
+ }
612
+ .el-time-spinner__arrow.arrow-up {
613
+ top: 10px;
614
+ }
615
+ .el-time-spinner__arrow.arrow-down {
616
+ bottom: 10px;
617
+ }
618
+
619
+ .el-time-spinner__input.el-input {
620
+ width: 70%;
621
+ }
622
+ .el-time-spinner__input.el-input .el-input__inner {
623
+ padding: 0;
624
+ text-align: center;
625
+ }
626
+
627
+ .el-time-spinner__list {
628
+ padding: 0;
629
+ margin: 0;
630
+ list-style: none;
631
+ text-align: center;
632
+ }
633
+ .el-time-spinner__list::after, .el-time-spinner__list::before {
634
+ content: "";
635
+ display: block;
636
+ width: 100%;
637
+ height: 80px;
638
+ }
639
+
640
+ .el-time-spinner__item {
641
+ height: 32px;
642
+ line-height: 32px;
643
+ font-size: 12px;
644
+ color: var(--el-text-color-regular);
645
+ }
646
+ .el-time-spinner__item:hover:not(.is-disabled):not(.is-active) {
647
+ background: var(--el-fill-color-light);
648
+ cursor: pointer;
649
+ }
650
+ .el-time-spinner__item.is-active:not(.is-disabled) {
651
+ color: var(--el-text-color-primary);
652
+ font-weight: bold;
653
+ }
654
+ .el-time-spinner__item.is-disabled {
655
+ color: var(--el-text-color-placeholder);
656
+ cursor: not-allowed;
657
+ }
658
+
659
+ .fade-in-linear-enter-active,
660
+ .fade-in-linear-leave-active {
661
+ transition: var(--el-transition-fade-linear);
662
+ }
663
+
664
+ .fade-in-linear-enter-from,
665
+ .fade-in-linear-leave-to {
666
+ opacity: 0;
667
+ }
668
+
669
+ .el-fade-in-linear-enter-active,
670
+ .el-fade-in-linear-leave-active {
671
+ transition: var(--el-transition-fade-linear);
672
+ }
673
+
674
+ .el-fade-in-linear-enter-from,
675
+ .el-fade-in-linear-leave-to {
676
+ opacity: 0;
677
+ }
678
+
679
+ .el-fade-in-enter-active,
680
+ .el-fade-in-leave-active {
681
+ transition: all var(--el-transition-duration) cubic-bezier(0.55, 0, 0.1, 1);
682
+ }
683
+
684
+ .el-fade-in-enter-from,
685
+ .el-fade-in-leave-active {
686
+ opacity: 0;
687
+ }
688
+
689
+ .el-zoom-in-center-enter-active,
690
+ .el-zoom-in-center-leave-active {
691
+ transition: all var(--el-transition-duration) cubic-bezier(0.55, 0, 0.1, 1);
692
+ }
693
+
694
+ .el-zoom-in-center-enter-from,
695
+ .el-zoom-in-center-leave-active {
696
+ opacity: 0;
697
+ transform: scaleX(0);
698
+ }
699
+
700
+ .el-zoom-in-top-enter-active,
701
+ .el-zoom-in-top-leave-active {
702
+ opacity: 1;
703
+ transform: scaleY(1);
704
+ transition: var(--el-transition-md-fade);
705
+ transform-origin: center top;
706
+ }
707
+ .el-zoom-in-top-enter-active[data-popper-placement^=top],
708
+ .el-zoom-in-top-leave-active[data-popper-placement^=top] {
709
+ transform-origin: center bottom;
710
+ }
711
+
712
+ .el-zoom-in-top-enter-from,
713
+ .el-zoom-in-top-leave-active {
714
+ opacity: 0;
715
+ transform: scaleY(0);
716
+ }
717
+
718
+ .el-zoom-in-bottom-enter-active,
719
+ .el-zoom-in-bottom-leave-active {
720
+ opacity: 1;
721
+ transform: scaleY(1);
722
+ transition: var(--el-transition-md-fade);
723
+ transform-origin: center bottom;
724
+ }
725
+
726
+ .el-zoom-in-bottom-enter-from,
727
+ .el-zoom-in-bottom-leave-active {
728
+ opacity: 0;
729
+ transform: scaleY(0);
730
+ }
731
+
732
+ .el-zoom-in-left-enter-active,
733
+ .el-zoom-in-left-leave-active {
734
+ opacity: 1;
735
+ transform: scale(1, 1);
736
+ transition: var(--el-transition-md-fade);
737
+ transform-origin: top left;
738
+ }
739
+
740
+ .el-zoom-in-left-enter-from,
741
+ .el-zoom-in-left-leave-active {
742
+ opacity: 0;
743
+ transform: scale(0.45, 0.45);
744
+ }
745
+
746
+ .collapse-transition {
747
+ transition: var(--el-transition-duration) height ease-in-out, var(--el-transition-duration) padding-top ease-in-out, var(--el-transition-duration) padding-bottom ease-in-out;
748
+ }
749
+
750
+ .el-collapse-transition-leave-active,
751
+ .el-collapse-transition-enter-active {
752
+ transition: var(--el-transition-duration) max-height ease-in-out, var(--el-transition-duration) padding-top ease-in-out, var(--el-transition-duration) padding-bottom ease-in-out;
753
+ }
754
+
755
+ .horizontal-collapse-transition {
756
+ transition: var(--el-transition-duration) width ease-in-out, var(--el-transition-duration) padding-left ease-in-out, var(--el-transition-duration) padding-right ease-in-out;
757
+ }
758
+
759
+ .el-list-enter-active,
760
+ .el-list-leave-active {
761
+ transition: all 1s;
762
+ }
763
+
764
+ .el-list-enter-from,
765
+ .el-list-leave-to {
766
+ opacity: 0;
767
+ transform: translateY(-30px);
768
+ }
769
+
770
+ .el-list-leave-active {
771
+ position: absolute !important;
772
+ }
773
+
774
+ .el-opacity-transition {
775
+ transition: opacity var(--el-transition-duration) cubic-bezier(0.55, 0, 0.1, 1);
776
+ }
777
+
778
+ .el-picker__popper {
779
+ --el-datepicker-border-color: var(--el-disabled-border-color);
780
+ }
781
+ .el-picker__popper.el-popper {
782
+ background: var(--el-bg-color-overlay);
783
+ border: 1px solid var(--el-datepicker-border-color);
784
+ box-shadow: var(--el-box-shadow-light);
785
+ }
786
+ .el-picker__popper.el-popper .el-popper__arrow::before {
787
+ border: 1px solid var(--el-datepicker-border-color);
788
+ }
789
+ .el-picker__popper.el-popper[data-popper-placement^=top] .el-popper__arrow::before {
790
+ border-top-color: transparent;
791
+ border-left-color: transparent;
792
+ }
793
+ .el-picker__popper.el-popper[data-popper-placement^=bottom] .el-popper__arrow::before {
794
+ border-bottom-color: transparent;
795
+ border-right-color: transparent;
796
+ }
797
+ .el-picker__popper.el-popper[data-popper-placement^=left] .el-popper__arrow::before {
798
+ border-left-color: transparent;
799
+ border-bottom-color: transparent;
800
+ }
801
+ .el-picker__popper.el-popper[data-popper-placement^=right] .el-popper__arrow::before {
802
+ border-right-color: transparent;
803
+ border-top-color: transparent;
804
+ }
805
+
806
+ .el-date-editor {
807
+ --el-date-editor-width: 220px;
808
+ --el-date-editor-monthrange-width: 300px;
809
+ --el-date-editor-daterange-width: 350px;
810
+ --el-date-editor-datetimerange-width: 400px;
811
+ --el-input-text-color: var(--el-text-color-regular);
812
+ --el-input-border: var(--el-border);
813
+ --el-input-hover-border: var(--el-border-color-hover);
814
+ --el-input-focus-border: var(--el-color-primary);
815
+ --el-input-transparent-border: 0 0 0 1px transparent inset;
816
+ --el-input-border-color: var(--el-border-color);
817
+ --el-input-border-radius: var(--el-border-radius-base);
818
+ --el-input-bg-color: var(--el-fill-color-blank);
819
+ --el-input-icon-color: var(--el-color-neutral-light-9);
820
+ --el-input-placeholder-color: var(--el-text-color-placeholder);
821
+ --el-input-hover-border-color: var(--el-color-primary-light-5);
822
+ --el-input-clear-hover-color: var(--el-color-primary-light-5);
823
+ --el-input-focus-border-color: var(--el-color-primary-light-5);
824
+ --el-input-width: 100%;
825
+ --el-input-box-shadow: 0 3px 0 0 rgba(213, 205, 245, 0.4);
826
+ position: relative;
827
+ text-align: left;
828
+ vertical-align: middle;
829
+ }
830
+ .el-date-editor.el-input__wrapper {
831
+ box-shadow: 0 0 0 1px var(--el-input-border-color, var(--el-border-color)) inset;
832
+ }
833
+ .el-date-editor.el-input__wrapper:hover {
834
+ box-shadow: 0 0 0 1px var(--el-input-hover-border-color) inset, 0 3px 0 0 rgba(213, 205, 245, 0.4);
835
+ }
836
+ .el-date-editor.el-input, .el-date-editor.el-input__wrapper {
837
+ width: var(--el-date-editor-width);
838
+ height: var(--el-input-height, var(--el-component-size));
839
+ }
840
+ .el-date-editor--monthrange {
841
+ --el-date-editor-width: var(--el-date-editor-monthrange-width);
842
+ }
843
+
844
+ .el-date-editor--daterange, .el-date-editor--timerange {
845
+ --el-date-editor-width: var(--el-date-editor-daterange-width);
846
+ }
847
+
848
+ .el-date-editor--datetimerange {
849
+ --el-date-editor-width: var(--el-date-editor-datetimerange-width);
850
+ }
851
+
852
+ .el-date-editor--dates .el-input__wrapper {
853
+ text-overflow: ellipsis;
854
+ white-space: nowrap;
855
+ }
856
+
857
+ .el-date-editor .close-icon {
858
+ cursor: pointer;
859
+ }
860
+ .el-date-editor .clear-icon {
861
+ cursor: pointer;
862
+ }
863
+ .el-date-editor .clear-icon:hover {
864
+ color: var(--el-text-color-secondary);
865
+ }
866
+ .el-date-editor .el-range__icon {
867
+ height: inherit;
868
+ font-size: 14px;
869
+ color: var(--el-text-color-placeholder);
870
+ float: left;
871
+ }
872
+ .el-date-editor .el-range__icon svg {
873
+ vertical-align: middle;
874
+ }
875
+ .el-date-editor .el-range-input {
876
+ appearance: none;
877
+ border: none;
878
+ outline: none;
879
+ display: inline-block;
880
+ height: 38px;
881
+ line-height: 38px;
882
+ margin: 0;
883
+ padding: 0;
884
+ width: 39%;
885
+ text-align: center;
886
+ font-size: var(--el-font-size-base);
887
+ color: var(--el-text-color-regular);
888
+ background-color: transparent;
889
+ }
890
+ .el-date-editor .el-range-input::placeholder {
891
+ color: var(--el-text-color-placeholder);
892
+ }
893
+ .el-date-editor .el-range-separator {
894
+ flex: 1;
895
+ display: inline-flex;
896
+ justify-content: center;
897
+ align-items: center;
898
+ height: 100%;
899
+ padding: 0 5px;
900
+ margin: 0;
901
+ font-size: 14px;
902
+ overflow-wrap: break-word;
903
+ color: var(--el-text-color-primary);
904
+ }
905
+ .el-date-editor .el-range__close-icon {
906
+ font-size: 14px;
907
+ color: var(--el-text-color-placeholder);
908
+ height: inherit;
909
+ width: unset;
910
+ cursor: pointer;
911
+ }
912
+ .el-date-editor .el-range__close-icon:hover {
913
+ color: var(--el-text-color-secondary);
914
+ }
915
+ .el-date-editor .el-range__close-icon svg {
916
+ vertical-align: middle;
917
+ }
918
+ .el-date-editor .el-range__close-icon--hidden {
919
+ opacity: 0;
920
+ visibility: hidden;
921
+ }
922
+
923
+ .el-range-editor.el-input__wrapper {
924
+ display: inline-flex;
925
+ align-items: center;
926
+ padding: 0 10px;
927
+ }
928
+ .el-range-editor.is-active {
929
+ box-shadow: 0 0 0 1px var(--el-input-focus-border-color) inset;
930
+ }
931
+ .el-range-editor.is-active:hover {
932
+ box-shadow: 0 0 0 1px var(--el-input-focus-border-color) inset, 0 3px 0 0 rgba(213, 205, 245, 0.4);
933
+ }
934
+
935
+ .el-range-editor--large {
936
+ line-height: var(--el-component-size-large);
937
+ }
938
+ .el-range-editor--large.el-input__wrapper {
939
+ height: var(--el-component-size-large);
940
+ }
941
+ .el-range-editor--large .el-range-separator {
942
+ line-height: 40px;
943
+ font-size: 14px;
944
+ }
945
+ .el-range-editor--large .el-range-input {
946
+ height: 38px;
947
+ line-height: 38px;
948
+ font-size: 14px;
949
+ }
950
+
951
+ .el-range-editor--medium {
952
+ line-height: var(--el-component-size-medium);
953
+ }
954
+ .el-range-editor--medium.el-input__wrapper {
955
+ height: var(--el-component-size-medium);
956
+ }
957
+ .el-range-editor--medium .el-range-separator {
958
+ line-height: 36px;
959
+ font-size: 14px;
960
+ }
961
+ .el-range-editor--medium .el-range-input {
962
+ height: 34px;
963
+ line-height: 34px;
964
+ font-size: 14px;
965
+ }
966
+
967
+ .el-range-editor--small {
968
+ line-height: var(--el-component-size-small);
969
+ }
970
+ .el-range-editor--small.el-input__wrapper {
971
+ height: var(--el-component-size-small);
972
+ }
973
+ .el-range-editor--small .el-range-separator {
974
+ line-height: 30px;
975
+ font-size: 12px;
976
+ }
977
+ .el-range-editor--small .el-range-input {
978
+ height: 28px;
979
+ line-height: 28px;
980
+ font-size: 12px;
981
+ }
982
+
983
+ .el-range-editor--mini {
984
+ line-height: var(--el-component-size-mini);
985
+ }
986
+ .el-range-editor--mini.el-input__wrapper {
987
+ height: var(--el-component-size-mini);
988
+ }
989
+ .el-range-editor--mini .el-range-separator {
990
+ line-height: 28px;
991
+ font-size: 12px;
992
+ }
993
+ .el-range-editor--mini .el-range-input {
994
+ height: 26px;
995
+ line-height: 26px;
996
+ font-size: 12px;
997
+ }
998
+
999
+ .el-range-editor.is-disabled {
1000
+ background-color: var(--el-disabled-bg-color);
1001
+ border-color: var(--el-disabled-border-color);
1002
+ color: var(--el-disabled-text-color);
1003
+ cursor: not-allowed;
1004
+ }
1005
+ .el-range-editor.is-disabled:hover, .el-range-editor.is-disabled:focus {
1006
+ border-color: var(--el-disabled-border-color);
1007
+ }
1008
+ .el-range-editor.is-disabled input {
1009
+ background-color: var(--el-disabled-bg-color);
1010
+ color: var(--el-disabled-text-color);
1011
+ cursor: not-allowed;
1012
+ }
1013
+ .el-range-editor.is-disabled input::placeholder {
1014
+ color: var(--el-text-color-placeholder);
1015
+ }
1016
+ .el-range-editor.is-disabled .el-range-separator {
1017
+ color: var(--el-disabled-text-color);
1018
+ }
1019
+
1020
+ .el-picker-panel {
1021
+ color: var(--el-text-color-regular);
1022
+ background: var(--el-bg-color-overlay);
1023
+ border-radius: var(--el-border-radius-base);
1024
+ line-height: 30px;
1025
+ }
1026
+ .el-picker-panel .el-time-panel {
1027
+ margin: 5px 0;
1028
+ border: solid 1px var(--el-datepicker-border-color);
1029
+ background-color: var(--el-bg-color-overlay);
1030
+ box-shadow: var(--el-box-shadow-light);
1031
+ }
1032
+ .el-picker-panel__body::after, .el-picker-panel__body-wrapper::after {
1033
+ content: "";
1034
+ display: table;
1035
+ clear: both;
1036
+ }
1037
+
1038
+ .el-picker-panel__content {
1039
+ position: relative;
1040
+ margin: 15px;
1041
+ }
1042
+
1043
+ .el-picker-panel__footer {
1044
+ border-top: 1px solid var(--el-datepicker-inner-border-color);
1045
+ padding: 4px 12px;
1046
+ text-align: right;
1047
+ background-color: var(--el-bg-color-overlay);
1048
+ position: relative;
1049
+ font-size: 0;
1050
+ }
1051
+
1052
+ .el-picker-panel__shortcut {
1053
+ display: block;
1054
+ width: 100%;
1055
+ border: 0;
1056
+ background-color: transparent;
1057
+ line-height: 28px;
1058
+ font-size: 14px;
1059
+ color: var(--el-datepicker-text-color);
1060
+ padding-left: 12px;
1061
+ text-align: left;
1062
+ outline: none;
1063
+ cursor: pointer;
1064
+ }
1065
+ .el-picker-panel__shortcut:hover {
1066
+ color: var(--el-datepicker-hover-text-color);
1067
+ }
1068
+ .el-picker-panel__shortcut.active {
1069
+ background-color: #e6f1fe;
1070
+ color: var(--el-datepicker-active-color);
1071
+ }
1072
+
1073
+ .el-picker-panel__btn {
1074
+ border: 1px solid var(--el-fill-color-darker);
1075
+ color: var(--el-text-color-primary);
1076
+ line-height: 24px;
1077
+ border-radius: 2px;
1078
+ padding: 0 20px;
1079
+ cursor: pointer;
1080
+ background-color: transparent;
1081
+ outline: none;
1082
+ font-size: 12px;
1083
+ }
1084
+ .el-picker-panel__btn[disabled] {
1085
+ color: var(--el-text-color-disabled);
1086
+ cursor: not-allowed;
1087
+ }
1088
+
1089
+ .el-picker-panel__icon-btn {
1090
+ font-size: 12px;
1091
+ color: var(--el-datepicker-icon-color);
1092
+ border: 0;
1093
+ background: transparent;
1094
+ cursor: pointer;
1095
+ outline: none;
1096
+ margin-top: 8px;
1097
+ }
1098
+ .el-picker-panel__icon-btn:hover {
1099
+ color: var(--el-datepicker-hover-text-color);
1100
+ }
1101
+ .el-picker-panel__icon-btn:focus-visible {
1102
+ color: var(--el-datepicker-hover-text-color);
1103
+ }
1104
+ .el-picker-panel__icon-btn.is-disabled {
1105
+ color: var(--el-text-color-disabled);
1106
+ }
1107
+ .el-picker-panel__icon-btn.is-disabled:hover {
1108
+ cursor: not-allowed;
1109
+ }
1110
+
1111
+ .el-picker-panel__icon-btn .el-icon {
1112
+ cursor: pointer;
1113
+ font-size: inherit;
1114
+ }
1115
+
1116
+ .el-picker-panel__link-btn {
1117
+ vertical-align: middle;
1118
+ }
1119
+
1120
+ .el-picker-panel *[slot=sidebar],
1121
+ .el-picker-panel__sidebar {
1122
+ position: absolute;
1123
+ top: 0;
1124
+ bottom: 0;
1125
+ width: 110px;
1126
+ border-right: 1px solid var(--el-datepicker-inner-border-color);
1127
+ box-sizing: border-box;
1128
+ padding-top: 6px;
1129
+ background-color: var(--el-bg-color-overlay);
1130
+ overflow: auto;
1131
+ }
1132
+
1133
+ .el-picker-panel *[slot=sidebar] + .el-picker-panel__body,
1134
+ .el-picker-panel__sidebar + .el-picker-panel__body {
1135
+ margin-left: 110px;
1136
+ }
1137
+
1138
+ .el-date-picker {
1139
+ --el-datepicker-text-color: var(--el-text-color-regular);
1140
+ --el-datepicker-off-text-color: var(--el-text-color-placeholder);
1141
+ --el-datepicker-header-text-color: var(--el-text-color-regular);
1142
+ --el-datepicker-icon-color: var(--el-text-color-primary);
1143
+ --el-datepicker-border-color: var(--el-disabled-border-color);
1144
+ --el-datepicker-inner-border-color: var(--el-border-color-light);
1145
+ --el-datepicker-inrange-bg-color: var(--el-border-color-extra-light);
1146
+ --el-datepicker-inrange-hover-bg-color: var(--el-border-color-extra-light);
1147
+ --el-datepicker-active-color: var(--el-color-primary);
1148
+ --el-datepicker-hover-text-color: var(--el-color-primary);
1149
+ }
1150
+
1151
+ .el-date-picker {
1152
+ width: 322px;
1153
+ }
1154
+ .el-date-picker.has-sidebar.has-time {
1155
+ width: 434px;
1156
+ }
1157
+ .el-date-picker.has-sidebar {
1158
+ width: 438px;
1159
+ }
1160
+ .el-date-picker.has-time .el-picker-panel__body-wrapper {
1161
+ position: relative;
1162
+ }
1163
+ .el-date-picker .el-picker-panel__content {
1164
+ width: 292px;
1165
+ }
1166
+ .el-date-picker table {
1167
+ table-layout: fixed;
1168
+ width: 100%;
1169
+ }
1170
+ .el-date-picker__editor-wrap {
1171
+ position: relative;
1172
+ display: table-cell;
1173
+ padding: 0 5px;
1174
+ }
1175
+
1176
+ .el-date-picker__time-header {
1177
+ position: relative;
1178
+ border-bottom: 1px solid var(--el-datepicker-inner-border-color);
1179
+ font-size: 12px;
1180
+ padding: 8px 5px 5px;
1181
+ display: table;
1182
+ width: 100%;
1183
+ box-sizing: border-box;
1184
+ }
1185
+
1186
+ .el-date-picker__header {
1187
+ margin: 12px;
1188
+ text-align: center;
1189
+ }
1190
+ .el-date-picker__header--bordered {
1191
+ margin-bottom: 0;
1192
+ padding-bottom: 12px;
1193
+ border-bottom: solid 1px var(--el-border-color-lighter);
1194
+ }
1195
+ .el-date-picker__header--bordered + .el-picker-panel__content {
1196
+ margin-top: 0;
1197
+ }
1198
+
1199
+ .el-date-picker__header-label {
1200
+ font-size: 16px;
1201
+ font-weight: 500;
1202
+ padding: 0 5px;
1203
+ line-height: 22px;
1204
+ text-align: center;
1205
+ cursor: pointer;
1206
+ color: var(--el-text-color-regular);
1207
+ }
1208
+ .el-date-picker__header-label:hover {
1209
+ color: var(--el-datepicker-hover-text-color);
1210
+ }
1211
+ .el-date-picker__header-label:focus-visible {
1212
+ outline: none;
1213
+ color: var(--el-datepicker-hover-text-color);
1214
+ }
1215
+ .el-date-picker__header-label.active {
1216
+ color: var(--el-datepicker-active-color);
1217
+ }
1218
+
1219
+ .el-date-picker__prev-btn {
1220
+ float: left;
1221
+ }
1222
+
1223
+ .el-date-picker__next-btn {
1224
+ float: right;
1225
+ }
1226
+
1227
+ .el-date-picker__time-wrap {
1228
+ padding: 10px;
1229
+ text-align: center;
1230
+ }
1231
+
1232
+ .el-date-picker__time-label {
1233
+ float: left;
1234
+ cursor: pointer;
1235
+ line-height: 30px;
1236
+ margin-left: 10px;
1237
+ }
1238
+
1239
+ .el-date-picker .el-time-panel {
1240
+ position: absolute;
1241
+ }
1242
+
1243
+ .el-date-range-picker {
1244
+ --el-datepicker-text-color: var(--el-text-color-regular);
1245
+ --el-datepicker-off-text-color: var(--el-text-color-placeholder);
1246
+ --el-datepicker-header-text-color: var(--el-text-color-regular);
1247
+ --el-datepicker-icon-color: var(--el-text-color-primary);
1248
+ --el-datepicker-border-color: var(--el-disabled-border-color);
1249
+ --el-datepicker-inner-border-color: var(--el-border-color-light);
1250
+ --el-datepicker-inrange-bg-color: var(--el-border-color-extra-light);
1251
+ --el-datepicker-inrange-hover-bg-color: var(--el-border-color-extra-light);
1252
+ --el-datepicker-active-color: var(--el-color-primary);
1253
+ --el-datepicker-hover-text-color: var(--el-color-primary);
1254
+ }
1255
+
1256
+ .el-date-range-picker {
1257
+ width: 646px;
1258
+ }
1259
+ .el-date-range-picker.has-sidebar {
1260
+ width: 756px;
1261
+ }
1262
+ .el-date-range-picker.has-time .el-picker-panel__body-wrapper {
1263
+ position: relative;
1264
+ }
1265
+ .el-date-range-picker table {
1266
+ table-layout: fixed;
1267
+ width: 100%;
1268
+ }
1269
+ .el-date-range-picker .el-picker-panel__body {
1270
+ min-width: 513px;
1271
+ }
1272
+ .el-date-range-picker .el-picker-panel__content {
1273
+ margin: 0;
1274
+ }
1275
+ .el-date-range-picker__header {
1276
+ position: relative;
1277
+ text-align: center;
1278
+ height: 28px;
1279
+ }
1280
+ .el-date-range-picker__header [class*=arrow-left] {
1281
+ float: left;
1282
+ }
1283
+ .el-date-range-picker__header [class*=arrow-right] {
1284
+ float: right;
1285
+ }
1286
+ .el-date-range-picker__header div {
1287
+ font-size: 16px;
1288
+ font-weight: 500;
1289
+ margin-right: 50px;
1290
+ }
1291
+
1292
+ .el-date-range-picker__content {
1293
+ float: left;
1294
+ width: 50%;
1295
+ box-sizing: border-box;
1296
+ margin: 0;
1297
+ padding: 16px;
1298
+ }
1299
+ .el-date-range-picker__content.is-left {
1300
+ border-right: 1px solid var(--el-datepicker-inner-border-color);
1301
+ }
1302
+
1303
+ .el-date-range-picker__content .el-date-range-picker__header div {
1304
+ margin-left: 50px;
1305
+ margin-right: 50px;
1306
+ }
1307
+
1308
+ .el-date-range-picker__editors-wrap {
1309
+ box-sizing: border-box;
1310
+ display: table-cell;
1311
+ }
1312
+ .el-date-range-picker__editors-wrap.is-right {
1313
+ text-align: right;
1314
+ }
1315
+
1316
+ .el-date-range-picker__time-header {
1317
+ position: relative;
1318
+ border-bottom: 1px solid var(--el-datepicker-inner-border-color);
1319
+ font-size: 12px;
1320
+ padding: 8px 5px 5px 5px;
1321
+ display: table;
1322
+ width: 100%;
1323
+ box-sizing: border-box;
1324
+ }
1325
+ .el-date-range-picker__time-header > .el-icon-arrow-right {
1326
+ font-size: 20px;
1327
+ vertical-align: middle;
1328
+ display: table-cell;
1329
+ color: var(--el-datepicker-icon-color);
1330
+ }
1331
+
1332
+ .el-date-range-picker__time-picker-wrap {
1333
+ position: relative;
1334
+ display: table-cell;
1335
+ padding: 0 5px;
1336
+ }
1337
+ .el-date-range-picker__time-picker-wrap .el-picker-panel {
1338
+ position: absolute;
1339
+ top: 13px;
1340
+ right: 0;
1341
+ z-index: 1;
1342
+ background: #ffffff;
1343
+ }
1344
+ .el-date-range-picker__time-picker-wrap .el-time-panel {
1345
+ position: absolute;
1346
+ }
1347
+
1348
+ .el-time-range-picker {
1349
+ width: 354px;
1350
+ overflow: visible;
1351
+ }
1352
+ .el-time-range-picker__content {
1353
+ position: relative;
1354
+ text-align: center;
1355
+ padding: 10px;
1356
+ z-index: 1;
1357
+ }
1358
+
1359
+ .el-time-range-picker__cell {
1360
+ box-sizing: border-box;
1361
+ margin: 0;
1362
+ padding: 4px 7px 7px;
1363
+ width: 50%;
1364
+ display: inline-block;
1365
+ }
1366
+
1367
+ .el-time-range-picker__header {
1368
+ margin-bottom: 5px;
1369
+ text-align: center;
1370
+ font-size: 14px;
1371
+ }
1372
+
1373
+ .el-time-range-picker__body {
1374
+ border-radius: 2px;
1375
+ border: 1px solid var(--el-datepicker-border-color);
1376
+ }
1377
+
1378
+ .el-time-panel {
1379
+ border-radius: 2px;
1380
+ position: relative;
1381
+ width: 180px;
1382
+ left: 0;
1383
+ z-index: var(--el-index-top);
1384
+ user-select: none;
1385
+ box-sizing: content-box;
1386
+ }
1387
+ .el-time-panel__content {
1388
+ font-size: 0;
1389
+ position: relative;
1390
+ overflow: hidden;
1391
+ }
1392
+ .el-time-panel__content::after, .el-time-panel__content::before {
1393
+ content: "";
1394
+ top: 50%;
1395
+ position: absolute;
1396
+ margin-top: -16px;
1397
+ height: 32px;
1398
+ z-index: -1;
1399
+ left: 0;
1400
+ right: 0;
1401
+ box-sizing: border-box;
1402
+ padding-top: 6px;
1403
+ text-align: left;
1404
+ }
1405
+ .el-time-panel__content::after {
1406
+ left: 50%;
1407
+ margin-left: 12%;
1408
+ margin-right: 12%;
1409
+ }
1410
+ .el-time-panel__content::before {
1411
+ padding-left: 50%;
1412
+ margin-right: 12%;
1413
+ margin-left: 12%;
1414
+ border-top: 1px solid var(--el-border-color-light);
1415
+ border-bottom: 1px solid var(--el-border-color-light);
1416
+ }
1417
+ .el-time-panel__content.has-seconds::after {
1418
+ left: 66.6666666667%;
1419
+ }
1420
+ .el-time-panel__content.has-seconds::before {
1421
+ padding-left: 33.3333333333%;
1422
+ }
1423
+
1424
+ .el-time-panel__footer {
1425
+ border-top: 1px solid var(--el-timepicker-inner-border-color, var(--el-border-color-light));
1426
+ padding: 4px;
1427
+ height: 36px;
1428
+ line-height: 25px;
1429
+ text-align: right;
1430
+ box-sizing: border-box;
1431
+ }
1432
+
1433
+ .el-time-panel__btn {
1434
+ border: none;
1435
+ line-height: 28px;
1436
+ padding: 0 5px;
1437
+ margin: 0 5px;
1438
+ cursor: pointer;
1439
+ background-color: transparent;
1440
+ outline: none;
1441
+ font-size: 12px;
1442
+ color: var(--el-text-color-primary);
1443
+ }
1444
+ .el-time-panel__btn.confirm {
1445
+ font-weight: 800;
1446
+ color: var(--el-timepicker-active-color, var(--el-color-primary));
1447
+ }