@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.
Files changed (193) hide show
  1. package/README.md +34 -49
  2. package/dist/module.d.mts +1 -1
  3. package/dist/module.d.ts +1 -1
  4. package/dist/module.json +2 -2
  5. package/dist/module.mjs +40 -18
  6. package/dist/runtime/components/development/example.alert.vue +29 -0
  7. package/dist/runtime/components/development/example.avatar.vue +85 -0
  8. package/dist/runtime/components/development/example.badge.vue +93 -0
  9. package/dist/runtime/components/development/example.breadcrumb.vue +54 -0
  10. package/dist/runtime/components/development/example.button.vue +235 -0
  11. package/dist/runtime/components/{example.button.vue.d.ts → development/example.button.vue.d.ts} +2 -1
  12. package/dist/runtime/components/development/example.card.vue +68 -0
  13. package/dist/runtime/components/development/example.checkbox.vue +176 -0
  14. package/dist/runtime/components/{example.checkbox.vue.d.ts → development/example.checkbox.vue.d.ts} +2 -2
  15. package/dist/runtime/components/development/example.collapse.vue +38 -0
  16. package/dist/runtime/components/development/example.datepicker.vue +193 -0
  17. package/dist/runtime/components/development/example.description.vue +94 -0
  18. package/dist/runtime/components/{example.dialog.vue → development/example.dialog.vue} +21 -24
  19. package/dist/runtime/components/development/example.dropdown.vue +166 -0
  20. package/dist/runtime/components/development/example.form.vue +488 -0
  21. package/dist/runtime/components/development/example.input.vue +270 -0
  22. package/dist/runtime/components/development/example.input.vue.d.ts +23 -0
  23. package/dist/runtime/components/development/example.link.vue +68 -0
  24. package/dist/runtime/components/development/example.message.vue +64 -0
  25. package/dist/runtime/components/development/example.notification.vue +75 -0
  26. package/dist/runtime/components/development/example.number.vue +70 -0
  27. package/dist/runtime/components/development/example.pagination.vue +89 -0
  28. package/dist/runtime/components/development/example.popover.vue +151 -0
  29. package/dist/runtime/components/development/example.radio.vue +163 -0
  30. package/dist/runtime/components/{example.radio.vue.d.ts → development/example.radio.vue.d.ts} +3 -2
  31. package/dist/runtime/components/development/example.select.vue +588 -0
  32. package/dist/runtime/components/{example.select.vue.d.ts → development/example.select.vue.d.ts} +3 -2
  33. package/dist/runtime/components/development/example.sidebar.vue +101 -0
  34. package/dist/runtime/components/development/example.static.vue +50 -0
  35. package/dist/runtime/components/development/example.switch.vue +101 -0
  36. package/dist/runtime/components/{example.table.vue → development/example.table.vue} +8 -22
  37. package/dist/runtime/components/development/example.tag.vue +255 -0
  38. package/dist/runtime/components/development/example.timepicker.vue +89 -0
  39. package/dist/runtime/components/development/example.tooltip.vue +104 -0
  40. package/dist/runtime/components/development/example.upload.vue +84 -0
  41. package/dist/runtime/components/production/html-encode.vue +96 -0
  42. package/dist/runtime/components/production/timus-breadcrumb.d.ts +36 -0
  43. package/dist/runtime/components/production/timus-breadcrumb.js +224 -0
  44. package/dist/runtime/components/production/timus-breadcrumb.mjs +224 -0
  45. package/dist/runtime/components/production/timus-breadcrumb.vue +83 -0
  46. package/dist/runtime/components/production/timus-breadcrumb.vue.d.ts +340 -0
  47. package/dist/runtime/composables/useBreadcrumb.d.ts +8 -0
  48. package/dist/runtime/composables/useBreadcrumb.js +53 -0
  49. package/dist/runtime/composables/useBreadcrumb.mjs +53 -0
  50. package/dist/runtime/pages/theme.vue +44 -13
  51. package/dist/runtime/plugins/disable-warnings-plugin.js +18 -0
  52. package/dist/runtime/plugins/disable-warnings-plugin.mjs +18 -0
  53. package/dist/runtime/public/scss/element-plus/affix.css +28 -0
  54. package/dist/runtime/public/scss/element-plus/alert.css +116 -20
  55. package/dist/runtime/public/scss/element-plus/anchor-link.css +28 -0
  56. package/dist/runtime/public/scss/element-plus/anchor.css +28 -0
  57. package/dist/runtime/public/scss/element-plus/aside.css +28 -0
  58. package/dist/runtime/public/scss/element-plus/autocomplete.css +28 -0
  59. package/dist/runtime/public/scss/element-plus/avatar.css +60 -10
  60. package/dist/runtime/public/scss/element-plus/backtop.css +28 -0
  61. package/dist/runtime/public/scss/element-plus/badge.css +30 -2
  62. package/dist/runtime/public/scss/element-plus/base.css +31 -3
  63. package/dist/runtime/public/scss/element-plus/breadcrumb.css +46 -6
  64. package/dist/runtime/public/scss/element-plus/button-group.css +154 -32
  65. package/dist/runtime/public/scss/element-plus/button.css +70 -24
  66. package/dist/runtime/public/scss/element-plus/calendar.css +28 -0
  67. package/dist/runtime/public/scss/element-plus/card.css +41 -6
  68. package/dist/runtime/public/scss/element-plus/carousel-item.css +28 -0
  69. package/dist/runtime/public/scss/element-plus/carousel.css +28 -0
  70. package/dist/runtime/public/scss/element-plus/cascader-panel.css +28 -0
  71. package/dist/runtime/public/scss/element-plus/cascader.css +28 -0
  72. package/dist/runtime/public/scss/element-plus/check-tag.css +28 -0
  73. package/dist/runtime/public/scss/element-plus/checkbox-button.css +33 -0
  74. package/dist/runtime/public/scss/element-plus/checkbox-group.css +28 -0
  75. package/dist/runtime/public/scss/element-plus/checkbox.css +28 -0
  76. package/dist/runtime/public/scss/element-plus/col.css +28 -0
  77. package/dist/runtime/public/scss/element-plus/collapse.css +28 -0
  78. package/dist/runtime/public/scss/element-plus/color-picker.css +28 -0
  79. package/dist/runtime/public/scss/element-plus/common/popup.css +28 -0
  80. package/dist/runtime/public/scss/element-plus/common/transition.css +28 -0
  81. package/dist/runtime/public/scss/element-plus/common/var.css +28 -0
  82. package/dist/runtime/public/scss/element-plus/container.css +28 -0
  83. package/dist/runtime/public/scss/element-plus/dark/css-vars.css +28 -0
  84. package/dist/runtime/public/scss/element-plus/dark/var.css +28 -0
  85. package/dist/runtime/public/scss/element-plus/date-picker/date-picker.css +76 -14
  86. package/dist/runtime/public/scss/element-plus/date-picker/date-range-picker.css +41 -9
  87. package/dist/runtime/public/scss/element-plus/date-picker/date-table.css +31 -3
  88. package/dist/runtime/public/scss/element-plus/date-picker/month-table.css +28 -0
  89. package/dist/runtime/public/scss/element-plus/date-picker/picker-panel.css +69 -6
  90. package/dist/runtime/public/scss/element-plus/date-picker/picker.css +28 -0
  91. package/dist/runtime/public/scss/element-plus/date-picker/time-picker.css +56 -16
  92. package/dist/runtime/public/scss/element-plus/date-picker/time-range-picker.css +39 -4
  93. package/dist/runtime/public/scss/element-plus/date-picker/time-spinner.css +31 -4
  94. package/dist/runtime/public/scss/element-plus/date-picker/year-table.css +28 -0
  95. package/dist/runtime/public/scss/element-plus/date-picker.css +134 -50
  96. package/dist/runtime/public/scss/element-plus/descriptions-item.css +48 -8
  97. package/dist/runtime/public/scss/element-plus/descriptions.css +78 -16
  98. package/dist/runtime/public/scss/element-plus/dialog.css +30 -2
  99. package/dist/runtime/public/scss/element-plus/display.css +28 -0
  100. package/dist/runtime/public/scss/element-plus/divider.css +28 -0
  101. package/dist/runtime/public/scss/element-plus/drawer.css +28 -0
  102. package/dist/runtime/public/scss/element-plus/dropdown.css +43 -12
  103. package/dist/runtime/public/scss/element-plus/empty.css +28 -0
  104. package/dist/runtime/public/scss/element-plus/footer.css +28 -0
  105. package/dist/runtime/public/scss/element-plus/form.css +28 -0
  106. package/dist/runtime/public/scss/element-plus/header.css +28 -0
  107. package/dist/runtime/public/scss/element-plus/icon.css +30 -2
  108. package/dist/runtime/public/scss/element-plus/image-viewer.css +28 -0
  109. package/dist/runtime/public/scss/element-plus/image.css +28 -0
  110. package/dist/runtime/public/scss/element-plus/index.css +920 -329
  111. package/dist/runtime/public/scss/element-plus/input-number.css +50 -6
  112. package/dist/runtime/public/scss/element-plus/input.css +28 -0
  113. package/dist/runtime/public/scss/element-plus/link.css +59 -28
  114. package/dist/runtime/public/scss/element-plus/loading.css +28 -0
  115. package/dist/runtime/public/scss/element-plus/main.css +28 -0
  116. package/dist/runtime/public/scss/element-plus/mention.css +28 -0
  117. package/dist/runtime/public/scss/element-plus/menu.css +28 -0
  118. package/dist/runtime/public/scss/element-plus/message-box.css +34 -2
  119. package/dist/runtime/public/scss/element-plus/message.css +161 -31
  120. package/dist/runtime/public/scss/element-plus/mixins/mixins.css +28 -0
  121. package/dist/runtime/public/scss/element-plus/notification.css +41 -9
  122. package/dist/runtime/public/scss/element-plus/option-group.css +28 -0
  123. package/dist/runtime/public/scss/element-plus/option.css +29 -0
  124. package/dist/runtime/public/scss/element-plus/overlay.css +28 -0
  125. package/dist/runtime/public/scss/element-plus/page-header.css +28 -0
  126. package/dist/runtime/public/scss/element-plus/pagination.css +64 -11
  127. package/dist/runtime/public/scss/element-plus/popconfirm.css +28 -0
  128. package/dist/runtime/public/scss/element-plus/popover.css +28 -0
  129. package/dist/runtime/public/scss/element-plus/popper.css +29 -1
  130. package/dist/runtime/public/scss/element-plus/progress.css +28 -0
  131. package/dist/runtime/public/scss/element-plus/radio-button.css +36 -2
  132. package/dist/runtime/public/scss/element-plus/radio-group.css +28 -0
  133. package/dist/runtime/public/scss/element-plus/radio.css +28 -0
  134. package/dist/runtime/public/scss/element-plus/rate.css +28 -0
  135. package/dist/runtime/public/scss/element-plus/reset.css +28 -0
  136. package/dist/runtime/public/scss/element-plus/result.css +28 -0
  137. package/dist/runtime/public/scss/element-plus/row.css +28 -0
  138. package/dist/runtime/public/scss/element-plus/scrollbar.css +28 -0
  139. package/dist/runtime/public/scss/element-plus/segmented.css +28 -0
  140. package/dist/runtime/public/scss/element-plus/select-dropdown-v2.css +28 -0
  141. package/dist/runtime/public/scss/element-plus/select-dropdown.css +28 -0
  142. package/dist/runtime/public/scss/element-plus/select-v2.css +48 -23
  143. package/dist/runtime/public/scss/element-plus/select.css +48 -23
  144. package/dist/runtime/public/scss/element-plus/skeleton-item.css +28 -0
  145. package/dist/runtime/public/scss/element-plus/skeleton.css +28 -0
  146. package/dist/runtime/public/scss/element-plus/slider.css +28 -0
  147. package/dist/runtime/public/scss/element-plus/space.css +28 -0
  148. package/dist/runtime/public/scss/element-plus/spinner.css +28 -0
  149. package/dist/runtime/public/scss/element-plus/statistic.css +28 -0
  150. package/dist/runtime/public/scss/element-plus/step.css +28 -0
  151. package/dist/runtime/public/scss/element-plus/steps.css +28 -0
  152. package/dist/runtime/public/scss/element-plus/switch.css +116 -20
  153. package/dist/runtime/public/scss/element-plus/table-column.css +29 -1
  154. package/dist/runtime/public/scss/element-plus/table-v2.css +28 -0
  155. package/dist/runtime/public/scss/element-plus/table.css +28 -0
  156. package/dist/runtime/public/scss/element-plus/tabs.css +30 -2
  157. package/dist/runtime/public/scss/element-plus/tag.css +28 -0
  158. package/dist/runtime/public/scss/element-plus/text.css +34 -0
  159. package/dist/runtime/public/scss/element-plus/time-picker.css +111 -30
  160. package/dist/runtime/public/scss/element-plus/time-select.css +76 -14
  161. package/dist/runtime/public/scss/element-plus/timeline-item.css +28 -0
  162. package/dist/runtime/public/scss/element-plus/timeline.css +28 -0
  163. package/dist/runtime/public/scss/element-plus/tooltip-v2.css +28 -0
  164. package/dist/runtime/public/scss/element-plus/tour.css +30 -2
  165. package/dist/runtime/public/scss/element-plus/transfer.css +28 -0
  166. package/dist/runtime/public/scss/element-plus/tree-select.css +28 -0
  167. package/dist/runtime/public/scss/element-plus/tree.css +28 -0
  168. package/dist/runtime/public/scss/element-plus/upload.css +28 -0
  169. package/dist/runtime/public/scss/element-plus/var.css +29 -1
  170. package/dist/runtime/public/scss/element-plus/virtual-list.css +28 -0
  171. package/dist/runtime/public/scss/theme.css +79 -2
  172. package/dist/runtime/types.d.ts +7 -16
  173. package/package.json +1 -1
  174. package/dist/runtime/components/example.button.vue +0 -237
  175. package/dist/runtime/components/example.checkbox.vue +0 -190
  176. package/dist/runtime/components/example.form.vue +0 -494
  177. package/dist/runtime/components/example.input.vue +0 -286
  178. package/dist/runtime/components/example.input.vue.d.ts +0 -20
  179. package/dist/runtime/components/example.popover.vue +0 -161
  180. package/dist/runtime/components/example.radio.vue +0 -165
  181. package/dist/runtime/components/example.select.vue +0 -591
  182. package/dist/runtime/components/example.sidebar.vue +0 -104
  183. package/dist/runtime/components/example.tag.vue +0 -279
  184. package/dist/runtime/components/html-encode.vue +0 -37
  185. package/dist/runtime/plugins/element-extend-plugin.d.ts +0 -38
  186. package/dist/runtime/plugins/element-extend-plugin.js +0 -39
  187. package/dist/runtime/plugins/element-extend-plugin.mjs +0 -39
  188. package/dist/runtime/plugins/experimental-size-plugin.js +0 -13
  189. package/dist/runtime/plugins/experimental-size-plugin.mjs +0 -13
  190. /package/dist/runtime/plugins/{experimental-size-plugin.d.ts → disable-warnings-plugin.d.ts} +0 -0
  191. /package/dist/runtime/plugins/{theme-provider.d.ts → theme-provider-plugin.d.ts} +0 -0
  192. /package/dist/runtime/plugins/{theme-provider.js → theme-provider-plugin.js} +0 -0
  193. /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
  }
