@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,740 @@
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-select-dropdown {
276
+ z-index: calc(var(--el-index-top) + 1);
277
+ border-radius: var(--el-border-radius-base);
278
+ box-sizing: border-box;
279
+ }
280
+ .el-select-dropdown .el-scrollbar.is-empty .el-select-dropdown__list {
281
+ padding: 0;
282
+ }
283
+
284
+ .el-select-dropdown__loading {
285
+ padding: 10px 0;
286
+ margin: 0;
287
+ text-align: center;
288
+ color: var(--el-text-color-secondary);
289
+ font-size: var(--el-select-font-size);
290
+ }
291
+
292
+ .el-select-dropdown__empty {
293
+ padding: 10px 0;
294
+ margin: 0;
295
+ text-align: center;
296
+ color: var(--el-text-color-secondary);
297
+ font-size: var(--el-select-font-size);
298
+ }
299
+
300
+ .el-select-dropdown__wrap {
301
+ max-height: 274px;
302
+ }
303
+
304
+ .el-select-dropdown__list {
305
+ list-style: none;
306
+ padding: 6px 0;
307
+ margin: 0;
308
+ box-sizing: border-box;
309
+ }
310
+ .el-select-dropdown__list.el-vl__window {
311
+ margin: 6px 0;
312
+ padding: 0;
313
+ }
314
+
315
+ .el-select-dropdown__header {
316
+ padding: 10px;
317
+ border-bottom: 1px solid var(--el-border-color-light);
318
+ }
319
+
320
+ .el-select-dropdown__footer {
321
+ padding: 10px;
322
+ border-top: 1px solid var(--el-border-color-light);
323
+ }
324
+
325
+ .el-select-dropdown__item {
326
+ font-size: var(--el-font-size-small);
327
+ font-weight: 500;
328
+ padding: 0 44px 0 16px;
329
+ position: relative;
330
+ white-space: nowrap;
331
+ overflow: hidden;
332
+ text-overflow: ellipsis;
333
+ color: var(--el-text-color-secondary);
334
+ height: 32px;
335
+ line-height: 32px;
336
+ box-sizing: border-box;
337
+ cursor: pointer;
338
+ }
339
+ .el-select-dropdown__item.is-hovering {
340
+ background-color: var(--el-color-white);
341
+ color: var(--el-color-primary);
342
+ }
343
+
344
+ .el-select-dropdown__item.is-selected {
345
+ color: var(--el-color-primary);
346
+ font-weight: 500;
347
+ }
348
+
349
+ .el-select-dropdown__item.is-disabled {
350
+ color: var(--el-text-color-disabled);
351
+ cursor: not-allowed;
352
+ background-color: unset;
353
+ }
354
+
355
+ .el-select-dropdown.is-multiple .el-select-dropdown__item.is-selected::after {
356
+ content: "";
357
+ position: absolute;
358
+ top: 50%;
359
+ right: 16px;
360
+ border-top: none;
361
+ border-right: none;
362
+ background-repeat: no-repeat;
363
+ background-position: center;
364
+ background-color: var(--el-color-primary);
365
+ mask: url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
366
+ mask-size: 100% 100%;
367
+ -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
368
+ -webkit-mask-size: 100% 100%;
369
+ transform: translateY(-50%);
370
+ width: 12px;
371
+ height: 12px;
372
+ }
373
+ .el-select-dropdown.is-multiple .el-select-dropdown__item.is-disabled::after {
374
+ background-color: var(--el-text-color-disabled);
375
+ }
376
+
377
+ .el-select-group {
378
+ margin: 0;
379
+ padding: 0;
380
+ }
381
+ .el-select-group__wrap {
382
+ position: relative;
383
+ list-style: none;
384
+ margin: 0;
385
+ padding: 0;
386
+ }
387
+ .el-select-group__wrap:not(:first-of-type):before {
388
+ padding: 0 16px;
389
+ border-top: 1px solid var(--el-color-neutral-light-2);
390
+ content: "";
391
+ display: flex;
392
+ flex-grow: 1;
393
+ margin: 4px 16px;
394
+ }
395
+
396
+ .el-select-group__title {
397
+ padding-left: 16px;
398
+ font-size: 10px;
399
+ color: var(--el-color-neutral-light-4);
400
+ line-height: 32px;
401
+ }
402
+
403
+ .el-select-group .el-select-dropdown__item {
404
+ padding-left: 16px;
405
+ }
406
+
407
+ .el-select {
408
+ --el-select-border-color-hover: var(--el-border-color-hover);
409
+ --el-select-disabled-color: var(--el-disabled-text-color);
410
+ --el-select-disabled-border: var(--el-disabled-border-color);
411
+ --el-select-font-size: var(--el-font-size-small);
412
+ --el-select-close-hover-color: var(--el-text-color-secondary);
413
+ --el-select-input-color: var(--el-color-neautral-light-2);
414
+ --el-select-multiple-input-color: var(--el-text-color-regular);
415
+ --el-select-input-focus-border-color: var(--el-color-primary);
416
+ --el-select-input-font-size: 14px;
417
+ --el-select-width: 100%;
418
+ --el-select-min-width: 72px;
419
+ }
420
+
421
+ .el-select {
422
+ display: inline-block;
423
+ position: relative;
424
+ vertical-align: middle;
425
+ width: var(--el-select-width);
426
+ min-width: var(--el-select-min-width);
427
+ }
428
+ .el-select__wrapper {
429
+ display: flex;
430
+ align-items: center;
431
+ position: relative;
432
+ box-sizing: border-box;
433
+ cursor: pointer;
434
+ text-align: left;
435
+ font-size: 14px;
436
+ padding: 4px 12px;
437
+ gap: 8px;
438
+ min-height: 40px;
439
+ line-height: 24px;
440
+ border-radius: var(--el-border-radius-base);
441
+ background-color: var(--el-fill-color-blank);
442
+ transition: var(--el-transition-duration);
443
+ box-shadow: 0 0 0 1px var(--el-border-color) inset;
444
+ }
445
+ .el-select__wrapper:hover {
446
+ box-shadow: 0 0 0 1px var(--el-color-primary) inset, 0 3px 0 0 rgba(213, 205, 245, 0.4);
447
+ }
448
+ .el-select__wrapper.is-filterable {
449
+ cursor: text;
450
+ }
451
+
452
+ .el-select__wrapper.is-focused {
453
+ box-shadow: 0 0 0 1px var(--el-color-primary) inset, 0 3px 0 0 rgba(213, 205, 245, 0.4);
454
+ }
455
+
456
+ .el-select__wrapper.is-hovering:not(.is-focused) {
457
+ box-shadow: 0 0 0 1px var(--el-color-primary) inset, 0 3px 0 0 rgba(213, 205, 245, 0.4);
458
+ }
459
+
460
+ .el-select__wrapper.is-disabled {
461
+ cursor: not-allowed;
462
+ background-color: var(--el-color-neutral-light-2);
463
+ color: var(--el-text-color-placeholder);
464
+ box-shadow: 0 0 0 1px var(--el-select-disabled-border) inset;
465
+ }
466
+ .el-select__wrapper.is-disabled:hover {
467
+ box-shadow: 0 0 0 1px var(--el-select-disabled-border) inset;
468
+ }
469
+ .el-select__wrapper.is-disabled.is-focus {
470
+ box-shadow: 0 0 0 1px var(--el-input-focus-border-color) inset;
471
+ }
472
+ .el-select__wrapper.is-disabled .el-select__selected-item {
473
+ color: var(--el-select-disabled-color);
474
+ }
475
+
476
+ .el-select__wrapper.is-disabled .el-select__caret {
477
+ cursor: not-allowed;
478
+ }
479
+
480
+ .el-select__wrapper.is-disabled .el-select__selection .el-tag {
481
+ cursor: not-allowed;
482
+ --el-tag-bg-color: var(--el-color-neutral-light-2);
483
+ --el-tag-border-color: var(--el-color-neutral-light-4);
484
+ --el-tag-hover-color: var(--el-color-primary-light-5);
485
+ --el-tag-text-color: var(--el-color-neutral-light-4);
486
+ }
487
+
488
+ .el-select__wrapper.is-disabled .el-select__prefix {
489
+ color: var(--el-select-disabled-color);
490
+ }
491
+
492
+ .el-select__wrapper.is-disabled .el-select__suffix {
493
+ color: var(--el-select-disabled-color);
494
+ }
495
+
496
+ .el-select__prefix {
497
+ display: flex;
498
+ align-items: center;
499
+ flex-shrink: 0;
500
+ gap: 8px;
501
+ color: var(--el-input-icon-color, var(--el-color-neutral-light-9));
502
+ }
503
+
504
+ .el-select__suffix {
505
+ display: flex;
506
+ align-items: center;
507
+ flex-shrink: 0;
508
+ gap: 8px;
509
+ color: var(--el-input-icon-color, var(--el-color-neutral-light-9));
510
+ }
511
+
512
+ .el-select__caret {
513
+ color: var(--el-select-input-color);
514
+ font-size: var(--el-select-input-font-size);
515
+ transition: var(--el-transition-duration);
516
+ transform: rotateZ(0deg);
517
+ cursor: pointer;
518
+ }
519
+ .el-select__caret.is-reverse {
520
+ transform: rotateZ(180deg);
521
+ }
522
+
523
+ .el-select__selection {
524
+ position: relative;
525
+ display: flex;
526
+ flex-wrap: wrap;
527
+ align-items: center;
528
+ flex: 1;
529
+ min-width: 0;
530
+ gap: 8px;
531
+ }
532
+ .el-select__selection.is-near {
533
+ margin: 6px 0;
534
+ }
535
+
536
+ .el-select__selection .el-tag {
537
+ cursor: pointer;
538
+ }
539
+ .el-select__selection .el-tag.el-tag--plain {
540
+ border-color: var(--el-tag-border-color);
541
+ }
542
+ .el-select__selection .el-tag.el-tag--light {
543
+ --el-tag-bg-color: var(--el-color-primary-light-2);
544
+ --el-tag-border-color: var(--el-color-primary-light-4);
545
+ --el-tag-hover-color: var(--el-color-primary-light-5);
546
+ --el-tag-text-color: var(--el-color-primary-light-5);
547
+ }
548
+ .el-select__selection .el-tag .el-tag__content {
549
+ min-width: 0;
550
+ }
551
+ .el-select__selection .el-tag.el-tag--small {
552
+ height: 18px;
553
+ }
554
+
555
+ .el-select__selected-item {
556
+ display: flex;
557
+ flex-wrap: wrap;
558
+ user-select: none;
559
+ }
560
+
561
+ .el-select__tags-text {
562
+ display: block;
563
+ line-height: normal;
564
+ overflow: hidden;
565
+ text-overflow: ellipsis;
566
+ white-space: nowrap;
567
+ }
568
+
569
+ .el-select__placeholder {
570
+ position: absolute;
571
+ display: block;
572
+ top: 50%;
573
+ transform: translateY(-50%);
574
+ width: 100%;
575
+ overflow: hidden;
576
+ text-overflow: ellipsis;
577
+ white-space: nowrap;
578
+ color: var(--el-input-text-color, var(--el-text-color-regular));
579
+ }
580
+ .el-select__placeholder.is-transparent {
581
+ user-select: none;
582
+ color: var(--el-text-color-placeholder);
583
+ }
584
+
585
+ .el-select__popper.el-popper {
586
+ background: var(--el-bg-color-overlay);
587
+ border: 1px solid var(--el-border-color-light);
588
+ box-shadow: var(--el-box-shadow-light);
589
+ }
590
+ .el-select__popper.el-popper .el-popper__arrow::before {
591
+ border: 1px solid var(--el-border-color-light);
592
+ }
593
+ .el-select__popper.el-popper[data-popper-placement^=top] .el-popper__arrow::before {
594
+ border-top-color: transparent;
595
+ border-left-color: transparent;
596
+ }
597
+ .el-select__popper.el-popper[data-popper-placement^=bottom] .el-popper__arrow::before {
598
+ border-bottom-color: transparent;
599
+ border-right-color: transparent;
600
+ }
601
+ .el-select__popper.el-popper[data-popper-placement^=left] .el-popper__arrow::before {
602
+ border-left-color: transparent;
603
+ border-bottom-color: transparent;
604
+ }
605
+ .el-select__popper.el-popper[data-popper-placement^=right] .el-popper__arrow::before {
606
+ border-right-color: transparent;
607
+ border-top-color: transparent;
608
+ }
609
+
610
+ .el-select__input-wrapper {
611
+ max-width: 100%;
612
+ }
613
+ .el-select__input-wrapper.is-hidden {
614
+ position: absolute;
615
+ opacity: 0;
616
+ }
617
+
618
+ .el-select__input {
619
+ border: none;
620
+ outline: none;
621
+ padding: 0;
622
+ color: var(--el-select-multiple-input-color);
623
+ font-size: inherit;
624
+ font-family: inherit;
625
+ appearance: none;
626
+ height: 24px;
627
+ max-width: 100%;
628
+ background-color: transparent;
629
+ }
630
+ .el-select__input.is-disabled {
631
+ cursor: not-allowed;
632
+ }
633
+
634
+ .el-select__input-calculator {
635
+ position: absolute;
636
+ left: 0;
637
+ top: 0;
638
+ max-width: 100%;
639
+ visibility: hidden;
640
+ white-space: pre;
641
+ overflow: hidden;
642
+ }
643
+
644
+ .el-select--large .el-select__wrapper {
645
+ gap: 8px;
646
+ padding: 4px 12px;
647
+ min-height: 40px;
648
+ line-height: 24px;
649
+ font-size: 14px;
650
+ }
651
+
652
+ .el-select--large .el-select__selection {
653
+ gap: 8px;
654
+ }
655
+ .el-select--large .el-select__selection.is-near {
656
+ margin: 6px 0;
657
+ }
658
+
659
+ .el-select--large .el-select__prefix {
660
+ gap: 8px;
661
+ }
662
+
663
+ .el-select--large .el-select__suffix {
664
+ gap: 8px;
665
+ }
666
+
667
+ .el-select--large .el-select__input {
668
+ height: 24px;
669
+ }
670
+
671
+ .el-select--medium .el-select__wrapper {
672
+ gap: 8px;
673
+ padding: 4px 12px;
674
+ min-height: 36px;
675
+ font-size: 14px;
676
+ }
677
+
678
+ .el-select--medium .el-select__selection {
679
+ gap: 8px;
680
+ }
681
+ .el-select--medium .el-select__selection.is-near {
682
+ margin: 5px -3px;
683
+ }
684
+
685
+ .el-select--medium .el-select__prefix {
686
+ gap: 8px;
687
+ }
688
+
689
+ .el-select--medium .el-select__suffix {
690
+ gap: 8px;
691
+ }
692
+
693
+ .el-select--small .el-select__wrapper {
694
+ gap: 4px;
695
+ padding: 2px 8px;
696
+ min-height: 30px;
697
+ line-height: 20px;
698
+ font-size: 12px;
699
+ }
700
+
701
+ .el-select--small .el-select__selection {
702
+ gap: 4px;
703
+ }
704
+ .el-select--small .el-select__selection.is-near {
705
+ margin: 4px -2px;
706
+ }
707
+
708
+ .el-select--small .el-select__prefix {
709
+ gap: 4px;
710
+ }
711
+
712
+ .el-select--small .el-select__suffix {
713
+ gap: 4px;
714
+ }
715
+
716
+ .el-select--small .el-select__input {
717
+ height: 20px;
718
+ }
719
+
720
+ .el-select--mini .el-select__wrapper {
721
+ gap: 4px;
722
+ padding: 2px 8px;
723
+ min-height: 28px;
724
+ font-size: 12px;
725
+ }
726
+
727
+ .el-select--mini .el-select__selection {
728
+ gap: 4px;
729
+ }
730
+ .el-select--mini .el-select__selection.is-near {
731
+ margin: 3px -3px;
732
+ }
733
+
734
+ .el-select--mini .el-select__prefix {
735
+ gap: 4px;
736
+ }
737
+
738
+ .el-select--mini .el-select__suffix {
739
+ gap: 4px;
740
+ }