@timus-networks/theme 2.0.1 → 2.0.2
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 +34 -49
- package/dist/module.d.mts +1 -1
- package/dist/module.d.ts +1 -1
- package/dist/module.json +2 -2
- package/dist/module.mjs +40 -18
- 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/{example.button.vue.d.ts → development/example.button.vue.d.ts} +2 -1
- package/dist/runtime/components/development/example.card.vue +68 -0
- package/dist/runtime/components/development/example.checkbox.vue +176 -0
- package/dist/runtime/components/{example.checkbox.vue.d.ts → development/example.checkbox.vue.d.ts} +2 -2
- 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/{example.dialog.vue → development/example.dialog.vue} +21 -24
- 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/{example.radio.vue.d.ts → development/example.radio.vue.d.ts} +3 -2
- package/dist/runtime/components/development/example.select.vue +588 -0
- package/dist/runtime/components/{example.select.vue.d.ts → development/example.select.vue.d.ts} +3 -2
- 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/{example.table.vue → development/example.table.vue} +8 -22
- 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 +44 -13
- package/dist/runtime/plugins/disable-warnings-plugin.js +18 -0
- package/dist/runtime/plugins/disable-warnings-plugin.mjs +18 -0
- package/dist/runtime/public/scss/element-plus/affix.css +28 -0
- package/dist/runtime/public/scss/element-plus/alert.css +116 -20
- package/dist/runtime/public/scss/element-plus/anchor-link.css +28 -0
- package/dist/runtime/public/scss/element-plus/anchor.css +28 -0
- package/dist/runtime/public/scss/element-plus/aside.css +28 -0
- package/dist/runtime/public/scss/element-plus/autocomplete.css +28 -0
- package/dist/runtime/public/scss/element-plus/avatar.css +60 -10
- package/dist/runtime/public/scss/element-plus/backtop.css +28 -0
- package/dist/runtime/public/scss/element-plus/badge.css +30 -2
- package/dist/runtime/public/scss/element-plus/base.css +31 -3
- package/dist/runtime/public/scss/element-plus/breadcrumb.css +46 -6
- package/dist/runtime/public/scss/element-plus/button-group.css +154 -32
- package/dist/runtime/public/scss/element-plus/button.css +70 -24
- package/dist/runtime/public/scss/element-plus/calendar.css +28 -0
- package/dist/runtime/public/scss/element-plus/card.css +41 -6
- package/dist/runtime/public/scss/element-plus/carousel-item.css +28 -0
- package/dist/runtime/public/scss/element-plus/carousel.css +28 -0
- package/dist/runtime/public/scss/element-plus/cascader-panel.css +28 -0
- package/dist/runtime/public/scss/element-plus/cascader.css +28 -0
- package/dist/runtime/public/scss/element-plus/check-tag.css +28 -0
- package/dist/runtime/public/scss/element-plus/checkbox-button.css +33 -0
- package/dist/runtime/public/scss/element-plus/checkbox-group.css +28 -0
- package/dist/runtime/public/scss/element-plus/checkbox.css +28 -0
- package/dist/runtime/public/scss/element-plus/col.css +28 -0
- package/dist/runtime/public/scss/element-plus/collapse.css +28 -0
- package/dist/runtime/public/scss/element-plus/color-picker.css +28 -0
- package/dist/runtime/public/scss/element-plus/common/popup.css +28 -0
- package/dist/runtime/public/scss/element-plus/common/transition.css +28 -0
- package/dist/runtime/public/scss/element-plus/common/var.css +28 -0
- package/dist/runtime/public/scss/element-plus/container.css +28 -0
- package/dist/runtime/public/scss/element-plus/dark/css-vars.css +28 -0
- package/dist/runtime/public/scss/element-plus/dark/var.css +28 -0
- package/dist/runtime/public/scss/element-plus/date-picker/date-picker.css +76 -14
- package/dist/runtime/public/scss/element-plus/date-picker/date-range-picker.css +41 -9
- package/dist/runtime/public/scss/element-plus/date-picker/date-table.css +31 -3
- package/dist/runtime/public/scss/element-plus/date-picker/month-table.css +28 -0
- package/dist/runtime/public/scss/element-plus/date-picker/picker-panel.css +69 -6
- package/dist/runtime/public/scss/element-plus/date-picker/picker.css +28 -0
- package/dist/runtime/public/scss/element-plus/date-picker/time-picker.css +56 -16
- package/dist/runtime/public/scss/element-plus/date-picker/time-range-picker.css +39 -4
- package/dist/runtime/public/scss/element-plus/date-picker/time-spinner.css +31 -4
- package/dist/runtime/public/scss/element-plus/date-picker/year-table.css +28 -0
- package/dist/runtime/public/scss/element-plus/date-picker.css +134 -50
- package/dist/runtime/public/scss/element-plus/descriptions-item.css +48 -8
- package/dist/runtime/public/scss/element-plus/descriptions.css +78 -16
- package/dist/runtime/public/scss/element-plus/dialog.css +30 -2
- package/dist/runtime/public/scss/element-plus/display.css +28 -0
- package/dist/runtime/public/scss/element-plus/divider.css +28 -0
- package/dist/runtime/public/scss/element-plus/drawer.css +28 -0
- package/dist/runtime/public/scss/element-plus/dropdown.css +43 -12
- package/dist/runtime/public/scss/element-plus/empty.css +28 -0
- package/dist/runtime/public/scss/element-plus/footer.css +28 -0
- package/dist/runtime/public/scss/element-plus/form.css +28 -0
- package/dist/runtime/public/scss/element-plus/header.css +28 -0
- package/dist/runtime/public/scss/element-plus/icon.css +30 -2
- package/dist/runtime/public/scss/element-plus/image-viewer.css +28 -0
- package/dist/runtime/public/scss/element-plus/image.css +28 -0
- package/dist/runtime/public/scss/element-plus/index.css +920 -329
- package/dist/runtime/public/scss/element-plus/input-number.css +50 -6
- package/dist/runtime/public/scss/element-plus/input.css +28 -0
- package/dist/runtime/public/scss/element-plus/link.css +59 -28
- package/dist/runtime/public/scss/element-plus/loading.css +28 -0
- package/dist/runtime/public/scss/element-plus/main.css +28 -0
- package/dist/runtime/public/scss/element-plus/mention.css +28 -0
- package/dist/runtime/public/scss/element-plus/menu.css +28 -0
- package/dist/runtime/public/scss/element-plus/message-box.css +34 -2
- package/dist/runtime/public/scss/element-plus/message.css +161 -31
- package/dist/runtime/public/scss/element-plus/mixins/mixins.css +28 -0
- package/dist/runtime/public/scss/element-plus/notification.css +41 -9
- package/dist/runtime/public/scss/element-plus/option-group.css +28 -0
- package/dist/runtime/public/scss/element-plus/option.css +29 -0
- package/dist/runtime/public/scss/element-plus/overlay.css +28 -0
- package/dist/runtime/public/scss/element-plus/page-header.css +28 -0
- package/dist/runtime/public/scss/element-plus/pagination.css +64 -11
- package/dist/runtime/public/scss/element-plus/popconfirm.css +28 -0
- package/dist/runtime/public/scss/element-plus/popover.css +28 -0
- package/dist/runtime/public/scss/element-plus/popper.css +29 -1
- package/dist/runtime/public/scss/element-plus/progress.css +28 -0
- package/dist/runtime/public/scss/element-plus/radio-button.css +36 -2
- package/dist/runtime/public/scss/element-plus/radio-group.css +28 -0
- package/dist/runtime/public/scss/element-plus/radio.css +28 -0
- package/dist/runtime/public/scss/element-plus/rate.css +28 -0
- package/dist/runtime/public/scss/element-plus/reset.css +28 -0
- package/dist/runtime/public/scss/element-plus/result.css +28 -0
- package/dist/runtime/public/scss/element-plus/row.css +28 -0
- package/dist/runtime/public/scss/element-plus/scrollbar.css +28 -0
- package/dist/runtime/public/scss/element-plus/segmented.css +28 -0
- package/dist/runtime/public/scss/element-plus/select-dropdown-v2.css +28 -0
- package/dist/runtime/public/scss/element-plus/select-dropdown.css +28 -0
- package/dist/runtime/public/scss/element-plus/select-v2.css +48 -23
- package/dist/runtime/public/scss/element-plus/select.css +48 -23
- package/dist/runtime/public/scss/element-plus/skeleton-item.css +28 -0
- package/dist/runtime/public/scss/element-plus/skeleton.css +28 -0
- package/dist/runtime/public/scss/element-plus/slider.css +28 -0
- package/dist/runtime/public/scss/element-plus/space.css +28 -0
- package/dist/runtime/public/scss/element-plus/spinner.css +28 -0
- package/dist/runtime/public/scss/element-plus/statistic.css +28 -0
- package/dist/runtime/public/scss/element-plus/step.css +28 -0
- package/dist/runtime/public/scss/element-plus/steps.css +28 -0
- package/dist/runtime/public/scss/element-plus/switch.css +116 -20
- package/dist/runtime/public/scss/element-plus/table-column.css +29 -1
- package/dist/runtime/public/scss/element-plus/table-v2.css +28 -0
- package/dist/runtime/public/scss/element-plus/table.css +28 -0
- package/dist/runtime/public/scss/element-plus/tabs.css +30 -2
- package/dist/runtime/public/scss/element-plus/tag.css +28 -0
- package/dist/runtime/public/scss/element-plus/text.css +34 -0
- package/dist/runtime/public/scss/element-plus/time-picker.css +111 -30
- package/dist/runtime/public/scss/element-plus/time-select.css +76 -14
- package/dist/runtime/public/scss/element-plus/timeline-item.css +28 -0
- package/dist/runtime/public/scss/element-plus/timeline.css +28 -0
- package/dist/runtime/public/scss/element-plus/tooltip-v2.css +28 -0
- package/dist/runtime/public/scss/element-plus/tour.css +30 -2
- package/dist/runtime/public/scss/element-plus/transfer.css +28 -0
- package/dist/runtime/public/scss/element-plus/tree-select.css +28 -0
- package/dist/runtime/public/scss/element-plus/tree.css +28 -0
- package/dist/runtime/public/scss/element-plus/upload.css +28 -0
- package/dist/runtime/public/scss/element-plus/var.css +29 -1
- package/dist/runtime/public/scss/element-plus/virtual-list.css +28 -0
- package/dist/runtime/public/scss/theme.css +79 -2
- package/dist/runtime/types.d.ts +7 -16
- package/package.json +1 -1
- package/dist/runtime/components/example.button.vue +0 -237
- package/dist/runtime/components/example.checkbox.vue +0 -190
- package/dist/runtime/components/example.form.vue +0 -494
- package/dist/runtime/components/example.input.vue +0 -286
- package/dist/runtime/components/example.input.vue.d.ts +0 -20
- package/dist/runtime/components/example.popover.vue +0 -161
- package/dist/runtime/components/example.radio.vue +0 -165
- package/dist/runtime/components/example.select.vue +0 -591
- package/dist/runtime/components/example.sidebar.vue +0 -104
- package/dist/runtime/components/example.tag.vue +0 -279
- package/dist/runtime/components/html-encode.vue +0 -37
- package/dist/runtime/plugins/element-extend-plugin.d.ts +0 -38
- package/dist/runtime/plugins/element-extend-plugin.js +0 -39
- package/dist/runtime/plugins/element-extend-plugin.mjs +0 -39
- package/dist/runtime/plugins/experimental-size-plugin.js +0 -13
- package/dist/runtime/plugins/experimental-size-plugin.mjs +0 -13
- /package/dist/runtime/plugins/{experimental-size-plugin.d.ts → disable-warnings-plugin.d.ts} +0 -0
- /package/dist/runtime/plugins/{theme-provider.d.ts → theme-provider-plugin.d.ts} +0 -0
- /package/dist/runtime/plugins/{theme-provider.js → theme-provider-plugin.js} +0 -0
- /package/dist/runtime/plugins/{theme-provider.mjs → theme-provider-plugin.mjs} +0 -0
|
@@ -203,6 +203,34 @@
|
|
|
203
203
|
:root {
|
|
204
204
|
--el-color-danger-light-9: #7d1f1f;
|
|
205
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
|
+
}
|
|
206
234
|
:root {
|
|
207
235
|
--el-color-success-light-1: #f0f8ed;
|
|
208
236
|
}
|
|
@@ -273,15 +301,19 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
273
301
|
}
|
|
274
302
|
**/
|
|
275
303
|
.el-avatar {
|
|
276
|
-
--el-avatar-text-color: var(--el-color-
|
|
277
|
-
--el-avatar-bg-color: var(--el-
|
|
278
|
-
--el-avatar-text-size:
|
|
279
|
-
--el-avatar-
|
|
304
|
+
--el-avatar-text-color: var(--el-color-neutral-light-4);
|
|
305
|
+
--el-avatar-bg-color: var(--el-color-white);
|
|
306
|
+
--el-avatar-text-size: 16px;
|
|
307
|
+
--el-avatar-line-height: 18px;
|
|
308
|
+
--el-avatar-icon-size: 16px;
|
|
309
|
+
--el-avatar-border-color: var(--el-color-neutral-light-3);
|
|
280
310
|
--el-avatar-border-radius: var(--el-border-radius-base);
|
|
311
|
+
--el-avatar-size: 32px;
|
|
281
312
|
--el-avatar-size-large: 56px;
|
|
282
|
-
--el-avatar-size:
|
|
283
|
-
--el-avatar-size-small:
|
|
284
|
-
--el-avatar-size:
|
|
313
|
+
--el-avatar-size-medium: 44px;
|
|
314
|
+
--el-avatar-size-small: 32px;
|
|
315
|
+
--el-avatar-size-mini: 16px;
|
|
316
|
+
--el-avatar-size: 32px;
|
|
285
317
|
display: inline-flex;
|
|
286
318
|
justify-content: center;
|
|
287
319
|
align-items: center;
|
|
@@ -293,6 +325,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
293
325
|
width: var(--el-avatar-size);
|
|
294
326
|
height: var(--el-avatar-size);
|
|
295
327
|
font-size: var(--el-avatar-text-size);
|
|
328
|
+
border: 1px solid var(--el-avatar-border-color);
|
|
329
|
+
line-height: 18px;
|
|
296
330
|
}
|
|
297
331
|
.el-avatar > img {
|
|
298
332
|
display: block;
|
|
@@ -311,10 +345,26 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
311
345
|
font-size: var(--el-avatar-icon-size);
|
|
312
346
|
}
|
|
313
347
|
|
|
348
|
+
.el-avatar--large {
|
|
349
|
+
--el-avatar-size: 56px;
|
|
350
|
+
--el-avatar-text-size: 16px;
|
|
351
|
+
--el-avatar-icon-size: 16px;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.el-avatar--medium {
|
|
355
|
+
--el-avatar-size: 44px;
|
|
356
|
+
--el-avatar-text-size: 16px;
|
|
357
|
+
--el-avatar-icon-size: 16px;
|
|
358
|
+
}
|
|
359
|
+
|
|
314
360
|
.el-avatar--small {
|
|
315
|
-
--el-avatar-size:
|
|
361
|
+
--el-avatar-size: 32px;
|
|
362
|
+
--el-avatar-text-size: 14px;
|
|
363
|
+
--el-avatar-icon-size: 14px;
|
|
316
364
|
}
|
|
317
365
|
|
|
318
|
-
.el-avatar--
|
|
319
|
-
--el-avatar-size:
|
|
366
|
+
.el-avatar--mini {
|
|
367
|
+
--el-avatar-size: 16px;
|
|
368
|
+
--el-avatar-text-size: 8px;
|
|
369
|
+
--el-avatar-icon-size: 8px;
|
|
320
370
|
}
|
|
@@ -203,6 +203,34 @@
|
|
|
203
203
|
:root {
|
|
204
204
|
--el-color-danger-light-9: #7d1f1f;
|
|
205
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
|
+
}
|
|
206
234
|
:root {
|
|
207
235
|
--el-color-success-light-1: #f0f8ed;
|
|
208
236
|
}
|
|
@@ -203,6 +203,34 @@
|
|
|
203
203
|
:root {
|
|
204
204
|
--el-color-danger-light-9: #7d1f1f;
|
|
205
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
|
+
}
|
|
206
234
|
:root {
|
|
207
235
|
--el-color-success-light-1: #f0f8ed;
|
|
208
236
|
}
|
|
@@ -275,9 +303,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
275
303
|
.el-badge {
|
|
276
304
|
--el-badge-bg-color: var(--el-color-danger);
|
|
277
305
|
--el-badge-radius: 10px;
|
|
278
|
-
--el-badge-font-size:
|
|
306
|
+
--el-badge-font-size: 8px;
|
|
279
307
|
--el-badge-padding: 6px;
|
|
280
|
-
--el-badge-size:
|
|
308
|
+
--el-badge-size: 16px;
|
|
281
309
|
position: relative;
|
|
282
310
|
vertical-align: middle;
|
|
283
311
|
display: inline-block;
|
|
@@ -203,6 +203,34 @@
|
|
|
203
203
|
:root {
|
|
204
204
|
--el-color-danger-light-9: #7d1f1f;
|
|
205
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
|
+
}
|
|
206
234
|
:root {
|
|
207
235
|
--el-color-success-light-1: #f0f8ed;
|
|
208
236
|
}
|
|
@@ -342,7 +370,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
342
370
|
--el-fill-color-darker: #e6e8eb;
|
|
343
371
|
--el-fill-color-blank: #ffffff;
|
|
344
372
|
--el-box-shadow: 0px 12px 32px 4px rgba(0, 0, 0, 0.04), 0px 8px 20px rgba(0, 0, 0, 0.08);
|
|
345
|
-
--el-box-shadow-light: 0px 0px
|
|
373
|
+
--el-box-shadow-light: 0px 1px 2px 0px rgba(26, 11, 94, 0.1019607843);
|
|
346
374
|
--el-box-shadow-lighter: 0px 0px 6px rgba(0, 0, 0, 0.12);
|
|
347
375
|
--el-box-shadow-dark: 0px 16px 48px 16px rgba(0, 0, 0, 0.08), 0px 12px 32px rgba(0, 0, 0, 0.12), 0px 8px 16px -8px rgba(0, 0, 0, 0.16);
|
|
348
376
|
--el-disabled-bg-color: var(--el-color-neutral-light-2);
|
|
@@ -484,11 +512,11 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
484
512
|
}
|
|
485
513
|
|
|
486
514
|
.el-icon--right {
|
|
487
|
-
margin-left:
|
|
515
|
+
margin-left: 8px;
|
|
488
516
|
}
|
|
489
517
|
|
|
490
518
|
.el-icon--left {
|
|
491
|
-
margin-right:
|
|
519
|
+
margin-right: 8px;
|
|
492
520
|
}
|
|
493
521
|
|
|
494
522
|
@keyframes rotating {
|
|
@@ -203,6 +203,34 @@
|
|
|
203
203
|
:root {
|
|
204
204
|
--el-color-danger-light-9: #7d1f1f;
|
|
205
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
|
+
}
|
|
206
234
|
:root {
|
|
207
235
|
--el-color-success-light-1: #f0f8ed;
|
|
208
236
|
}
|
|
@@ -273,8 +301,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
273
301
|
}
|
|
274
302
|
**/
|
|
275
303
|
.el-breadcrumb {
|
|
276
|
-
font-size:
|
|
304
|
+
font-size: 12px;
|
|
277
305
|
line-height: 1;
|
|
306
|
+
color: var(--el-color-neutral-light-5);
|
|
278
307
|
}
|
|
279
308
|
.el-breadcrumb::before,
|
|
280
309
|
.el-breadcrumb::after {
|
|
@@ -287,9 +316,21 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
287
316
|
}
|
|
288
317
|
|
|
289
318
|
.el-breadcrumb__separator {
|
|
290
|
-
margin: 0
|
|
291
|
-
|
|
292
|
-
|
|
319
|
+
margin: 0 4px;
|
|
320
|
+
color: var(--el-color-neutral-light-5);
|
|
321
|
+
line-height: 10px;
|
|
322
|
+
}
|
|
323
|
+
.el-breadcrumb__separator::before {
|
|
324
|
+
font-family: "iconsax" !important;
|
|
325
|
+
-webkit-font-smoothing: antialiased;
|
|
326
|
+
-moz-osx-font-smoothing: grayscale;
|
|
327
|
+
font-style: normal;
|
|
328
|
+
font-variant: normal;
|
|
329
|
+
font-weight: 600;
|
|
330
|
+
line-height: 1;
|
|
331
|
+
speak: never;
|
|
332
|
+
text-transform: none;
|
|
333
|
+
content: "\e932";
|
|
293
334
|
}
|
|
294
335
|
.el-breadcrumb__separator.el-icon {
|
|
295
336
|
margin: 0 6px;
|
|
@@ -308,10 +349,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
308
349
|
color: var(--el-text-color-regular);
|
|
309
350
|
}
|
|
310
351
|
.el-breadcrumb__inner.is-link, .el-breadcrumb__inner a {
|
|
311
|
-
font-weight: bold;
|
|
312
352
|
text-decoration: none;
|
|
313
353
|
transition: var(--el-transition-color);
|
|
314
|
-
color: var(--el-
|
|
354
|
+
color: var(--el-color-neutral-light-5);
|
|
315
355
|
}
|
|
316
356
|
.el-breadcrumb__inner.is-link:hover, .el-breadcrumb__inner a:hover {
|
|
317
357
|
color: var(--el-color-primary);
|
|
@@ -203,6 +203,34 @@
|
|
|
203
203
|
:root {
|
|
204
204
|
--el-color-danger-light-9: #7d1f1f;
|
|
205
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
|
+
}
|
|
206
234
|
:root {
|
|
207
235
|
--el-color-success-light-1: #f0f8ed;
|
|
208
236
|
}
|
|
@@ -294,10 +322,12 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
294
322
|
margin-left: 0;
|
|
295
323
|
}
|
|
296
324
|
.el-button-group > .el-button:first-child {
|
|
325
|
+
border-right-color: var(--el-color-primary-light-4);
|
|
297
326
|
border-top-right-radius: 0;
|
|
298
327
|
border-bottom-right-radius: 0;
|
|
299
328
|
}
|
|
300
329
|
.el-button-group > .el-button:last-child {
|
|
330
|
+
border-left-color: var(--el-color-primary-light-4);
|
|
301
331
|
border-top-left-radius: 0;
|
|
302
332
|
border-bottom-left-radius: 0;
|
|
303
333
|
}
|
|
@@ -315,10 +345,22 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
315
345
|
}
|
|
316
346
|
.el-button-group > .el-button:not(:first-child):not(:last-child) {
|
|
317
347
|
border-radius: 0;
|
|
348
|
+
border-left-color: var(--el-color-primary-light-4);
|
|
349
|
+
border-right-color: var(--el-color-primary-light-4);
|
|
318
350
|
}
|
|
319
351
|
.el-button-group > .el-button:not(:last-child) {
|
|
320
352
|
margin-right: -1px;
|
|
321
353
|
}
|
|
354
|
+
.el-button-group > .el-button.is-disabled:first-child {
|
|
355
|
+
border-right-color: var(--el-color-primary-light-1);
|
|
356
|
+
}
|
|
357
|
+
.el-button-group > .el-button.is-disabled:last-child {
|
|
358
|
+
border-left-color: var(--el-color-primary-light-1);
|
|
359
|
+
}
|
|
360
|
+
.el-button-group > .el-button.is-disabled:not(:first-child):not(:last-child) {
|
|
361
|
+
border-left-color: var(--el-color-primary-light-1);
|
|
362
|
+
border-right-color: var(--el-color-primary-light-1);
|
|
363
|
+
}
|
|
322
364
|
.el-button-group > .el-button:hover, .el-button-group > .el-button:focus, .el-button-group > .el-button:active {
|
|
323
365
|
z-index: 1;
|
|
324
366
|
}
|
|
@@ -332,82 +374,162 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
332
374
|
border-left-color: var(--el-button-divide-border-color);
|
|
333
375
|
}
|
|
334
376
|
.el-button-group .el-button--primary:first-child {
|
|
335
|
-
border-right-color: var(--el-
|
|
377
|
+
border-right-color: var(--el-color-primary-light-4);
|
|
336
378
|
}
|
|
337
379
|
.el-button-group .el-button--primary:last-child {
|
|
338
|
-
border-left-color: var(--el-
|
|
380
|
+
border-left-color: var(--el-color-primary-light-4);
|
|
339
381
|
}
|
|
340
382
|
.el-button-group .el-button--primary:not(:first-child):not(:last-child) {
|
|
341
|
-
border-left-color: var(--el-
|
|
342
|
-
border-right-color: var(--el-
|
|
383
|
+
border-left-color: var(--el-color-primary-light-4);
|
|
384
|
+
border-right-color: var(--el-color-primary-light-4);
|
|
385
|
+
}
|
|
386
|
+
.el-button-group .el-button--primary.is-disabled:first-child {
|
|
387
|
+
border-right-color: var(--el-color-primary-light-1);
|
|
388
|
+
}
|
|
389
|
+
.el-button-group .el-button--primary.is-disabled:last-child {
|
|
390
|
+
border-left-color: var(--el-color-primary-light-1);
|
|
391
|
+
}
|
|
392
|
+
.el-button-group .el-button--primary.is-disabled:not(:first-child):not(:last-child) {
|
|
393
|
+
border-left-color: var(--el-color-primary-light-1);
|
|
394
|
+
border-right-color: var(--el-color-primary-light-1);
|
|
343
395
|
}
|
|
344
396
|
.el-button-group .el-button--secondary:first-child {
|
|
345
|
-
border-right-color: var(--el-
|
|
397
|
+
border-right-color: var(--el-color-secondary-light-4);
|
|
346
398
|
}
|
|
347
399
|
.el-button-group .el-button--secondary:last-child {
|
|
348
|
-
border-left-color: var(--el-
|
|
400
|
+
border-left-color: var(--el-color-secondary-light-4);
|
|
349
401
|
}
|
|
350
402
|
.el-button-group .el-button--secondary:not(:first-child):not(:last-child) {
|
|
351
|
-
border-left-color: var(--el-
|
|
352
|
-
border-right-color: var(--el-
|
|
403
|
+
border-left-color: var(--el-color-secondary-light-4);
|
|
404
|
+
border-right-color: var(--el-color-secondary-light-4);
|
|
405
|
+
}
|
|
406
|
+
.el-button-group .el-button--secondary.is-disabled:first-child {
|
|
407
|
+
border-right-color: var(--el-color-secondary-light-1);
|
|
408
|
+
}
|
|
409
|
+
.el-button-group .el-button--secondary.is-disabled:last-child {
|
|
410
|
+
border-left-color: var(--el-color-secondary-light-1);
|
|
411
|
+
}
|
|
412
|
+
.el-button-group .el-button--secondary.is-disabled:not(:first-child):not(:last-child) {
|
|
413
|
+
border-left-color: var(--el-color-secondary-light-1);
|
|
414
|
+
border-right-color: var(--el-color-secondary-light-1);
|
|
353
415
|
}
|
|
354
416
|
.el-button-group .el-button--neutral:first-child {
|
|
355
|
-
border-right-color: var(--el-
|
|
417
|
+
border-right-color: var(--el-color-neutral-light-4);
|
|
356
418
|
}
|
|
357
419
|
.el-button-group .el-button--neutral:last-child {
|
|
358
|
-
border-left-color: var(--el-
|
|
420
|
+
border-left-color: var(--el-color-neutral-light-4);
|
|
359
421
|
}
|
|
360
422
|
.el-button-group .el-button--neutral:not(:first-child):not(:last-child) {
|
|
361
|
-
border-left-color: var(--el-
|
|
362
|
-
border-right-color: var(--el-
|
|
423
|
+
border-left-color: var(--el-color-neutral-light-4);
|
|
424
|
+
border-right-color: var(--el-color-neutral-light-4);
|
|
425
|
+
}
|
|
426
|
+
.el-button-group .el-button--neutral.is-disabled:first-child {
|
|
427
|
+
border-right-color: var(--el-color-neutral-light-1);
|
|
428
|
+
}
|
|
429
|
+
.el-button-group .el-button--neutral.is-disabled:last-child {
|
|
430
|
+
border-left-color: var(--el-color-neutral-light-1);
|
|
431
|
+
}
|
|
432
|
+
.el-button-group .el-button--neutral.is-disabled:not(:first-child):not(:last-child) {
|
|
433
|
+
border-left-color: var(--el-color-neutral-light-1);
|
|
434
|
+
border-right-color: var(--el-color-neutral-light-1);
|
|
363
435
|
}
|
|
364
436
|
.el-button-group .el-button--success:first-child {
|
|
365
|
-
border-right-color: var(--el-
|
|
437
|
+
border-right-color: var(--el-color-success-light-4);
|
|
366
438
|
}
|
|
367
439
|
.el-button-group .el-button--success:last-child {
|
|
368
|
-
border-left-color: var(--el-
|
|
440
|
+
border-left-color: var(--el-color-success-light-4);
|
|
369
441
|
}
|
|
370
442
|
.el-button-group .el-button--success:not(:first-child):not(:last-child) {
|
|
371
|
-
border-left-color: var(--el-
|
|
372
|
-
border-right-color: var(--el-
|
|
443
|
+
border-left-color: var(--el-color-success-light-4);
|
|
444
|
+
border-right-color: var(--el-color-success-light-4);
|
|
445
|
+
}
|
|
446
|
+
.el-button-group .el-button--success.is-disabled:first-child {
|
|
447
|
+
border-right-color: var(--el-color-success-light-1);
|
|
448
|
+
}
|
|
449
|
+
.el-button-group .el-button--success.is-disabled:last-child {
|
|
450
|
+
border-left-color: var(--el-color-success-light-1);
|
|
451
|
+
}
|
|
452
|
+
.el-button-group .el-button--success.is-disabled:not(:first-child):not(:last-child) {
|
|
453
|
+
border-left-color: var(--el-color-success-light-1);
|
|
454
|
+
border-right-color: var(--el-color-success-light-1);
|
|
373
455
|
}
|
|
374
456
|
.el-button-group .el-button--warning:first-child {
|
|
375
|
-
border-right-color: var(--el-
|
|
457
|
+
border-right-color: var(--el-color-warning-light-4);
|
|
376
458
|
}
|
|
377
459
|
.el-button-group .el-button--warning:last-child {
|
|
378
|
-
border-left-color: var(--el-
|
|
460
|
+
border-left-color: var(--el-color-warning-light-4);
|
|
379
461
|
}
|
|
380
462
|
.el-button-group .el-button--warning:not(:first-child):not(:last-child) {
|
|
381
|
-
border-left-color: var(--el-
|
|
382
|
-
border-right-color: var(--el-
|
|
463
|
+
border-left-color: var(--el-color-warning-light-4);
|
|
464
|
+
border-right-color: var(--el-color-warning-light-4);
|
|
465
|
+
}
|
|
466
|
+
.el-button-group .el-button--warning.is-disabled:first-child {
|
|
467
|
+
border-right-color: var(--el-color-warning-light-1);
|
|
468
|
+
}
|
|
469
|
+
.el-button-group .el-button--warning.is-disabled:last-child {
|
|
470
|
+
border-left-color: var(--el-color-warning-light-1);
|
|
471
|
+
}
|
|
472
|
+
.el-button-group .el-button--warning.is-disabled:not(:first-child):not(:last-child) {
|
|
473
|
+
border-left-color: var(--el-color-warning-light-1);
|
|
474
|
+
border-right-color: var(--el-color-warning-light-1);
|
|
383
475
|
}
|
|
384
476
|
.el-button-group .el-button--danger:first-child {
|
|
385
|
-
border-right-color: var(--el-
|
|
477
|
+
border-right-color: var(--el-color-danger-light-4);
|
|
386
478
|
}
|
|
387
479
|
.el-button-group .el-button--danger:last-child {
|
|
388
|
-
border-left-color: var(--el-
|
|
480
|
+
border-left-color: var(--el-color-danger-light-4);
|
|
389
481
|
}
|
|
390
482
|
.el-button-group .el-button--danger:not(:first-child):not(:last-child) {
|
|
391
|
-
border-left-color: var(--el-
|
|
392
|
-
border-right-color: var(--el-
|
|
483
|
+
border-left-color: var(--el-color-danger-light-4);
|
|
484
|
+
border-right-color: var(--el-color-danger-light-4);
|
|
485
|
+
}
|
|
486
|
+
.el-button-group .el-button--danger.is-disabled:first-child {
|
|
487
|
+
border-right-color: var(--el-color-danger-light-1);
|
|
488
|
+
}
|
|
489
|
+
.el-button-group .el-button--danger.is-disabled:last-child {
|
|
490
|
+
border-left-color: var(--el-color-danger-light-1);
|
|
491
|
+
}
|
|
492
|
+
.el-button-group .el-button--danger.is-disabled:not(:first-child):not(:last-child) {
|
|
493
|
+
border-left-color: var(--el-color-danger-light-1);
|
|
494
|
+
border-right-color: var(--el-color-danger-light-1);
|
|
393
495
|
}
|
|
394
496
|
.el-button-group .el-button--error:first-child {
|
|
395
|
-
border-right-color: var(--el-
|
|
497
|
+
border-right-color: var(--el-color-error-light-4);
|
|
396
498
|
}
|
|
397
499
|
.el-button-group .el-button--error:last-child {
|
|
398
|
-
border-left-color: var(--el-
|
|
500
|
+
border-left-color: var(--el-color-error-light-4);
|
|
399
501
|
}
|
|
400
502
|
.el-button-group .el-button--error:not(:first-child):not(:last-child) {
|
|
401
|
-
border-left-color: var(--el-
|
|
402
|
-
border-right-color: var(--el-
|
|
503
|
+
border-left-color: var(--el-color-error-light-4);
|
|
504
|
+
border-right-color: var(--el-color-error-light-4);
|
|
505
|
+
}
|
|
506
|
+
.el-button-group .el-button--error.is-disabled:first-child {
|
|
507
|
+
border-right-color: var(--el-color-error-light-1);
|
|
508
|
+
}
|
|
509
|
+
.el-button-group .el-button--error.is-disabled:last-child {
|
|
510
|
+
border-left-color: var(--el-color-error-light-1);
|
|
511
|
+
}
|
|
512
|
+
.el-button-group .el-button--error.is-disabled:not(:first-child):not(:last-child) {
|
|
513
|
+
border-left-color: var(--el-color-error-light-1);
|
|
514
|
+
border-right-color: var(--el-color-error-light-1);
|
|
403
515
|
}
|
|
404
516
|
.el-button-group .el-button--info:first-child {
|
|
405
|
-
border-right-color: var(--el-
|
|
517
|
+
border-right-color: var(--el-color-info-light-4);
|
|
406
518
|
}
|
|
407
519
|
.el-button-group .el-button--info:last-child {
|
|
408
|
-
border-left-color: var(--el-
|
|
520
|
+
border-left-color: var(--el-color-info-light-4);
|
|
409
521
|
}
|
|
410
522
|
.el-button-group .el-button--info:not(:first-child):not(:last-child) {
|
|
411
|
-
border-left-color: var(--el-
|
|
412
|
-
border-right-color: var(--el-
|
|
523
|
+
border-left-color: var(--el-color-info-light-4);
|
|
524
|
+
border-right-color: var(--el-color-info-light-4);
|
|
525
|
+
}
|
|
526
|
+
.el-button-group .el-button--info.is-disabled:first-child {
|
|
527
|
+
border-right-color: var(--el-color-info-light-1);
|
|
528
|
+
}
|
|
529
|
+
.el-button-group .el-button--info.is-disabled:last-child {
|
|
530
|
+
border-left-color: var(--el-color-info-light-1);
|
|
531
|
+
}
|
|
532
|
+
.el-button-group .el-button--info.is-disabled:not(:first-child):not(:last-child) {
|
|
533
|
+
border-left-color: var(--el-color-info-light-1);
|
|
534
|
+
border-right-color: var(--el-color-info-light-1);
|
|
413
535
|
}
|