@@ -329,7 +357,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
329
357
  }
330
358
  .el-date-table td.today .el-date-table-cell__text {
331
359
  color: var(--el-color-primary);
332
- font-weight: bold;
360
+ font-weight: 500;
333
361
  }
334
362
  .el-date-table td.today.start-date .el-date-table-cell__text, .el-date-table td.today.end-date .el-date-table-cell__text {
335
363
  color: #ffffff;
@@ -391,10 +419,10 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
391
419
  outline: none;
392
420
  }
393
421
  .el-date-table th {
394
- padding: 5px;
422
+ padding: 0;
395
423
  color: var(--el-datepicker-header-text-color);
396
424
  font-weight: 400;
397
- border-bottom: solid 1px var(--el-border-color-lighter);
425
+ border-bottom: solid 1px var(--el-color-neutral-light-4);
398
426
  }
399
427
 
400
428
  .el-month-table {
@@ -640,16 +668,15 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
640
668
  .el-time-spinner__item {
641
669
  height: 32px;
642
670
  line-height: 32px;
643
- font-size: 12px;
644
- color: var(--el-text-color-regular);
671
+ font-size: 14px;
672
+ color: var(--el-color-neutral-light-7);
645
673
  }
646
674
  .el-time-spinner__item:hover:not(.is-disabled):not(.is-active) {
647
675
  background: var(--el-fill-color-light);
648
676
  cursor: pointer;
649
677
  }
650
678
  .el-time-spinner__item.is-active:not(.is-disabled) {
651
- color: var(--el-text-color-primary);
652
- font-weight: bold;
679
+ color: var(--el-color-primary);
653
680
  }
654
681
  .el-time-spinner__item.is-disabled {
655
682
  color: var(--el-text-color-placeholder);
@@ -1042,11 +1069,44 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
1042
1069
 
1043
1070
  .el-picker-panel__footer {
1044
1071
  border-top: 1px solid var(--el-datepicker-inner-border-color);
1045
- padding: 4px 12px;
1072
+ padding: 16px;
1046
1073
  text-align: right;
1047
1074
  background-color: var(--el-bg-color-overlay);
1048
1075
  position: relative;
1049
1076
  font-size: 0;
1077
+ display: flex;
1078
+ gap: 30px;
1079
+ border-bottom-left-radius: 4px;
1080
+ border-bottom-right-radius: 4px;
1081
+ }
1082
+ .el-picker-panel__footer .el-button {
1083
+ display: flex;
1084
+ flex-basis: 100%;
1085
+ }
1086
+ .el-picker-panel__footer .el-button.is-text {
1087
+ --el-button-active-border-color: var(--el-color-primary-light-6);
1088
+ border: 1px solid var(--el-color-primary-light-5);
1089
+ }
1090
+ .el-picker-panel__footer .el-button.is-text:hover {
1091
+ --el-button-text-color: var(--el-color-primary-light-4);
1092
+ border: 1px solid var(--el-color-primary-light-4);
1093
+ background-color: transparent;
1094
+ }
1095
+ .el-picker-panel__footer .el-button.is-text:active {
1096
+ --el-button-text-color: var(--el-color-primary-light-6);
1097
+ --el-button-border-color: var(--el-color-primary-light-6);
1098
+ border: 1px solid var(--el-color-primary-light-6);
1099
+ background-color: transparent;
1100
+ }
1101
+ .el-picker-panel__footer .el-button.is-plain {
1102
+ --el-button-hover-text-color: var(--el-color-white);
1103
+ --el-button-hover-bg-color: var(--el-color-primary-light-4);
1104
+ --el-button-hover-border-color: var(--el-color-primary-light-4);
1105
+ --el-button-active-text-color: var(--el-button-hover-text-color);
1106
+ --el-button-active-bg-color: var(--el-color-primary-light-6);
1107
+ --el-button-active-border-color: var(--el-color-primary-light-6);
1108
+ --el-button-bg-color: var(--el-color-primary-light-5);
1109
+ --el-button-text-color: var(--el-color-white);
1050
1110
  }
1051
1111
 
1052
1112
  .el-picker-panel__shortcut {
@@ -1055,9 +1115,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
1055
1115
  border: 0;
1056
1116
  background-color: transparent;
1057
1117
  line-height: 28px;
1058
- font-size: 14px;
1059
- color: var(--el-datepicker-text-color);
1060
- padding-left: 12px;
1118
+ font-size: 12px;
1119
+ color: var(--el-color-neutral-light-7);
1120
+ padding-left: 16px;
1061
1121
  text-align: left;
1062
1122
  outline: none;
1063
1123
  cursor: pointer;
@@ -1093,7 +1153,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
1093
1153
  background: transparent;
1094
1154
  cursor: pointer;
1095
1155
  outline: none;
1096
- margin-top: 8px;
1156
+ width: 24px;
1097
1157
  }
1098
1158
  .el-picker-panel__icon-btn:hover {
1099
1159
  color: var(--el-datepicker-hover-text-color);
@@ -1125,9 +1185,11 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
1125
1185
  width: 110px;
1126
1186
  border-right: 1px solid var(--el-datepicker-inner-border-color);
1127
1187
  box-sizing: border-box;
1128
- padding-top: 6px;
1188
+ padding-top: 16px;
1129
1189
  background-color: var(--el-bg-color-overlay);
1130
1190
  overflow: auto;
1191
+ border-top-left-radius: 4px;
1192
+ border-bottom-left-radius: 4px;
1131
1193
  }
1132
1194
 
1133
1195
  .el-picker-panel *[slot=sidebar] + .el-picker-panel__body,
@@ -1138,12 +1200,12 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
1138
1200
  .el-date-picker {
1139
1201
  --el-datepicker-text-color: var(--el-text-color-regular);
1140
1202
  --el-datepicker-off-text-color: var(--el-text-color-placeholder);
1141
- --el-datepicker-header-text-color: var(--el-text-color-regular);
1142
- --el-datepicker-icon-color: var(--el-text-color-primary);
1203
+ --el-datepicker-header-text-color: var(--el-color-neutral-light-4);
1204
+ --el-datepicker-icon-color: var(--el-color-neutral-light-4);
1143
1205
  --el-datepicker-border-color: var(--el-disabled-border-color);
1144
1206
  --el-datepicker-inner-border-color: var(--el-border-color-light);
1145
- --el-datepicker-inrange-bg-color: var(--el-border-color-extra-light);
1146
- --el-datepicker-inrange-hover-bg-color: var(--el-border-color-extra-light);
1207
+ --el-datepicker-inrange-bg-color: var(--el-color-primary-light-1);
1208
+ --el-datepicker-inrange-hover-bg-color: var(--el-color-primary-light-1);
1147
1209
  --el-datepicker-active-color: var(--el-color-primary);
1148
1210
  --el-datepicker-hover-text-color: var(--el-color-primary);
1149
1211
  }
@@ -1169,16 +1231,15 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
1169
1231
  }
1170
1232
  .el-date-picker__editor-wrap {
1171
1233
  position: relative;
1172
- display: table-cell;
1173
- padding: 0 5px;
1174
1234
  }
1175
1235
 
1176
1236
  .el-date-picker__time-header {
1177
1237
  position: relative;
1178
1238
  border-bottom: 1px solid var(--el-datepicker-inner-border-color);
1179
1239
  font-size: 12px;
1180
- padding: 8px 5px 5px;
1181
- display: table;
1240
+ padding: 16px;
1241
+ display: inline-flex;
1242
+ gap: 30px;
1182
1243
  width: 100%;
1183
1244
  box-sizing: border-box;
1184
1245
  }
@@ -1243,12 +1304,12 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
1243
1304
  .el-date-range-picker {
1244
1305
  --el-datepicker-text-color: var(--el-text-color-regular);
1245
1306
  --el-datepicker-off-text-color: var(--el-text-color-placeholder);
1246
- --el-datepicker-header-text-color: var(--el-text-color-regular);
1247
- --el-datepicker-icon-color: var(--el-text-color-primary);
1307
+ --el-datepicker-header-text-color: var(--el-color-neutral-light-4);
1308
+ --el-datepicker-icon-color: var(--el-color-neutral-light-4);
1248
1309
  --el-datepicker-border-color: var(--el-disabled-border-color);
1249
1310
  --el-datepicker-inner-border-color: var(--el-border-color-light);
1250
- --el-datepicker-inrange-bg-color: var(--el-border-color-extra-light);
1251
- --el-datepicker-inrange-hover-bg-color: var(--el-border-color-extra-light);
1311
+ --el-datepicker-inrange-bg-color: var(--el-color-primary-light-1);
1312
+ --el-datepicker-inrange-hover-bg-color: var(--el-color-primary-light-1);
1252
1313
  --el-datepicker-active-color: var(--el-color-primary);
1253
1314
  --el-datepicker-hover-text-color: var(--el-color-primary);
1254
1315
  }
@@ -1284,7 +1345,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
1284
1345
  float: right;
1285
1346
  }
