@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
|
}
|
|
@@ -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
|
}
|
|
@@ -297,11 +325,44 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
297
325
|
|
|
298
326
|
.el-picker-panel__footer {
|
|
299
327
|
border-top: 1px solid var(--el-datepicker-inner-border-color);
|
|
300
|
-
padding:
|
|
328
|
+
padding: 16px;
|
|
301
329
|
text-align: right;
|
|
302
330
|
background-color: var(--el-bg-color-overlay);
|
|
303
331
|
position: relative;
|
|
304
332
|
font-size: 0;
|
|
333
|
+
display: flex;
|
|
334
|
+
gap: 30px;
|
|
335
|
+
border-bottom-left-radius: 4px;
|
|
336
|
+
border-bottom-right-radius: 4px;
|
|
337
|
+
}
|
|
338
|
+
.el-picker-panel__footer .el-button {
|
|
339
|
+
display: flex;
|
|
340
|
+
flex-basis: 100%;
|
|
341
|
+
}
|
|
342
|
+
.el-picker-panel__footer .el-button.is-text {
|
|
343
|
+
--el-button-active-border-color: var(--el-color-primary-light-6);
|
|
344
|
+
border: 1px solid var(--el-color-primary-light-5);
|
|
345
|
+
}
|
|
346
|
+
.el-picker-panel__footer .el-button.is-text:hover {
|
|
347
|
+
--el-button-text-color: var(--el-color-primary-light-4);
|
|
348
|
+
border: 1px solid var(--el-color-primary-light-4);
|
|
349
|
+
background-color: transparent;
|
|
350
|
+
}
|
|
351
|
+
.el-picker-panel__footer .el-button.is-text:active {
|
|
352
|
+
--el-button-text-color: var(--el-color-primary-light-6);
|
|
353
|
+
--el-button-border-color: var(--el-color-primary-light-6);
|
|
354
|
+
border: 1px solid var(--el-color-primary-light-6);
|
|
355
|
+
background-color: transparent;
|
|
356
|
+
}
|
|
357
|
+
.el-picker-panel__footer .el-button.is-plain {
|
|
358
|
+
--el-button-hover-text-color: var(--el-color-white);
|
|
359
|
+
--el-button-hover-bg-color: var(--el-color-primary-light-4);
|
|
360
|
+
--el-button-hover-border-color: var(--el-color-primary-light-4);
|
|
361
|
+
--el-button-active-text-color: var(--el-button-hover-text-color);
|
|
362
|
+
--el-button-active-bg-color: var(--el-color-primary-light-6);
|
|
363
|
+
--el-button-active-border-color: var(--el-color-primary-light-6);
|
|
364
|
+
--el-button-bg-color: var(--el-color-primary-light-5);
|
|
365
|
+
--el-button-text-color: var(--el-color-white);
|
|
305
366
|
}
|
|
306
367
|
|
|
307
368
|
.el-picker-panel__shortcut {
|
|
@@ -310,9 +371,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
310
371
|
border: 0;
|
|
311
372
|
background-color: transparent;
|
|
312
373
|
line-height: 28px;
|
|
313
|
-
font-size:
|
|
314
|
-
color: var(--el-
|
|
315
|
-
padding-left:
|
|
374
|
+
font-size: 12px;
|
|
375
|
+
color: var(--el-color-neutral-light-7);
|
|
376
|
+
padding-left: 16px;
|
|
316
377
|
text-align: left;
|
|
317
378
|
outline: none;
|
|
318
379
|
cursor: pointer;
|
|
@@ -348,7 +409,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
348
409
|
background: transparent;
|
|
349
410
|
cursor: pointer;
|
|
350
411
|
outline: none;
|
|
351
|
-
|
|
412
|
+
width: 24px;
|
|
352
413
|
}
|
|
353
414
|
.el-picker-panel__icon-btn:hover {
|
|
354
415
|
color: var(--el-datepicker-hover-text-color);
|
|
@@ -380,9 +441,11 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
380
441
|
width: 110px;
|
|
381
442
|
border-right: 1px solid var(--el-datepicker-inner-border-color);
|
|
382
443
|
box-sizing: border-box;
|
|
383
|
-
padding-top:
|
|
444
|
+
padding-top: 16px;
|
|
384
445
|
background-color: var(--el-bg-color-overlay);
|
|
385
446
|
overflow: auto;
|
|
447
|
+
border-top-left-radius: 4px;
|
|
448
|
+
border-bottom-left-radius: 4px;
|
|
386
449
|
}
|
|
387
450
|
|
|
388
451
|
.el-picker-panel *[slot=sidebar] + .el-picker-panel__body,
|
|
@@ -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
|
}
|
|
@@ -308,8 +336,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
308
336
|
padding-left: 50%;
|
|
309
337
|
margin-right: 12%;
|
|
310
338
|
margin-left: 12%;
|
|
311
|
-
border-top: 1px solid var(--el-
|
|
312
|
-
border-bottom: 1px solid var(--el-
|
|
339
|
+
border-top: 1px solid var(--el-color-neutral-light-4);
|
|
340
|
+
border-bottom: 1px solid var(--el-color-neutral-light-4);
|
|
313
341
|
}
|
|
314
342
|
.el-time-panel__content.has-seconds::after {
|
|
315
343
|
left: 66.6666666667%;
|
|
@@ -319,26 +347,38 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
319
347
|
}
|
|
320
348
|
|
|
321
349
|
.el-time-panel__footer {
|
|
322
|
-
border-top: 1px solid var(--el-
|
|
323
|
-
padding:
|
|
324
|
-
height: 36px;
|
|
350
|
+
border-top: 1px solid var(--el-color-neutral-light-4, var(--el-border-color-light));
|
|
351
|
+
padding: 16px;
|
|
325
352
|
line-height: 25px;
|
|
326
353
|
text-align: right;
|
|
327
354
|
box-sizing: border-box;
|
|
355
|
+
display: flex;
|
|
356
|
+
align-items: center;
|
|
357
|
+
gap: 16px;
|
|
328
358
|
}
|
|
329
359
|
|
|
330
360
|
.el-time-panel__btn {
|
|
331
|
-
|
|
332
|
-
line-height: 28px;
|
|
333
|
-
padding: 0 5px;
|
|
334
|
-
margin: 0 5px;
|
|
335
|
-
cursor: pointer;
|
|
336
|
-
background-color: transparent;
|
|
337
|
-
outline: none;
|
|
338
|
-
font-size: 12px;
|
|
339
|
-
color: var(--el-text-color-primary);
|
|
361
|
+
flex-basis: 100%;
|
|
340
362
|
}
|
|
341
363
|
.el-time-panel__btn.confirm {
|
|
342
|
-
|
|
343
|
-
|
|
364
|
+
@apply el-button--small el-button el-button--primary;
|
|
365
|
+
font-weight: 400;
|
|
366
|
+
}
|
|
367
|
+
.el-time-panel__btn.cancel {
|
|
368
|
+
@apply el-button--small is-plain;
|
|
369
|
+
--el-button-text-color: var(--el-color-primary-light-5);
|
|
370
|
+
line-height: normal;
|
|
371
|
+
border: 1px solid var(--el-color-primary-light-5);
|
|
372
|
+
color: var(--el-button-text-color);
|
|
373
|
+
}
|
|
374
|
+
.el-time-panel__btn.cancel:hover {
|
|
375
|
+
--el-button-text-color: var(--el-color-primary-light-4);
|
|
376
|
+
border: 1px solid var(--el-color-primary-light-4);
|
|
377
|
+
background-color: transparent;
|
|
378
|
+
}
|
|
379
|
+
.el-time-panel__btn.cancel:active {
|
|
380
|
+
--el-button-text-color: var(--el-color-primary-light-6);
|
|
381
|
+
--el-button-border-color: var(--el-color-primary-light-6);
|
|
382
|
+
border: 1px solid var(--el-color-primary-light-6);
|
|
383
|
+
background-color: transparent;
|
|
344
384
|
}
|
|
@@ -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
|
}
|
|
@@ -279,25 +307,32 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
279
307
|
.el-time-range-picker__content {
|
|
280
308
|
position: relative;
|
|
281
309
|
text-align: center;
|
|
282
|
-
padding:
|
|
310
|
+
padding: 24px 30px;
|
|
283
311
|
z-index: 1;
|
|
312
|
+
display: flex;
|
|
313
|
+
gap: 30px;
|
|
284
314
|
}
|
|
285
315
|
|
|
286
316
|
.el-time-range-picker__cell {
|
|
287
317
|
box-sizing: border-box;
|
|
288
318
|
margin: 0;
|
|
289
|
-
padding:
|
|
319
|
+
padding: 0;
|
|
290
320
|
width: 50%;
|
|
291
321
|
display: inline-block;
|
|
292
322
|
}
|
|
293
323
|
|
|
294
324
|
.el-time-range-picker__header {
|
|
295
|
-
margin-bottom:
|
|
325
|
+
margin-bottom: 16px;
|
|
296
326
|
text-align: center;
|
|
297
327
|
font-size: 14px;
|
|
328
|
+
font-weight: 500;
|
|
329
|
+
line-height: 14px;
|
|
330
|
+
display: flex;
|
|
331
|
+
align-items: flex-start;
|
|
332
|
+
justify-content: flex-start;
|
|
298
333
|
}
|
|
299
334
|
|
|
300
335
|
.el-time-range-picker__body {
|
|
301
|
-
border-radius:
|
|
336
|
+
border-radius: 4px;
|
|
302
337
|
border: 1px solid var(--el-datepicker-border-color);
|
|
303
338
|
}
|
|
@@ -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
|
}
|
|
@@ -345,16 +373,15 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
345
373
|
.el-time-spinner__item {
|
|
346
374
|
height: 32px;
|
|
347
375
|
line-height: 32px;
|
|
348
|
-
font-size:
|
|
349
|
-
color: var(--el-
|
|
376
|
+
font-size: 14px;
|
|
377
|
+
color: var(--el-color-neutral-light-7);
|
|
350
378
|
}
|
|
351
379
|
.el-time-spinner__item:hover:not(.is-disabled):not(.is-active) {
|
|
352
380
|
background: var(--el-fill-color-light);
|
|
353
381
|
cursor: pointer;
|
|
354
382
|
}
|
|
355
383
|
.el-time-spinner__item.is-active:not(.is-disabled) {
|
|
356
|
-
color: var(--el-
|
|
357
|
-
font-weight: bold;
|
|
384
|
+
color: var(--el-color-primary);
|
|
358
385
|
}
|
|
359
386
|
.el-time-spinner__item.is-disabled {
|
|
360
387
|
color: var(--el-text-color-placeholder);
|
|
@@ -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
|
}
|