@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,8 +301,12 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
273
301
|
}
|
|
274
302
|
**/
|
|
275
303
|
.el-switch {
|
|
276
|
-
--el-switch-on-color: var(--el-color-
|
|
277
|
-
--el-switch-
|
|
304
|
+
--el-switch-on-color: var(--el-color-success);
|
|
305
|
+
--el-switch-on-box-shadow: 0 0 0 4px var(--el-color-success-light-2);
|
|
306
|
+
--el-switch-off-box-shadow: 0 0 0 4px var(--el-color-neutral-light-3);
|
|
307
|
+
--el-switch-off-color: var(--el-color-neutral-light-7);
|
|
308
|
+
--el-switch-on-disabled-color: var(--el-color-neutral-light-3);
|
|
309
|
+
--el-switch-off-disabled-color: var(--el-color-success-light-3);
|
|
278
310
|
}
|
|
279
311
|
|
|
280
312
|
.el-switch {
|
|
@@ -283,11 +315,31 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
283
315
|
position: relative;
|
|
284
316
|
font-size: 14px;
|
|
285
317
|
line-height: 20px;
|
|
286
|
-
height:
|
|
318
|
+
height: 40px;
|
|
287
319
|
vertical-align: middle;
|
|
288
320
|
}
|
|
321
|
+
.el-switch:active .el-switch__core {
|
|
322
|
+
box-shadow: var(--el-switch-off-box-shadow);
|
|
323
|
+
transition: box-shadow 0.1s ease-in-out;
|
|
324
|
+
}
|
|
325
|
+
.el-switch:active.is-checked .el-switch__core {
|
|
326
|
+
box-shadow: var(--el-switch-on-box-shadow);
|
|
327
|
+
transition: box-shadow 0.1s ease-in-out;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.el-switch:active.is-disabled .el-switch__core {
|
|
331
|
+
box-shadow: none;
|
|
332
|
+
}
|
|
333
|
+
|
|
289
334
|
.el-switch.is-disabled .el-switch__core, .el-switch.is-disabled .el-switch__label {
|
|
290
335
|
cursor: not-allowed;
|
|
336
|
+
background-color: var(--el-switch-on-disabled-color);
|
|
337
|
+
border-color: var(--el-switch-on-disabled-color);
|
|
338
|
+
}
|
|
339
|
+
.el-switch.is-disabled.is-checked .el-switch__core, .el-switch.is-disabled.is-checked .el-switch__label {
|
|
340
|
+
cursor: not-allowed;
|
|
341
|
+
background-color: var(--el-switch-off-disabled-color);
|
|
342
|
+
border-color: var(--el-switch-off-disabled-color);
|
|
291
343
|
}
|
|
292
344
|
|
|
293
345
|
.el-switch__label {
|
|
@@ -298,18 +350,18 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
298
350
|
font-weight: 500;
|
|
299
351
|
cursor: pointer;
|
|
300
352
|
vertical-align: middle;
|
|
301
|
-
color: var(--el-
|
|
353
|
+
color: var(--el-color-neutral-light-9);
|
|
302
354
|
}
|
|
303
355
|
.el-switch__label.is-active {
|
|
304
|
-
color: var(--el-color-
|
|
356
|
+
color: var(--el-color-neutral-light-9);
|
|
305
357
|
}
|
|
306
358
|
|
|
307
359
|
.el-switch__label--left {
|
|
308
|
-
margin-right:
|
|
360
|
+
margin-right: 16px;
|
|
309
361
|
}
|
|
310
362
|
|
|
311
363
|
.el-switch__label--right {
|
|
312
|
-
margin-left:
|
|
364
|
+
margin-left: 16px;
|
|
313
365
|
}
|
|
314
366
|
|
|
315
367
|
.el-switch__label * {
|
|
@@ -395,10 +447,6 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
395
447
|
padding: 0 calc(16px + 2px) 0 4px;
|
|
396
448
|
}
|
|
397
449
|
|
|
398
|
-
.el-switch.is-disabled {
|
|
399
|
-
opacity: 0.6;
|
|
400
|
-
}
|
|
401
|
-
|
|
402
450
|
.el-switch--wide .el-switch__label.el-switch__label--left span {
|
|
403
451
|
left: 10px;
|
|
404
452
|
}
|
|
@@ -429,7 +477,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
429
477
|
}
|
|
430
478
|
.el-switch--large .el-switch__core .el-switch__inner {
|
|
431
479
|
height: 20px;
|
|
432
|
-
padding: 0
|
|
480
|
+
padding: 0 116px 0 calc(20px + 2px);
|
|
433
481
|
}
|
|
434
482
|
.el-switch--large .el-switch__core .el-switch__action {
|
|
435
483
|
width: 20px;
|
|
@@ -440,23 +488,47 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
440
488
|
left: calc(100% - 21px);
|
|
441
489
|
}
|
|
442
490
|
.el-switch--large.is-checked .el-switch__core .el-switch__inner {
|
|
443
|
-
padding: 0 calc(20px + 2px) 0
|
|
491
|
+
padding: 0 calc(20px + 2px) 0 116px;
|
|
444
492
|
}
|
|
445
493
|
|
|
494
|
+
.el-switch--medium {
|
|
495
|
+
font-size: 14px;
|
|
496
|
+
line-height: 20px;
|
|
497
|
+
height: 36px;
|
|
498
|
+
}
|
|
499
|
+
.el-switch--medium .el-switch__label {
|
|
500
|
+
height: 20px;
|
|
501
|
+
font-size: 14px;
|
|
502
|
+
}
|
|
503
|
+
.el-switch--medium .el-switch__label * {
|
|
504
|
+
font-size: 14px;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.el-switch--medium .el-switch__core {
|
|
508
|
+
min-width: 36px;
|
|
509
|
+
height: 20px;
|
|
510
|
+
border-radius: 10px;
|
|
511
|
+
}
|
|
446
512
|
.el-switch--medium .el-switch__core .el-switch__inner {
|
|
447
|
-
|
|
513
|
+
height: 16px;
|
|
514
|
+
padding: 0 0 calc(16px + 2px);
|
|
448
515
|
}
|
|
516
|
+
.el-switch--medium .el-switch__core .el-switch__action {
|
|
517
|
+
width: 16px;
|
|
518
|
+
height: 16px;
|
|
519
|
+
}
|
|
520
|
+
|
|
449
521
|
.el-switch--medium.is-checked .el-switch__core .el-switch__action {
|
|
450
|
-
left: calc(100% -
|
|
522
|
+
left: calc(100% - 17px);
|
|
451
523
|
}
|
|
452
524
|
.el-switch--medium.is-checked .el-switch__core .el-switch__inner {
|
|
453
|
-
padding: 0 calc( + 2px) 0;
|
|
525
|
+
padding: 0 calc(16px + 2px) 0;
|
|
454
526
|
}
|
|
455
527
|
|
|
456
528
|
.el-switch--small {
|
|
457
529
|
font-size: 12px;
|
|
458
530
|
line-height: 16px;
|
|
459
|
-
height:
|
|
531
|
+
height: 30px;
|
|
460
532
|
}
|
|
461
533
|
.el-switch--small .el-switch__label {
|
|
462
534
|
height: 16px;
|
|
@@ -487,12 +559,36 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
487
559
|
padding: 0 calc(12px + 2px) 0 2px;
|
|
488
560
|
}
|
|
489
561
|
|
|
562
|
+
.el-switch--mini {
|
|
563
|
+
font-size: 12px;
|
|
564
|
+
line-height: 12px;
|
|
565
|
+
height: 28px;
|
|
566
|
+
}
|
|
567
|
+
.el-switch--mini .el-switch__label {
|
|
568
|
+
height: 12px;
|
|
569
|
+
font-size: 12px;
|
|
570
|
+
}
|
|
571
|
+
.el-switch--mini .el-switch__label * {
|
|
572
|
+
font-size: 12px;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
.el-switch--mini .el-switch__core {
|
|
576
|
+
min-width: 20px;
|
|
577
|
+
height: 12px;
|
|
578
|
+
border-radius: 6px;
|
|
579
|
+
}
|
|
490
580
|
.el-switch--mini .el-switch__core .el-switch__inner {
|
|
491
|
-
|
|
581
|
+
height: 8px;
|
|
582
|
+
padding: 0 0 calc(8px + 2px);
|
|
583
|
+
}
|
|
584
|
+
.el-switch--mini .el-switch__core .el-switch__action {
|
|
585
|
+
width: 8px;
|
|
586
|
+
height: 8px;
|
|
492
587
|
}
|
|
588
|
+
|
|
493
589
|
.el-switch--mini.is-checked .el-switch__core .el-switch__action {
|
|
494
|
-
left: calc(100% -
|
|
590
|
+
left: calc(100% - 9px);
|
|
495
591
|
}
|
|
496
592
|
.el-switch--mini.is-checked .el-switch__core .el-switch__inner {
|
|
497
|
-
padding: 0 calc( + 2px) 0;
|
|
593
|
+
padding: 0 calc(8px + 2px) 0;
|
|
498
594
|
}
|
|
@@ -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
|
}
|
|
@@ -299,7 +327,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
299
327
|
font-size: var(--el-font-size-base);
|
|
300
328
|
}
|
|
301
329
|
.el-table-filter__list-item:hover {
|
|
302
|
-
background-color: var(--el-color-
|
|
330
|
+
background-color: var(--el-color-white);
|
|
303
331
|
color: var(--el-color-primary);
|
|
304
332
|
}
|
|
305
333
|
.el-table-filter__list-item.is-active {
|
|
@@ -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
|
}
|
|
@@ -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
|
}
|
|
@@ -393,7 +421,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
393
421
|
}
|
|
394
422
|
|
|
395
423
|
.el-tabs__item {
|
|
396
|
-
padding: 0
|
|
424
|
+
padding: 0 12px;
|
|
397
425
|
height: var(--el-tabs-header-height);
|
|
398
426
|
box-sizing: border-box;
|
|
399
427
|
display: flex;
|
|
@@ -402,7 +430,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
402
430
|
list-style: none;
|
|
403
431
|
font-size: var(--el-font-size-base);
|
|
404
432
|
font-weight: 500;
|
|
405
|
-
color: var(--el-
|
|
433
|
+
color: var(--el-color-neutral-light-4);
|
|
406
434
|
position: relative;
|
|
407
435
|
}
|
|
408
436
|
.el-tabs__item:focus, .el-tabs__item:focus:active {
|
|
@@ -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
|
}
|
|
@@ -341,4 +369,10 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
341
369
|
}
|
|
342
370
|
.el-text > .el-icon {
|
|
343
371
|
vertical-align: -2px;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
mark.el-text {
|
|
375
|
+
border: 1px solid #eaea0d;
|
|
376
|
+
border-radius: 4px;
|
|
377
|
+
padding: 0 4px;
|
|
344
378
|
}
|
|
@@ -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
|
}
|
|
@@ -658,11 +686,44 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
658
686
|
|
|
659
687
|
.el-picker-panel__footer {
|
|
660
688
|
border-top: 1px solid var(--el-datepicker-inner-border-color);
|
|
661
|
-
padding:
|
|
689
|
+
padding: 16px;
|
|
662
690
|
text-align: right;
|
|
663
691
|
background-color: var(--el-bg-color-overlay);
|
|
664
692
|
position: relative;
|
|
665
693
|
font-size: 0;
|
|
694
|
+
display: flex;
|
|
695
|
+
gap: 30px;
|
|
696
|
+
border-bottom-left-radius: 4px;
|
|
697
|
+
border-bottom-right-radius: 4px;
|
|
698
|
+
}
|
|
699
|
+
.el-picker-panel__footer .el-button {
|
|
700
|
+
display: flex;
|
|
701
|
+
flex-basis: 100%;
|
|
702
|
+
}
|
|
703
|
+
.el-picker-panel__footer .el-button.is-text {
|
|
704
|
+
--el-button-active-border-color: var(--el-color-primary-light-6);
|
|
705
|
+
border: 1px solid var(--el-color-primary-light-5);
|
|
706
|
+
}
|
|
707
|
+
.el-picker-panel__footer .el-button.is-text:hover {
|
|
708
|
+
--el-button-text-color: var(--el-color-primary-light-4);
|
|
709
|
+
border: 1px solid var(--el-color-primary-light-4);
|
|
710
|
+
background-color: transparent;
|
|
711
|
+
}
|
|
712
|
+
.el-picker-panel__footer .el-button.is-text:active {
|
|
713
|
+
--el-button-text-color: var(--el-color-primary-light-6);
|
|
714
|
+
--el-button-border-color: var(--el-color-primary-light-6);
|
|
715
|
+
border: 1px solid var(--el-color-primary-light-6);
|
|
716
|
+
background-color: transparent;
|
|
717
|
+
}
|
|
718
|
+
.el-picker-panel__footer .el-button.is-plain {
|
|
719
|
+
--el-button-hover-text-color: var(--el-color-white);
|
|
720
|
+
--el-button-hover-bg-color: var(--el-color-primary-light-4);
|
|
721
|
+
--el-button-hover-border-color: var(--el-color-primary-light-4);
|
|
722
|
+
--el-button-active-text-color: var(--el-button-hover-text-color);
|
|
723
|
+
--el-button-active-bg-color: var(--el-color-primary-light-6);
|
|
724
|
+
--el-button-active-border-color: var(--el-color-primary-light-6);
|
|
725
|
+
--el-button-bg-color: var(--el-color-primary-light-5);
|
|
726
|
+
--el-button-text-color: var(--el-color-white);
|
|
666
727
|
}
|
|
667
728
|
|
|
668
729
|
.el-picker-panel__shortcut {
|
|
@@ -671,9 +732,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
671
732
|
border: 0;
|
|
672
733
|
background-color: transparent;
|
|
673
734
|
line-height: 28px;
|
|
674
|
-
font-size:
|
|
675
|
-
color: var(--el-
|
|
676
|
-
padding-left:
|
|
735
|
+
font-size: 12px;
|
|
736
|
+
color: var(--el-color-neutral-light-7);
|
|
737
|
+
padding-left: 16px;
|
|
677
738
|
text-align: left;
|
|
678
739
|
outline: none;
|
|
679
740
|
cursor: pointer;
|
|
@@ -709,7 +770,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
709
770
|
background: transparent;
|
|
710
771
|
cursor: pointer;
|
|
711
772
|
outline: none;
|
|
712
|
-
|
|
773
|
+
width: 24px;
|
|
713
774
|
}
|
|
714
775
|
.el-picker-panel__icon-btn:hover {
|
|
715
776
|
color: var(--el-datepicker-hover-text-color);
|
|
@@ -741,9 +802,11 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
741
802
|
width: 110px;
|
|
742
803
|
border-right: 1px solid var(--el-datepicker-inner-border-color);
|
|
743
804
|
box-sizing: border-box;
|
|
744
|
-
padding-top:
|
|
805
|
+
padding-top: 16px;
|
|
745
806
|
background-color: var(--el-bg-color-overlay);
|
|
746
807
|
overflow: auto;
|
|
808
|
+
border-top-left-radius: 4px;
|
|
809
|
+
border-bottom-left-radius: 4px;
|
|
747
810
|
}
|
|
748
811
|
|
|
749
812
|
.el-picker-panel *[slot=sidebar] + .el-picker-panel__body,
|
|
@@ -824,16 +887,15 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
824
887
|
.el-time-spinner__item {
|
|
825
888
|
height: 32px;
|
|
826
889
|
line-height: 32px;
|
|
827
|
-
font-size:
|
|
828
|
-
color: var(--el-
|
|
890
|
+
font-size: 14px;
|
|
891
|
+
color: var(--el-color-neutral-light-7);
|
|
829
892
|
}
|
|
830
893
|
.el-time-spinner__item:hover:not(.is-disabled):not(.is-active) {
|
|
831
894
|
background: var(--el-fill-color-light);
|
|
832
895
|
cursor: pointer;
|
|
833
896
|
}
|
|
834
897
|
.el-time-spinner__item.is-active:not(.is-disabled) {
|
|
835
|
-
color: var(--el-
|
|
836
|
-
font-weight: bold;
|
|
898
|
+
color: var(--el-color-primary);
|
|
837
899
|
}
|
|
838
900
|
.el-time-spinner__item.is-disabled {
|
|
839
901
|
color: var(--el-text-color-placeholder);
|
|
@@ -876,8 +938,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
876
938
|
padding-left: 50%;
|
|
877
939
|
margin-right: 12%;
|
|
878
940
|
margin-left: 12%;
|
|
879
|
-
border-top: 1px solid var(--el-
|
|
880
|
-
border-bottom: 1px solid var(--el-
|
|
941
|
+
border-top: 1px solid var(--el-color-neutral-light-4);
|
|
942
|
+
border-bottom: 1px solid var(--el-color-neutral-light-4);
|
|
881
943
|
}
|
|
882
944
|
.el-time-panel__content.has-seconds::after {
|
|
883
945
|
left: 66.6666666667%;
|
|
@@ -887,28 +949,40 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
887
949
|
}
|
|
888
950
|
|
|
889
951
|
.el-time-panel__footer {
|
|
890
|
-
border-top: 1px solid var(--el-
|
|
891
|
-
padding:
|
|
892
|
-
height: 36px;
|
|
952
|
+
border-top: 1px solid var(--el-color-neutral-light-4, var(--el-border-color-light));
|
|
953
|
+
padding: 16px;
|
|
893
954
|
line-height: 25px;
|
|
894
955
|
text-align: right;
|
|
895
956
|
box-sizing: border-box;
|
|
957
|
+
display: flex;
|
|
958
|
+
align-items: center;
|
|
959
|
+
gap: 16px;
|
|
896
960
|
}
|
|
897
961
|
|
|
898
962
|
.el-time-panel__btn {
|
|
899
|
-
|
|
900
|
-
line-height: 28px;
|
|
901
|
-
padding: 0 5px;
|
|
902
|
-
margin: 0 5px;
|
|
903
|
-
cursor: pointer;
|
|
904
|
-
background-color: transparent;
|
|
905
|
-
outline: none;
|
|
906
|
-
font-size: 12px;
|
|
907
|
-
color: var(--el-text-color-primary);
|
|
963
|
+
flex-basis: 100%;
|
|
908
964
|
}
|
|
909
965
|
.el-time-panel__btn.confirm {
|
|
910
|
-
|
|
911
|
-
|
|
966
|
+
@apply el-button--small el-button el-button--primary;
|
|
967
|
+
font-weight: 400;
|
|
968
|
+
}
|
|
969
|
+
.el-time-panel__btn.cancel {
|
|
970
|
+
@apply el-button--small is-plain;
|
|
971
|
+
--el-button-text-color: var(--el-color-primary-light-5);
|
|
972
|
+
line-height: normal;
|
|
973
|
+
border: 1px solid var(--el-color-primary-light-5);
|
|
974
|
+
color: var(--el-button-text-color);
|
|
975
|
+
}
|
|
976
|
+
.el-time-panel__btn.cancel:hover {
|
|
977
|
+
--el-button-text-color: var(--el-color-primary-light-4);
|
|
978
|
+
border: 1px solid var(--el-color-primary-light-4);
|
|
979
|
+
background-color: transparent;
|
|
980
|
+
}
|
|
981
|
+
.el-time-panel__btn.cancel:active {
|
|
982
|
+
--el-button-text-color: var(--el-color-primary-light-6);
|
|
983
|
+
--el-button-border-color: var(--el-color-primary-light-6);
|
|
984
|
+
border: 1px solid var(--el-color-primary-light-6);
|
|
985
|
+
background-color: transparent;
|
|
912
986
|
}
|
|
913
987
|
|
|
914
988
|
.el-time-range-picker {
|
|
@@ -918,25 +992,32 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
918
992
|
.el-time-range-picker__content {
|
|
919
993
|
position: relative;
|
|
920
994
|
text-align: center;
|
|
921
|
-
padding:
|
|
995
|
+
padding: 24px 30px;
|
|
922
996
|
z-index: 1;
|
|
997
|
+
display: flex;
|
|
998
|
+
gap: 30px;
|
|
923
999
|
}
|
|
924
1000
|
|
|
925
1001
|
.el-time-range-picker__cell {
|
|
926
1002
|
box-sizing: border-box;
|
|
927
1003
|
margin: 0;
|
|
928
|
-
padding:
|
|
1004
|
+
padding: 0;
|
|
929
1005
|
width: 50%;
|
|
930
1006
|
display: inline-block;
|
|
931
1007
|
}
|
|
932
1008
|
|
|
933
1009
|
.el-time-range-picker__header {
|
|
934
|
-
margin-bottom:
|
|
1010
|
+
margin-bottom: 16px;
|
|
935
1011
|
text-align: center;
|
|
936
1012
|
font-size: 14px;
|
|
1013
|
+
font-weight: 500;
|
|
1014
|
+
line-height: 14px;
|
|
1015
|
+
display: flex;
|
|
1016
|
+
align-items: flex-start;
|
|
1017
|
+
justify-content: flex-start;
|
|
937
1018
|
}
|
|
938
1019
|
|
|
939
1020
|
.el-time-range-picker__body {
|
|
940
|
-
border-radius:
|
|
1021
|
+
border-radius: 4px;
|
|
941
1022
|
border: 1px solid var(--el-datepicker-border-color);
|
|
942
1023
|
}
|