1286
1347
  .el-date-range-picker__header div {
1287
- font-size: 16px;
1348
+ font-size: 14px;
1349
+ line-height: 25px;
1350
+ color: var(--el-color-neutral-light-9);
1288
1351
  font-weight: 500;
1289
1352
  margin-right: 50px;
1290
1353
  }
@@ -1307,7 +1370,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
1307
1370
 
1308
1371
  .el-date-range-picker__editors-wrap {
1309
1372
  box-sizing: border-box;
1310
- display: table-cell;
1373
+ display: inline-flex;
1374
+ gap: 30px;
1311
1375
  }
1312
1376
  .el-date-range-picker__editors-wrap.is-right {
1313
1377
  text-align: right;
@@ -1317,8 +1381,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
1317
1381
  position: relative;
1318
1382
  border-bottom: 1px solid var(--el-datepicker-inner-border-color);
1319
1383
  font-size: 12px;
1320
- padding: 8px 5px 5px 5px;
1321
- display: table;
1384
+ padding: 16px;
1385
+ display: inline-flex;
1386
+ gap: 30px;
1322
1387
  width: 100%;
1323
1388
  box-sizing: border-box;
1324
1389
  }
@@ -1332,7 +1397,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
1332
1397
  .el-date-range-picker__time-picker-wrap {
1333
1398
  position: relative;
1334
1399
  display: table-cell;
1335
- padding: 0 5px;
1400
+ padding: 0;
1336
1401
  }
