@timus-networks/theme 2.0.16 → 2.1.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 +113 -0
- package/dist/module.cjs +5 -0
- package/dist/module.d.mts +11 -0
- package/dist/module.d.ts +11 -0
- package/dist/module.json +9 -0
- package/dist/module.mjs +187 -0
- package/dist/runtime/components/development/example.alert.vue +29 -0
- package/dist/runtime/components/development/example.avatar.vue +85 -0
- package/dist/runtime/components/development/example.badge.vue +93 -0
- package/dist/runtime/components/development/example.breadcrumb.vue +54 -0
- package/dist/runtime/components/development/example.button.vue +235 -0
- package/dist/runtime/components/development/example.button.vue.d.ts +11 -0
- package/dist/runtime/components/development/example.card.vue +68 -0
- package/dist/runtime/components/development/example.checkbox.vue +176 -0
- package/dist/runtime/components/development/example.checkbox.vue.d.ts +24 -0
- package/dist/runtime/components/development/example.collapse.vue +38 -0
- package/dist/runtime/components/development/example.datepicker.vue +193 -0
- package/dist/runtime/components/development/example.description.vue +94 -0
- package/dist/runtime/components/development/example.dialog.vue +79 -0
- package/dist/runtime/components/development/example.dropdown.vue +166 -0
- package/dist/runtime/components/development/example.form.vue +488 -0
- package/dist/runtime/components/development/example.input.vue +270 -0
- package/dist/runtime/components/development/example.input.vue.d.ts +23 -0
- package/dist/runtime/components/development/example.link.vue +68 -0
- package/dist/runtime/components/development/example.message.vue +64 -0
- package/dist/runtime/components/development/example.notification.vue +75 -0
- package/dist/runtime/components/development/example.number.vue +70 -0
- package/dist/runtime/components/development/example.pagination.vue +89 -0
- package/dist/runtime/components/development/example.popover.vue +151 -0
- package/dist/runtime/components/development/example.radio.vue +163 -0
- package/dist/runtime/components/development/example.radio.vue.d.ts +25 -0
- package/dist/runtime/components/development/example.select.vue +588 -0
- package/dist/runtime/components/development/example.select.vue.d.ts +70 -0
- package/dist/runtime/components/development/example.sidebar.vue +101 -0
- package/dist/runtime/components/development/example.static.vue +50 -0
- package/dist/runtime/components/development/example.switch.vue +101 -0
- package/dist/runtime/components/development/example.table.vue +112 -0
- package/dist/runtime/components/development/example.tag.vue +255 -0
- package/dist/runtime/components/development/example.timepicker.vue +89 -0
- package/dist/runtime/components/development/example.tooltip.vue +104 -0
- package/dist/runtime/components/development/example.upload.vue +84 -0
- package/dist/runtime/components/production/html-encode.vue +96 -0
- package/dist/runtime/components/production/timus-breadcrumb.d.ts +36 -0
- package/dist/runtime/components/production/timus-breadcrumb.js +224 -0
- package/dist/runtime/components/production/timus-breadcrumb.mjs +224 -0
- package/dist/runtime/components/production/timus-breadcrumb.vue +83 -0
- package/dist/runtime/components/production/timus-breadcrumb.vue.d.ts +340 -0
- package/dist/runtime/composables/useBreadcrumb.d.ts +8 -0
- package/dist/runtime/composables/useBreadcrumb.js +53 -0
- package/dist/runtime/composables/useBreadcrumb.mjs +53 -0
- package/dist/runtime/pages/theme.vue +61 -0
- package/dist/runtime/plugins/disable-warnings-plugin.d.ts +2 -0
- package/dist/runtime/plugins/disable-warnings-plugin.js +18 -0
- package/dist/runtime/plugins/disable-warnings-plugin.mjs +18 -0
- package/dist/runtime/plugins/sample-plugin.d.ts +20 -0
- package/dist/runtime/plugins/sample-plugin.js +5 -0
- package/dist/runtime/plugins/sample-plugin.mjs +5 -0
- package/dist/runtime/plugins/theme-provider-plugin.d.ts +30 -0
- package/dist/runtime/plugins/theme-provider-plugin.js +46 -0
- package/dist/runtime/plugins/theme-provider-plugin.mjs +46 -0
- package/dist/runtime/public/scss/element-plus/affix.css +305 -0
- package/dist/runtime/public/scss/element-plus/alert.css +516 -0
- package/dist/runtime/public/scss/element-plus/anchor-link.css +332 -0
- package/dist/runtime/public/scss/element-plus/anchor.css +376 -0
- package/dist/runtime/public/scss/element-plus/aside.css +308 -0
- package/dist/runtime/public/scss/element-plus/autocomplete.css +411 -0
- package/dist/runtime/public/scss/element-plus/avatar.css +370 -0
- package/dist/runtime/public/scss/element-plus/backtop.css +326 -0
- package/dist/runtime/public/scss/element-plus/badge.css +376 -0
- package/dist/runtime/public/scss/element-plus/base.css +550 -0
- package/dist/runtime/public/scss/element-plus/breadcrumb-item.css +0 -0
- package/dist/runtime/public/scss/element-plus/breadcrumb.css +370 -0
- package/dist/runtime/public/scss/element-plus/button-group.css +535 -0
- package/dist/runtime/public/scss/element-plus/button.css +1089 -0
- package/dist/runtime/public/scss/element-plus/calendar.css +370 -0
- package/dist/runtime/public/scss/element-plus/card.css +347 -0
- package/dist/runtime/public/scss/element-plus/carousel-item.css +350 -0
- package/dist/runtime/public/scss/element-plus/carousel.css +475 -0
- package/dist/runtime/public/scss/element-plus/cascader-panel.css +428 -0
- package/dist/runtime/public/scss/element-plus/cascader.css +560 -0
- package/dist/runtime/public/scss/element-plus/check-tag.css +386 -0
- package/dist/runtime/public/scss/element-plus/checkbox-button.css +451 -0
- package/dist/runtime/public/scss/element-plus/checkbox-group.css +307 -0
- package/dist/runtime/public/scss/element-plus/checkbox.css +588 -0
- package/dist/runtime/public/scss/element-plus/col.css +3270 -0
- package/dist/runtime/public/scss/element-plus/collapse-item.css +0 -0
- package/dist/runtime/public/scss/element-plus/collapse-transition.css +0 -0
- package/dist/runtime/public/scss/element-plus/collapse.css +490 -0
- package/dist/runtime/public/scss/element-plus/color/index.css +0 -0
- package/dist/runtime/public/scss/element-plus/color-picker.css +650 -0
- package/dist/runtime/public/scss/element-plus/common/popup.css +338 -0
- package/dist/runtime/public/scss/element-plus/common/transition.css +420 -0
- package/dist/runtime/public/scss/element-plus/common/var.css +302 -0
- package/dist/runtime/public/scss/element-plus/config-provider.css +0 -0
- package/dist/runtime/public/scss/element-plus/container.css +313 -0
- package/dist/runtime/public/scss/element-plus/dark/css-vars.css +353 -0
- package/dist/runtime/public/scss/element-plus/dark/var.css +302 -0
- package/dist/runtime/public/scss/element-plus/date-picker/date-picker.css +558 -0
- package/dist/runtime/public/scss/element-plus/date-picker/date-range-picker.css +410 -0
- package/dist/runtime/public/scss/element-plus/date-picker/date-table.css +426 -0
- package/dist/runtime/public/scss/element-plus/date-picker/month-table.css +388 -0
- package/dist/runtime/public/scss/element-plus/date-picker/picker-panel.css +454 -0
- package/dist/runtime/public/scss/element-plus/date-picker/picker.css +662 -0
- package/dist/runtime/public/scss/element-plus/date-picker/time-picker.css +384 -0
- package/dist/runtime/public/scss/element-plus/date-picker/time-range-picker.css +338 -0
- package/dist/runtime/public/scss/element-plus/date-picker/time-spinner.css +389 -0
- package/dist/runtime/public/scss/element-plus/date-picker/year-table.css +384 -0
- package/dist/runtime/public/scss/element-plus/date-picker.css +1531 -0
- package/dist/runtime/public/scss/element-plus/descriptions-item.css +347 -0
- package/dist/runtime/public/scss/element-plus/descriptions.css +435 -0
- package/dist/runtime/public/scss/element-plus/dialog.css +512 -0
- package/dist/runtime/public/scss/element-plus/display.css +357 -0
- package/dist/runtime/public/scss/element-plus/divider.css +345 -0
- package/dist/runtime/public/scss/element-plus/drawer.css +419 -0
- package/dist/runtime/public/scss/element-plus/dropdown-item.css +0 -0
- package/dist/runtime/public/scss/element-plus/dropdown-menu.css +0 -0
- package/dist/runtime/public/scss/element-plus/dropdown.css +495 -0
- package/dist/runtime/public/scss/element-plus/empty.css +355 -0
- package/dist/runtime/public/scss/element-plus/footer.css +310 -0
- package/dist/runtime/public/scss/element-plus/form-item.css +0 -0
- package/dist/runtime/public/scss/element-plus/form.css +527 -0
- package/dist/runtime/public/scss/element-plus/header.css +310 -0
- package/dist/runtime/public/scss/element-plus/icon.css +343 -0
- package/dist/runtime/public/scss/element-plus/image-viewer.css +439 -0
- package/dist/runtime/public/scss/element-plus/image.css +343 -0
- package/dist/runtime/public/scss/element-plus/index.css +17293 -0
- package/dist/runtime/public/scss/element-plus/infinite-scroll.css +0 -0
- package/dist/runtime/public/scss/element-plus/input-number.css +494 -0
- package/dist/runtime/public/scss/element-plus/input.css +770 -0
- package/dist/runtime/public/scss/element-plus/link.css +453 -0
- package/dist/runtime/public/scss/element-plus/loading.css +391 -0
- package/dist/runtime/public/scss/element-plus/main.css +311 -0
- package/dist/runtime/public/scss/element-plus/mention.css +413 -0
- package/dist/runtime/public/scss/element-plus/menu-item-group.css +0 -0
- package/dist/runtime/public/scss/element-plus/menu-item.css +0 -0
- package/dist/runtime/public/scss/element-plus/menu.css +737 -0
- package/dist/runtime/public/scss/element-plus/message-box.css +533 -0
- package/dist/runtime/public/scss/element-plus/message.css +528 -0
- package/dist/runtime/public/scss/element-plus/mixins/config.css +0 -0
- package/dist/runtime/public/scss/element-plus/mixins/function.css +0 -0
- package/dist/runtime/public/scss/element-plus/mixins/mixins.css +302 -0
- package/dist/runtime/public/scss/element-plus/mixins/utils.css +0 -0
- package/dist/runtime/public/scss/element-plus/notification.css +413 -0
- package/dist/runtime/public/scss/element-plus/option-group.css +331 -0
- package/dist/runtime/public/scss/element-plus/option.css +354 -0
- package/dist/runtime/public/scss/element-plus/overlay.css +317 -0
- package/dist/runtime/public/scss/element-plus/page-header.css +351 -0
- package/dist/runtime/public/scss/element-plus/pagination.css +586 -0
- package/dist/runtime/public/scss/element-plus/popconfirm.css +315 -0
- package/dist/runtime/public/scss/element-plus/popover.css +352 -0
- package/dist/runtime/public/scss/element-plus/popper.css +400 -0
- package/dist/runtime/public/scss/element-plus/progress.css +449 -0
- package/dist/runtime/public/scss/element-plus/radio-button.css +436 -0
- package/dist/runtime/public/scss/element-plus/radio-group.css +308 -0
- package/dist/runtime/public/scss/element-plus/radio.css +561 -0
- package/dist/runtime/public/scss/element-plus/rate.css +384 -0
- package/dist/runtime/public/scss/element-plus/reset.css +399 -0
- package/dist/runtime/public/scss/element-plus/result.css +381 -0
- package/dist/runtime/public/scss/element-plus/row.css +339 -0
- package/dist/runtime/public/scss/element-plus/scrollbar.css +373 -0
- package/dist/runtime/public/scss/element-plus/segmented.css +460 -0
- package/dist/runtime/public/scss/element-plus/select-dropdown-v2.css +351 -0
- package/dist/runtime/public/scss/element-plus/select-dropdown.css +351 -0
- package/dist/runtime/public/scss/element-plus/select-v2.css +765 -0
- package/dist/runtime/public/scss/element-plus/select.css +765 -0
- package/dist/runtime/public/scss/element-plus/skeleton-item.css +372 -0
- package/dist/runtime/public/scss/element-plus/skeleton.css +335 -0
- package/dist/runtime/public/scss/element-plus/slider.css +480 -0
- package/dist/runtime/public/scss/element-plus/space.css +317 -0
- package/dist/runtime/public/scss/element-plus/spinner.css +342 -0
- package/dist/runtime/public/scss/element-plus/statistic.css +336 -0
- package/dist/runtime/public/scss/element-plus/step.css +586 -0
- package/dist/runtime/public/scss/element-plus/steps.css +319 -0
- package/dist/runtime/public/scss/element-plus/sub-menu.css +0 -0
- package/dist/runtime/public/scss/element-plus/switch.css +594 -0
- package/dist/runtime/public/scss/element-plus/tab-pane.css +0 -0
- package/dist/runtime/public/scss/element-plus/table-column.css +382 -0
- package/dist/runtime/public/scss/element-plus/table-v2.css +520 -0
- package/dist/runtime/public/scss/element-plus/table.css +893 -0
- package/dist/runtime/public/scss/element-plus/tabs.css +892 -0
- package/dist/runtime/public/scss/element-plus/tag.css +624 -0
- package/dist/runtime/public/scss/element-plus/text.css +378 -0
- package/dist/runtime/public/scss/element-plus/time-picker.css +1023 -0
- package/dist/runtime/public/scss/element-plus/time-select.css +946 -0
- package/dist/runtime/public/scss/element-plus/timeline-item.css +415 -0
- package/dist/runtime/public/scss/element-plus/timeline.css +334 -0
- package/dist/runtime/public/scss/element-plus/tooltip-v2.css +410 -0
- package/dist/runtime/public/scss/element-plus/tooltip.css +0 -0
- package/dist/runtime/public/scss/element-plus/tour.css +461 -0
- package/dist/runtime/public/scss/element-plus/transfer.css +497 -0
- package/dist/runtime/public/scss/element-plus/tree-select.css +325 -0
- package/dist/runtime/public/scss/element-plus/tree.css +538 -0
- package/dist/runtime/public/scss/element-plus/upload.css +862 -0
- package/dist/runtime/public/scss/element-plus/var.css +389 -0
- package/dist/runtime/public/scss/element-plus/virtual-list.css +330 -0
- package/dist/runtime/public/scss/theme.css +1268 -0
- package/dist/runtime/server/tsconfig.json +6 -0
- package/dist/runtime/types.d.ts +31 -0
- package/dist/types.d.mts +7 -0
- package/dist/types.d.ts +7 -0
- package/package.json +35 -12
- package/components/TimusIcons.vue +0 -54
- package/generate-icon.js +0 -22
- package/module.ts +0 -84
- package/pages/icons.vue +0 -37
- package/plugins/sample-plugin.ts +0 -5
- package/public/isax/fonts/iconsax.svg +0 -927
- package/public/isax/fonts/iconsax.ttf +0 -0
- package/public/isax/fonts/iconsax.woff +0 -0
- package/public/isax/icons.json +0 -899
- package/public/isax/selection.json +0 -1
- package/public/isax/style.css +0 -1
- package/public/isax/style.scss +0 -5435
- package/public/isax/variables.scss +0 -900
|
@@ -0,0 +1,737 @@
|
|
|
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-error-light-1: #fde3e3;
|
|
208
|
+
}
|
|
209
|
+
:root {
|
|
210
|
+
--el-color-error-light-2: #fdcbcb;
|
|
211
|
+
}
|
|
212
|
+
:root {
|
|
213
|
+
--el-color-error-light-3: #faa7a7;
|
|
214
|
+
}
|
|
215
|
+
:root {
|
|
216
|
+
--el-color-error-light-4: #f35c5c;
|
|
217
|
+
}
|
|
218
|
+
:root {
|
|
219
|
+
--el-color-error-light-5: #eb4848;
|
|
220
|
+
--el-color-error: #eb4848;
|
|
221
|
+
}
|
|
222
|
+
:root {
|
|
223
|
+
--el-color-error-light-6: #d82a2a;
|
|
224
|
+
}
|
|
225
|
+
:root {
|
|
226
|
+
--el-color-error-light-7: #b52020;
|
|
227
|
+
}
|
|
228
|
+
:root {
|
|
229
|
+
--el-color-error-light-8: #961e1e;
|
|
230
|
+
}
|
|
231
|
+
:root {
|
|
232
|
+
--el-color-error-light-9: #7d1f1f;
|
|
233
|
+
}
|
|
234
|
+
:root {
|
|
235
|
+
--el-color-success-light-1: #f0f8ed;
|
|
236
|
+
}
|
|
237
|
+
:root {
|
|
238
|
+
--el-color-success-light-2: #d9edd3;
|
|
239
|
+
}
|
|
240
|
+
:root {
|
|
241
|
+
--el-color-success-light-3: #b4daa7;
|
|
242
|
+
}
|
|
243
|
+
:root {
|
|
244
|
+
--el-color-success-light-4: #8ec87b;
|
|
245
|
+
}
|
|
246
|
+
:root {
|
|
247
|
+
--el-color-success-light-5: #69b64f;
|
|
248
|
+
--el-color-success: #69b64f;
|
|
249
|
+
}
|
|
250
|
+
:root {
|
|
251
|
+
--el-color-success-light-6: #488633;
|
|
252
|
+
}
|
|
253
|
+
:root {
|
|
254
|
+
--el-color-success-light-7: #3a6a2b;
|
|
255
|
+
}
|
|
256
|
+
:root {
|
|
257
|
+
--el-color-success-light-8: #315526;
|
|
258
|
+
}
|
|
259
|
+
:root {
|
|
260
|
+
--el-color-success-light-9: #294621;
|
|
261
|
+
}
|
|
262
|
+
:root {
|
|
263
|
+
--el-color-warning-light-1: #fff5c6;
|
|
264
|
+
}
|
|
265
|
+
:root {
|
|
266
|
+
--el-color-warning-light-2: #ffe988;
|
|
267
|
+
}
|
|
268
|
+
:root {
|
|
269
|
+
--el-color-warning-light-3: #ffd643;
|
|
270
|
+
}
|
|
271
|
+
:root {
|
|
272
|
+
--el-color-warning-light-4: #ffc520;
|
|
273
|
+
}
|
|
274
|
+
:root {
|
|
275
|
+
--el-color-warning-light-5: #f9a307;
|
|
276
|
+
--el-color-warning: #f9a307;
|
|
277
|
+
}
|
|
278
|
+
:root {
|
|
279
|
+
--el-color-warning-light-6: #dd7b02;
|
|
280
|
+
}
|
|
281
|
+
:root {
|
|
282
|
+
--el-color-warning-light-7: #b75606;
|
|
283
|
+
}
|
|
284
|
+
:root {
|
|
285
|
+
--el-color-warning-light-8: #94410c;
|
|
286
|
+
}
|
|
287
|
+
:root {
|
|
288
|
+
--el-color-warning-light-9: #7a370d;
|
|
289
|
+
}
|
|
290
|
+
/**
|
|
291
|
+
Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
292
|
+
.selector{
|
|
293
|
+
// --el-button-text-color: var(--el-color-primary); -> bu eklenir
|
|
294
|
+
@include css-var-from-global(('button-text-color'), ('color-primary'));
|
|
295
|
+
|
|
296
|
+
// bununla property'ye değer atayabilirsin (hiyerarşik alıyor)
|
|
297
|
+
color: getCssVar('colors-neutral-light-2');
|
|
298
|
+
|
|
299
|
+
// bununla da property alınabililyor
|
|
300
|
+
font-size: map.get($select, 'font-size');
|
|
301
|
+
}
|
|
302
|
+
**/
|
|
303
|
+
.fade-in-linear-enter-active,
|
|
304
|
+
.fade-in-linear-leave-active {
|
|
305
|
+
transition: var(--el-transition-fade-linear);
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.fade-in-linear-enter-from,
|
|
309
|
+
.fade-in-linear-leave-to {
|
|
310
|
+
opacity: 0;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.el-fade-in-linear-enter-active,
|
|
314
|
+
.el-fade-in-linear-leave-active {
|
|
315
|
+
transition: var(--el-transition-fade-linear);
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.el-fade-in-linear-enter-from,
|
|
319
|
+
.el-fade-in-linear-leave-to {
|
|
320
|
+
opacity: 0;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.el-fade-in-enter-active,
|
|
324
|
+
.el-fade-in-leave-active {
|
|
325
|
+
transition: all var(--el-transition-duration) cubic-bezier(0.55, 0, 0.1, 1);
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.el-fade-in-enter-from,
|
|
329
|
+
.el-fade-in-leave-active {
|
|
330
|
+
opacity: 0;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.el-zoom-in-center-enter-active,
|
|
334
|
+
.el-zoom-in-center-leave-active {
|
|
335
|
+
transition: all var(--el-transition-duration) cubic-bezier(0.55, 0, 0.1, 1);
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.el-zoom-in-center-enter-from,
|
|
339
|
+
.el-zoom-in-center-leave-active {
|
|
340
|
+
opacity: 0;
|
|
341
|
+
transform: scaleX(0);
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.el-zoom-in-top-enter-active,
|
|
345
|
+
.el-zoom-in-top-leave-active {
|
|
346
|
+
opacity: 1;
|
|
347
|
+
transform: scaleY(1);
|
|
348
|
+
transition: var(--el-transition-md-fade);
|
|
349
|
+
transform-origin: center top;
|
|
350
|
+
}
|
|
351
|
+
.el-zoom-in-top-enter-active[data-popper-placement^=top],
|
|
352
|
+
.el-zoom-in-top-leave-active[data-popper-placement^=top] {
|
|
353
|
+
transform-origin: center bottom;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.el-zoom-in-top-enter-from,
|
|
357
|
+
.el-zoom-in-top-leave-active {
|
|
358
|
+
opacity: 0;
|
|
359
|
+
transform: scaleY(0);
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.el-zoom-in-bottom-enter-active,
|
|
363
|
+
.el-zoom-in-bottom-leave-active {
|
|
364
|
+
opacity: 1;
|
|
365
|
+
transform: scaleY(1);
|
|
366
|
+
transition: var(--el-transition-md-fade);
|
|
367
|
+
transform-origin: center bottom;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.el-zoom-in-bottom-enter-from,
|
|
371
|
+
.el-zoom-in-bottom-leave-active {
|
|
372
|
+
opacity: 0;
|
|
373
|
+
transform: scaleY(0);
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.el-zoom-in-left-enter-active,
|
|
377
|
+
.el-zoom-in-left-leave-active {
|
|
378
|
+
opacity: 1;
|
|
379
|
+
transform: scale(1, 1);
|
|
380
|
+
transition: var(--el-transition-md-fade);
|
|
381
|
+
transform-origin: top left;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.el-zoom-in-left-enter-from,
|
|
385
|
+
.el-zoom-in-left-leave-active {
|
|
386
|
+
opacity: 0;
|
|
387
|
+
transform: scale(0.45, 0.45);
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.collapse-transition {
|
|
391
|
+
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;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
.el-collapse-transition-leave-active,
|
|
395
|
+
.el-collapse-transition-enter-active {
|
|
396
|
+
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;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.horizontal-collapse-transition {
|
|
400
|
+
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;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.el-list-enter-active,
|
|
404
|
+
.el-list-leave-active {
|
|
405
|
+
transition: all 1s;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.el-list-enter-from,
|
|
409
|
+
.el-list-leave-to {
|
|
410
|
+
opacity: 0;
|
|
411
|
+
transform: translateY(-30px);
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.el-list-leave-active {
|
|
415
|
+
position: absolute !important;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
.el-opacity-transition {
|
|
419
|
+
transition: opacity var(--el-transition-duration) cubic-bezier(0.55, 0, 0.1, 1);
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
:root {
|
|
423
|
+
--el-menu-active-color: var(--el-color-white);
|
|
424
|
+
--el-menu-active-bg-color: var(--el-color-primary-light-5);
|
|
425
|
+
--el-menu-text-color: var(--el-color-neutral-light-7);
|
|
426
|
+
--el-menu-hover-text-color: var(--el-color-primary);
|
|
427
|
+
--el-menu-bg-color: var(--el-color-white);
|
|
428
|
+
--el-menu-hover-bg-color: var(--el-color-white);
|
|
429
|
+
--el-menu-item-height: 40px;
|
|
430
|
+
--el-menu-sub-item-height: calc(var(--el-menu-item-height) - 0px);
|
|
431
|
+
--el-menu-horizontal-height: 60px;
|
|
432
|
+
--el-menu-horizontal-sub-item-height: 36px;
|
|
433
|
+
--el-menu-item-font-size: var(--el-font-size-base);
|
|
434
|
+
--el-menu-item-hover-fill: var(--el-color-primary-light-9);
|
|
435
|
+
--el-menu-border-color: var(--el-border-color);
|
|
436
|
+
--el-menu-base-level-padding: 8px;
|
|
437
|
+
--el-menu-level-padding: 20px;
|
|
438
|
+
--el-menu-icon-width: 14px;
|
|
439
|
+
--el-menu-border-radius: 4px;
|
|
440
|
+
--el-menu-items-gap: 6px;
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
.el-menu {
|
|
444
|
+
list-style: none;
|
|
445
|
+
position: relative;
|
|
446
|
+
margin: 0;
|
|
447
|
+
padding-left: 0;
|
|
448
|
+
background-color: var(--el-menu-bg-color);
|
|
449
|
+
box-sizing: border-box;
|
|
450
|
+
}
|
|
451
|
+
.el-menu--vertical:not(.el-menu--collapse):not(.el-menu--popup-container) .el-menu-item, .el-menu--vertical:not(.el-menu--collapse):not(.el-menu--popup-container) .el-sub-menu__title, .el-menu--vertical:not(.el-menu--collapse):not(.el-menu--popup-container) .el-menu-item-group__title {
|
|
452
|
+
display: flex;
|
|
453
|
+
gap: var(--el-menu-items-gap);
|
|
454
|
+
border-radius: var(--el-menu-border-radius);
|
|
455
|
+
white-space: nowrap;
|
|
456
|
+
padding-left: calc(var(--el-menu-base-level-padding) + var(--el-menu-level) * var(--el-menu-level-padding));
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.el-menu:not(.el-menu--collapse) .el-sub-menu__title {
|
|
460
|
+
padding-right: calc(var(--el-menu-base-level-padding) + var(--el-menu-icon-width));
|
|
461
|
+
}
|
|
462
|
+
.el-menu--horizontal {
|
|
463
|
+
display: flex;
|
|
464
|
+
flex-wrap: nowrap;
|
|
465
|
+
border-right: none;
|
|
466
|
+
height: var(--el-menu-horizontal-height);
|
|
467
|
+
}
|
|
468
|
+
.el-menu--horizontal.el-menu--popup-container {
|
|
469
|
+
height: unset;
|
|
470
|
+
}
|
|
471
|
+
.el-menu--horizontal.el-menu {
|
|
472
|
+
border-bottom: solid 1px var(--el-menu-border-color);
|
|
473
|
+
}
|
|
474
|
+
.el-menu--horizontal > .el-menu-item {
|
|
475
|
+
display: inline-flex;
|
|
476
|
+
justify-content: center;
|
|
477
|
+
align-items: center;
|
|
478
|
+
height: 100%;
|
|
479
|
+
margin: 0;
|
|
480
|
+
border-bottom: 2px solid transparent;
|
|
481
|
+
color: var(--el-menu-text-color);
|
|
482
|
+
}
|
|
483
|
+
.el-menu--horizontal > .el-menu-item a,
|
|
484
|
+
.el-menu--horizontal > .el-menu-item a:hover {
|
|
485
|
+
color: inherit;
|
|
486
|
+
}
|
|
487
|
+
.el-menu--horizontal > .el-sub-menu:focus, .el-menu--horizontal > .el-sub-menu:hover {
|
|
488
|
+
outline: none;
|
|
489
|
+
}
|
|
490
|
+
.el-menu--horizontal > .el-sub-menu:hover .el-sub-menu__title {
|
|
491
|
+
color: var(--el-menu-hover-text-color);
|
|
492
|
+
}
|
|
493
|
+
.el-menu--horizontal > .el-sub-menu.is-active .el-sub-menu__title {
|
|
494
|
+
border-bottom: 2px solid var(--el-menu-active-color);
|
|
495
|
+
color: var(--el-menu-active-color);
|
|
496
|
+
}
|
|
497
|
+
.el-menu--horizontal > .el-sub-menu .el-sub-menu__title {
|
|
498
|
+
height: 100%;
|
|
499
|
+
border-bottom: 2px solid transparent;
|
|
500
|
+
color: var(--el-menu-text-color);
|
|
501
|
+
}
|
|
502
|
+
.el-menu--horizontal > .el-sub-menu .el-sub-menu__title:hover {
|
|
503
|
+
background-color: var(--el-menu-bg-color);
|
|
504
|
+
}
|
|
505
|
+
.el-menu--horizontal .el-menu .el-menu-item, .el-menu--horizontal .el-menu .el-sub-menu__title {
|
|
506
|
+
background-color: var(--el-menu-bg-color);
|
|
507
|
+
display: flex;
|
|
508
|
+
align-items: center;
|
|
509
|
+
height: var(--el-menu-horizontal-sub-item-height);
|
|
510
|
+
line-height: var(--el-menu-horizontal-sub-item-height);
|
|
511
|
+
padding: 0 10px;
|
|
512
|
+
color: var(--el-menu-text-color);
|
|
513
|
+
}
|
|
514
|
+
.el-menu--horizontal .el-menu .el-sub-menu__title {
|
|
515
|
+
padding-right: 40px;
|
|
516
|
+
}
|
|
517
|
+
.el-menu--horizontal .el-menu .el-menu-item.is-active, .el-menu--horizontal .el-menu .el-sub-menu.is-active > .el-sub-menu__title {
|
|
518
|
+
color: var(--el-menu-active-color);
|
|
519
|
+
}
|
|
520
|
+
.el-menu--horizontal .el-menu-item:not(.is-disabled):hover, .el-menu--horizontal .el-menu-item:not(.is-disabled):focus {
|
|
521
|
+
outline: none;
|
|
522
|
+
color: var(--el-menu-hover-text-color);
|
|
523
|
+
background-color: var(--el-menu-hover-bg-color);
|
|
524
|
+
}
|
|
525
|
+
.el-menu--horizontal > .el-menu-item.is-active {
|
|
526
|
+
border-bottom: 2px solid var(--el-menu-active-color);
|
|
527
|
+
color: var(--el-menu-active-color) !important;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
.el-menu--collapse {
|
|
531
|
+
width: calc(var(--el-menu-icon-width) + var(--el-menu-base-level-padding) * 2);
|
|
532
|
+
}
|
|
533
|
+
.el-menu--collapse > .el-menu-item [class^=el-icon],
|
|
534
|
+
.el-menu--collapse > .el-sub-menu > .el-sub-menu__title [class^=el-icon],
|
|
535
|
+
.el-menu--collapse > .el-menu-item-group > ul > .el-sub-menu > .el-sub-menu__title [class^=el-icon] {
|
|
536
|
+
margin: 0;
|
|
537
|
+
vertical-align: middle;
|
|
538
|
+
width: var(--el-menu-icon-width);
|
|
539
|
+
text-align: center;
|
|
540
|
+
}
|
|
541
|
+
.el-menu--collapse > .el-menu-item .el-sub-menu__icon-arrow,
|
|
542
|
+
.el-menu--collapse > .el-sub-menu > .el-sub-menu__title .el-sub-menu__icon-arrow,
|
|
543
|
+
.el-menu--collapse > .el-menu-item-group > ul > .el-sub-menu > .el-sub-menu__title .el-sub-menu__icon-arrow {
|
|
544
|
+
display: none;
|
|
545
|
+
}
|
|
546
|
+
.el-menu--collapse > .el-menu-item > span,
|
|
547
|
+
.el-menu--collapse > .el-sub-menu > .el-sub-menu__title > span,
|
|
548
|
+
.el-menu--collapse > .el-menu-item-group > ul > .el-sub-menu > .el-sub-menu__title > span {
|
|
549
|
+
height: 0;
|
|
550
|
+
width: 0;
|
|
551
|
+
overflow: hidden;
|
|
552
|
+
visibility: hidden;
|
|
553
|
+
display: inline-block;
|
|
554
|
+
}
|
|
555
|
+
.el-menu--collapse > .el-menu-item.is-active i {
|
|
556
|
+
color: inherit;
|
|
557
|
+
}
|
|
558
|
+
.el-menu--collapse .el-menu .el-sub-menu {
|
|
559
|
+
min-width: 200px;
|
|
560
|
+
}
|
|
561
|
+
.el-menu--collapse .el-sub-menu.is-active .el-sub-menu__title {
|
|
562
|
+
color: var(--el-menu-active-color);
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
.el-menu--popup {
|
|
566
|
+
z-index: 100;
|
|
567
|
+
min-width: 200px;
|
|
568
|
+
border: none;
|
|
569
|
+
padding: 5px 0;
|
|
570
|
+
border-radius: var(--el-border-radius-small);
|
|
571
|
+
box-shadow: var(--el-box-shadow-light);
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
.el-menu .el-icon {
|
|
575
|
+
flex-shrink: 0;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
.el-menu-item {
|
|
579
|
+
display: flex;
|
|
580
|
+
align-items: center;
|
|
581
|
+
height: var(--el-menu-item-height);
|
|
582
|
+
line-height: var(--el-menu-item-height);
|
|
583
|
+
font-size: var(--el-menu-item-font-size);
|
|
584
|
+
color: var(--el-menu-text-color);
|
|
585
|
+
padding: 0;
|
|
586
|
+
list-style: none;
|
|
587
|
+
cursor: pointer;
|
|
588
|
+
position: relative;
|
|
589
|
+
transition: border-color var(--el-transition-duration), background-color var(--el-transition-duration), color var(--el-transition-duration);
|
|
590
|
+
box-sizing: border-box;
|
|
591
|
+
white-space: nowrap;
|
|
592
|
+
}
|
|
593
|
+
.el-menu-item * {
|
|
594
|
+
vertical-align: bottom;
|
|
595
|
+
}
|
|
596
|
+
.el-menu-item i {
|
|
597
|
+
color: inherit;
|
|
598
|
+
}
|
|
599
|
+
.el-menu-item:hover, .el-menu-item:focus {
|
|
600
|
+
outline: none;
|
|
601
|
+
}
|
|
602
|
+
.el-menu-item:hover {
|
|
603
|
+
background-color: var(--el-menu-hover-bg-color);
|
|
604
|
+
color: var(--el-color-primary);
|
|
605
|
+
}
|
|
606
|
+
.el-menu-item.is-disabled {
|
|
607
|
+
opacity: 0.25;
|
|
608
|
+
cursor: not-allowed;
|
|
609
|
+
background: none !important;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
.el-menu-item [class^=el-icon] {
|
|
613
|
+
width: var(--el-menu-icon-width);
|
|
614
|
+
text-align: center;
|
|
615
|
+
font-size: var(--el-menu-icon-width);
|
|
616
|
+
vertical-align: middle;
|
|
617
|
+
}
|
|
618
|
+
.el-menu-item.is-active {
|
|
619
|
+
color: var(--el-menu-active-color);
|
|
620
|
+
background-color: var(--el-menu-active-bg-color);
|
|
621
|
+
}
|
|
622
|
+
.el-menu-item.is-active i {
|
|
623
|
+
color: inherit;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
.el-menu-item .el-menu-tooltip__trigger {
|
|
627
|
+
position: absolute;
|
|
628
|
+
left: 0;
|
|
629
|
+
top: 0;
|
|
630
|
+
height: 100%;
|
|
631
|
+
width: 100%;
|
|
632
|
+
display: inline-flex;
|
|
633
|
+
align-items: center;
|
|
634
|
+
box-sizing: border-box;
|
|
635
|
+
padding: 0 var(--el-menu-base-level-padding);
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
.el-sub-menu {
|
|
639
|
+
list-style: none;
|
|
640
|
+
margin: 0;
|
|
641
|
+
padding-left: 0;
|
|
642
|
+
}
|
|
643
|
+
.el-sub-menu__title {
|
|
644
|
+
display: flex;
|
|
645
|
+
align-items: center;
|
|
646
|
+
height: var(--el-menu-item-height);
|
|
647
|
+
line-height: var(--el-menu-item-height);
|
|
648
|
+
font-size: var(--el-menu-item-font-size);
|
|
649
|
+
color: var(--el-menu-text-color);
|
|
650
|
+
padding: 0;
|
|
651
|
+
list-style: none;
|
|
652
|
+
cursor: pointer;
|
|
653
|
+
position: relative;
|
|
654
|
+
transition: border-color var(--el-transition-duration), background-color var(--el-transition-duration), color var(--el-transition-duration);
|
|
655
|
+
box-sizing: border-box;
|
|
656
|
+
white-space: nowrap;
|
|
657
|
+
}
|
|
658
|
+
.el-sub-menu__title * {
|
|
659
|
+
vertical-align: bottom;
|
|
660
|
+
}
|
|
661
|
+
.el-sub-menu__title i {
|
|
662
|
+
color: inherit;
|
|
663
|
+
}
|
|
664
|
+
.el-sub-menu__title:hover, .el-sub-menu__title:focus {
|
|
665
|
+
outline: none;
|
|
666
|
+
}
|
|
667
|
+
.el-sub-menu__title:hover {
|
|
668
|
+
background-color: var(--el-menu-hover-bg-color);
|
|
669
|
+
color: var(--el-color-primary);
|
|
670
|
+
}
|
|
671
|
+
.el-sub-menu__title.is-disabled {
|
|
672
|
+
opacity: 0.25;
|
|
673
|
+
cursor: not-allowed;
|
|
674
|
+
background: none !important;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
.el-sub-menu__title:hover {
|
|
678
|
+
background-color: var(--el-menu-hover-bg-color);
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.el-sub-menu .el-menu {
|
|
682
|
+
border: none;
|
|
683
|
+
}
|
|
684
|
+
.el-sub-menu .el-menu-item {
|
|
685
|
+
height: var(--el-menu-sub-item-height);
|
|
686
|
+
line-height: var(--el-menu-sub-item-height);
|
|
687
|
+
}
|
|
688
|
+
.el-sub-menu__hide-arrow .el-sub-menu__icon-arrow {
|
|
689
|
+
display: none !important;
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
.el-sub-menu.is-active .el-sub-menu__title {
|
|
693
|
+
border-bottom-color: var(--el-menu-active-color);
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
.el-sub-menu.is-disabled .el-sub-menu__title,
|
|
697
|
+
.el-sub-menu.is-disabled .el-menu-item {
|
|
698
|
+
opacity: 0.25;
|
|
699
|
+
cursor: not-allowed;
|
|
700
|
+
background: none !important;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
.el-sub-menu .el-icon {
|
|
704
|
+
vertical-align: middle;
|
|
705
|
+
width: var(--el-menu-icon-width);
|
|
706
|
+
height: var(--el-menu-icon-width);
|
|
707
|
+
text-align: center;
|
|
708
|
+
font-size: var(--el-menu-icon-width);
|
|
709
|
+
}
|
|
710
|
+
.el-sub-menu .el-icon.el-sub-menu__icon-more {
|
|
711
|
+
margin-right: 0 !important;
|
|
712
|
+
}
|
|
713
|
+
.el-sub-menu .el-sub-menu__icon-arrow {
|
|
714
|
+
position: absolute;
|
|
715
|
+
top: 50%;
|
|
716
|
+
right: var(--el-menu-base-level-padding);
|
|
717
|
+
margin-top: -6px;
|
|
718
|
+
transition: transform var(--el-transition-duration);
|
|
719
|
+
font-size: 12px;
|
|
720
|
+
margin-right: 0;
|
|
721
|
+
width: inherit;
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
.el-menu-item-group > ul {
|
|
725
|
+
padding: 0;
|
|
726
|
+
}
|
|
727
|
+
.el-menu-item-group__title {
|
|
728
|
+
padding: 7px 0 7px var(--el-menu-base-level-padding);
|
|
729
|
+
line-height: normal;
|
|
730
|
+
font-size: 12px;
|
|
731
|
+
color: var(--el-text-color-secondary);
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
.horizontal-collapse-transition .el-sub-menu__title .el-sub-menu__icon-arrow {
|
|
735
|
+
transition: var(--el-transition-duration-fast);
|
|
736
|
+
opacity: 0;
|
|
737
|
+
}
|