1337
1402
  .el-date-range-picker__time-picker-wrap .el-picker-panel {
1338
1403
  position: absolute;
@@ -1352,26 +1417,33 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
1352
1417
  .el-time-range-picker__content {
1353
1418
  position: relative;
1354
1419
  text-align: center;
1355
- padding: 10px;
1420
+ padding: 24px 30px;
1356
1421
  z-index: 1;
1422
+ display: flex;
1423
+ gap: 30px;
1357
1424
  }
1358
1425
 
1359
1426
  .el-time-range-picker__cell {
1360
1427
  box-sizing: border-box;
1361
1428
  margin: 0;
1362
- padding: 4px 7px 7px;
1429
+ padding: 0;
1363
1430
  width: 50%;
1364
1431
  display: inline-block;
1365
1432
  }
1366
1433
 
1367
1434
  .el-time-range-picker__header {
1368
- margin-bottom: 5px;
1435
+ margin-bottom: 16px;
1369
1436
  text-align: center;
1370
1437
  font-size: 14px;
1438
+ font-weight: 500;
1439
+ line-height: 14px;
1440
+ display: flex;
1441
+ align-items: flex-start;
1442
+ justify-content: flex-start;
1371
1443
  }
1372
1444
 
1373
1445
  .el-time-range-picker__body {
1374
- border-radius: 2px;
1446
+ border-radius: 4px;
1375
1447
  border: 1px solid var(--el-datepicker-border-color);
1376
1448
  }
1377
1449
 
@@ -1411,8 +1483,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
1411
1483
  padding-left: 50%;
1412
1484
  margin-right: 12%;
1413
1485
  margin-left: 12%;
1414
- border-top: 1px solid var(--el-border-color-light);
1415
- border-bottom: 1px solid var(--el-border-color-light);
1486
+ border-top: 1px solid var(--el-color-neutral-light-4);
1487
+ border-bottom: 1px solid var(--el-color-neutral-light-4);
1416
1488
  }
1417
1489
  .el-time-panel__content.has-seconds::after {
1418
1490
  left: 66.6666666667%;
@@ -1422,26 +1494,38 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
1422
1494
  }
1423
1495
 
1424
1496
  .el-time-panel__footer {
1425
- border-top: 1px solid var(--el-timepicker-inner-border-color, var(--el-border-color-light));
1426
- padding: 4px;
1427
- height: 36px;
1497
+ border-top: 1px solid var(--el-color-neutral-light-4, var(--el-border-color-light));
1498
+ padding: 16px;
1428
1499
  line-height: 25px;
1429
1500
  text-align: right;
1430
1501
  box-sizing: border-box;
1502
+ display: flex;
1503
+ align-items: center;
1504
+ gap: 16px;
1431
1505
  }
1432
1506
 
1433
1507
  .el-time-panel__btn {
1434
- border: none;
1435
- line-height: 28px;
1436
- padding: 0 5px;
1437
- margin: 0 5px;
1438
- cursor: pointer;
1439
- background-color: transparent;
1440
- outline: none;
1441
- font-size: 12px;
1442
- color: var(--el-text-color-primary);
1508
+ flex-basis: 100%;
1443
1509
  }
1444
1510
  .el-time-panel__btn.confirm {
1445
- font-weight: 800;
1446
- color: var(--el-timepicker-active-color, var(--el-color-primary));
1511
+ @apply el-button--small el-button el-button--primary;
1512
+ font-weight: 400;
1513
+ }
1514
+ .el-time-panel__btn.cancel {
1515
+ @apply el-button--small is-plain;
1516
+ --el-button-text-color: var(--el-color-primary-light-5);
1517
+ line-height: normal;
1518
+ border: 1px solid var(--el-color-primary-light-5);
1519
+ color: var(--el-button-text-color);
1520
+ }
1521
+ .el-time-panel__btn.cancel:hover {
1522
+ --el-button-text-color: var(--el-color-primary-light-4);
1523
+ border: 1px solid var(--el-color-primary-light-4);
1524
+ background-color: transparent;
1525
+ }
1526
+ .el-time-panel__btn.cancel:active {
1527
+ --el-button-text-color: var(--el-color-primary-light-6);
1528
+ --el-button-border-color: var(--el-color-primary-light-6);
1529
+ border: 1px solid var(--el-color-primary-light-6);
1530
+ background-color: transparent;
1447
1531
  }
@@ -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,16 +301,14 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
273
301
  }
274
302
  **/
275
303
  .el-descriptions__label.el-descriptions__cell.is-bordered-label {
276
- font-weight: bold;
277
- color: var(--el-text-color-regular);
278
- background: var(--el-descriptions-item-bordered-label-background);
304
+ color: var(--el-color-neutral-light-7);
279
305
  }
280
306
  .el-descriptions__label:not(.is-bordered-label) {
281
- color: var(--el-text-color-primary);
282
- margin-right: 16px;
307
+ color: var(--el-color-neutral-light-7);
308
+ margin-right: 6px;
283
309
  }
284
310
  .el-descriptions__label.el-descriptions__cell:not(.is-bordered-label).is-vertical-label {
285
- padding-bottom: 6px;
311
+ padding-bottom: 8px;
286
312
  }
287
313
 
288
314
  .el-descriptions__content.el-descriptions__cell.is-bordered-content {
@@ -293,15 +319,29 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
293
319
  }
294
320
 
295
321
  .el-descriptions--large .el-descriptions__label:not(.is-bordered-label) {
296
- margin-right: 16px;
322
+ margin-right: 6px;
297
323
  }
298
324
  .el-descriptions--large .el-descriptions__label.el-descriptions__cell:not(.is-bordered-label).is-vertical-label {
299
325
  padding-bottom: 8px;
300
326
  }
301
327
 
328
+ .el-descriptions--medium .el-descriptions__label:not(.is-bordered-label) {
329
+ margin-right: 6px;
330
+ }
331
+ .el-descriptions--medium .el-descriptions__label.el-descriptions__cell:not(.is-bordered-label).is-vertical-label {
332
+ padding-bottom: 6px;
333
+ }
334
+
302
335
  .el-descriptions--small .el-descriptions__label:not(.is-bordered-label) {
303
- margin-right: 12px;
336
+ margin-right: 6px;
304
337
  }
305
338
  .el-descriptions--small .el-descriptions__label.el-descriptions__cell:not(.is-bordered-label).is-vertical-label {
306
339
  padding-bottom: 4px;
340
+ }
341
+
342
+ .el-descriptions--mini .el-descriptions__label:not(.is-bordered-label) {
343
+ margin-right: 6px;
344
+ }
345
+ .el-descriptions--mini .el-descriptions__label.el-descriptions__cell:not(.is-bordered-label).is-vertical-label {
346
+ padding-bottom: 2px;
307
347
  }
@@ -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,7 +301,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
273
301
  }
274
302
  **/
275
303
  .el-descriptions {
276
- --el-descriptions-table-border: 1px solid var(--el-border-color-lighter);
304
+ --el-descriptions-table-border: none;
277
305
  --el-descriptions-item-bordered-label-background: var(--el-fill-color-light);
278
306
  box-sizing: border-box;
279
307
  font-size: var(--el-font-size-base);
@@ -283,12 +311,13 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
283
311
  display: flex;
284
312
  justify-content: space-between;
285
313
  align-items: center;
286
- margin-bottom: 16px;
314
+ margin-bottom: 8px;
315
+ line-height: 22px;
287
316
  }
288
317
  .el-descriptions__title {
289
318
  color: var(--el-text-color-primary);
290
- font-size: 16px;
291
- font-weight: bold;
319
+ font-size: 18px;
320
+ font-weight: 500;
292
321
  }
293
322
 
294
323
  .el-descriptions__body {
@@ -302,7 +331,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
302
331
  box-sizing: border-box;
303
332
  text-align: left;
304
333
  font-weight: normal;
305
- line-height: 23px;
334
+ line-height: 24px;
306
335
  font-size: 14px;
307
336
  }
308
337
  .el-descriptions__body .el-descriptions__table .el-descriptions__cell.is-left {
@@ -319,55 +348,88 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
319
348
 
320
349
  .el-descriptions__body .el-descriptions__table.is-bordered .el-descriptions__cell {
321
350
  border: var(--el-descriptions-table-border);
322
- padding: 8px 11px;
351
+ padding: 8px 12px 8px 0;
323
352
  }
324
353
  .el-descriptions__body .el-descriptions__table:not(.is-bordered) .el-descriptions__cell {
325
- padding-bottom: 12px;
354
+ padding: 8px 12px 8px 0;
326
355
  }
327
356
 
328
357
  .el-descriptions--large {
329
358
  font-size: 14px;
330
359
  }
331
360
  .el-descriptions--large .el-descriptions__header {
332
- margin-bottom: 20px;
361
+ margin-bottom: 8px;
333
362
  }
334
363
  .el-descriptions--large .el-descriptions__header .el-descriptions__title {
335
- font-size: 16px;
364
+ font-size: 18px;
336
365
  }
337
366
 
338
367
  .el-descriptions--large .el-descriptions__body .el-descriptions__table .el-descriptions__cell {
339
368
  font-size: 14px;
340
369
  }
341
370
  .el-descriptions--large .el-descriptions__body .el-descriptions__table.is-bordered .el-descriptions__cell {
342
- padding: 12px 15px;
371
+ padding: 8px 12px 8px 0;
343
372
  }
344
373
  .el-descriptions--large .el-descriptions__body .el-descriptions__table:not(.is-bordered) .el-descriptions__cell {
345
- padding-bottom: 16px;
374
+ padding: 8px 12px 8px 0;
346
375
  }
347
376
 
348
377
  .el-descriptions--medium {
349
378
  font-size: 14px;
350
379
  }
380
+ .el-descriptions--medium .el-descriptions__header {
381
+ margin-bottom: 8px;
382
+ }
383
+ .el-descriptions--medium .el-descriptions__header .el-descriptions__title {
384
+ font-size: 18px;
385
+ }
386
+
387
+ .el-descriptions--medium .el-descriptions__body .el-descriptions__table .el-descriptions__cell {
388
+ font-size: 14px;
389
+ }
390
+ .el-descriptions--medium .el-descriptions__body .el-descriptions__table.is-bordered .el-descriptions__cell {
391
+ padding: 6px 12px 6px 0;
392
+ }
393
+ .el-descriptions--medium .el-descriptions__body .el-descriptions__table:not(.is-bordered) .el-descriptions__cell {
394
+ padding: 6px 12px 6px 0;
395
+ }
396
+
351
397
  .el-descriptions--small {
352
398
  font-size: 12px;
353
399
  }
354
400
  .el-descriptions--small .el-descriptions__header {
355
- margin-bottom: 12px;
401
+ margin-bottom: 8px;
356
402
  }
357
403
  .el-descriptions--small .el-descriptions__header .el-descriptions__title {
358
- font-size: 14px;
404
+ font-size: 18px;
359
405
  }
360
406
 
361
407
  .el-descriptions--small .el-descriptions__body .el-descriptions__table .el-descriptions__cell {
362
- font-size: 12px;
408
+ font-size: 14px;
363
409
  }
364
410
  .el-descriptions--small .el-descriptions__body .el-descriptions__table.is-bordered .el-descriptions__cell {
365
- padding: 4px 7px;
411
+ padding: 3px 12px 3px 0;
366
412
  }
367
413
  .el-descriptions--small .el-descriptions__body .el-descriptions__table:not(.is-bordered) .el-descriptions__cell {
368
- padding-bottom: 8px;
414
+ padding: 3px 12px 3px 0;
369
415
  }
370
416
 
371
417
  .el-descriptions--mini {
372
418
  font-size: 12px;
419
+ }
420
+ .el-descriptions--mini .el-descriptions__header {
421
+ margin-bottom: 8px;
422
+ }
423
+ .el-descriptions--mini .el-descriptions__header .el-descriptions__title {
424
+ font-size: 18px;
425
+ }
426
+
427
+ .el-descriptions--mini .el-descriptions__body .el-descriptions__table .el-descriptions__cell {
428
+ font-size: 14px;
429
+ }
430
+ .el-descriptions--mini .el-descriptions__body .el-descriptions__table.is-bordered .el-descriptions__cell {
431
+ padding: 2px 12px 2px 0;
432
+ }
433
+ .el-descriptions--mini .el-descriptions__body .el-descriptions__table:not(.is-bordered) .el-descriptions__cell {
434
+ padding: 2px 12px 2px 0;
373
435
  }
@@ -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
  }
@@ -364,7 +392,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
364
392
  padding-bottom: var(--el-dialog-padding-primary);
365
393
  }
366
394
  .el-dialog__header.show-close {
367
- padding-right: calc(var(--el-dialog-padding-primary) + var(--el-message-close-size, 16px));
395
+ padding-right: calc(var(--el-dialog-padding-primary) + var(--el-message-close-size, 12px));
368
396
  }
369
397
 
370
398
  .el-dialog__headerbtn {
@@ -378,7 +406,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
378
406
  border: none;
379
407
  outline: none;
380
408
  cursor: pointer;
381
- font-size: var(--el-message-close-size, 16px);
409
+ font-size: var(--el-message-close-size, 12px);
382
410
  }
383
411
  .el-dialog__headerbtn .el-dialog__close {
384
412
  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
  }