@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,19 +301,21 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
273
301
|
}
|
|
274
302
|
**/
|
|
275
303
|
.el-message {
|
|
276
|
-
--el-message-bg-color: var(--el-color-info-light-
|
|
277
|
-
--el-message-border-color: var(--el-
|
|
278
|
-
--el-message-padding: 11px
|
|
279
|
-
--el-message-
|
|
280
|
-
--el-message-close-
|
|
281
|
-
--el-message-close-
|
|
304
|
+
--el-message-bg-color: var(--el-color-info-light-1);
|
|
305
|
+
--el-message-border-color: var(--el-color-info-light-3);
|
|
306
|
+
--el-message-padding: 8px 11px 8px 16px;
|
|
307
|
+
--el-message-font-size: 12px;
|
|
308
|
+
--el-message-close-size: 12px;
|
|
309
|
+
--el-message-close-icon-color: var(--el-color-info-light-5);
|
|
310
|
+
--el-message-close-hover-color: var(--el-text-color-light-4);
|
|
311
|
+
--el-message-text-color: var(--el-color-info-light-5);
|
|
282
312
|
}
|
|
283
313
|
|
|
284
314
|
.el-message {
|
|
285
315
|
width: fit-content;
|
|
286
316
|
max-width: calc(100% - 32px);
|
|
287
317
|
box-sizing: border-box;
|
|
288
|
-
border-radius:
|
|
318
|
+
border-radius: 4px;
|
|
289
319
|
border-width: var(--el-border-width);
|
|
290
320
|
border-style: var(--el-border-style);
|
|
291
321
|
border-color: var(--el-message-border-color);
|
|
@@ -298,7 +328,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
298
328
|
padding: var(--el-message-padding);
|
|
299
329
|
display: flex;
|
|
300
330
|
align-items: center;
|
|
301
|
-
gap:
|
|
331
|
+
gap: 4px;
|
|
332
|
+
color: var(--el-message-text-color);
|
|
333
|
+
box-shadow: var(--el-box-shadow-light);
|
|
302
334
|
}
|
|
303
335
|
.el-message.is-center {
|
|
304
336
|
justify-content: center;
|
|
@@ -306,64 +338,146 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
306
338
|
|
|
307
339
|
.el-message.is-plain {
|
|
308
340
|
background-color: var(--el-bg-color-overlay);
|
|
309
|
-
border-color: var(--el-bg-color-overlay);
|
|
310
341
|
box-shadow: var(--el-box-shadow-light);
|
|
342
|
+
border-color: var(--el-color-neutral-light-3);
|
|
311
343
|
}
|
|
312
344
|
|
|
313
345
|
.el-message p {
|
|
314
346
|
margin: 0;
|
|
315
347
|
}
|
|
348
|
+
.el-message .el-message__closeBtn {
|
|
349
|
+
cursor: pointer;
|
|
350
|
+
color: var(--el-message-close-icon-color);
|
|
351
|
+
font-size: var(--el-message-close-size);
|
|
352
|
+
}
|
|
353
|
+
.el-message .el-message__closeBtn:focus {
|
|
354
|
+
outline-width: 0;
|
|
355
|
+
}
|
|
356
|
+
.el-message .el-message__closeBtn:hover {
|
|
357
|
+
color: var(--el-message-close-hover-color);
|
|
358
|
+
}
|
|
359
|
+
.el-message .el-message__closeBtn:hover {
|
|
360
|
+
color: var(--el-color-info-light-6);
|
|
361
|
+
}
|
|
316
362
|
.el-message--success {
|
|
317
|
-
--el-message-bg-color: var(--el-color-success-light-
|
|
318
|
-
--el-message-border-color: var(--el-color-success-light-
|
|
363
|
+
--el-message-bg-color: var(--el-color-success-light-1);
|
|
364
|
+
--el-message-border-color: var(--el-color-success-light-3);
|
|
319
365
|
--el-message-text-color: var(--el-color-success);
|
|
320
366
|
}
|
|
321
367
|
.el-message--success .el-message__content {
|
|
322
368
|
color: var(--el-message-text-color);
|
|
323
369
|
overflow-wrap: break-word;
|
|
324
370
|
}
|
|
371
|
+
.el-message--success .el-message__closeBtn {
|
|
372
|
+
color: var(--el-color-success);
|
|
373
|
+
}
|
|
374
|
+
.el-message--success .el-message__closeBtn:hover {
|
|
375
|
+
color: var(--el-color-success-light-4);
|
|
376
|
+
}
|
|
377
|
+
.el-message--success .el-message__closeBtn:active {
|
|
378
|
+
color: var(--el-color-success-light-6);
|
|
379
|
+
}
|
|
325
380
|
|
|
326
381
|
.el-message .el-message-icon--success {
|
|
327
382
|
color: var(--el-message-text-color);
|
|
383
|
+
width: 12px;
|
|
384
|
+
height: 12px;
|
|
328
385
|
}
|
|
329
386
|
.el-message--info {
|
|
330
|
-
--el-message-bg-color: var(--el-color-info-light-
|
|
331
|
-
--el-message-border-color: var(--el-color-info-light-
|
|
387
|
+
--el-message-bg-color: var(--el-color-info-light-1);
|
|
388
|
+
--el-message-border-color: var(--el-color-info-light-3);
|
|
332
389
|
--el-message-text-color: var(--el-color-info);
|
|
333
390
|
}
|
|
334
391
|
.el-message--info .el-message__content {
|
|
335
392
|
color: var(--el-message-text-color);
|
|
336
393
|
overflow-wrap: break-word;
|
|
337
394
|
}
|
|
395
|
+
.el-message--info .el-message__closeBtn {
|
|
396
|
+
color: var(--el-color-info);
|
|
397
|
+
}
|
|
398
|
+
.el-message--info .el-message__closeBtn:hover {
|
|
399
|
+
color: var(--el-color-info-light-4);
|
|
400
|
+
}
|
|
401
|
+
.el-message--info .el-message__closeBtn:active {
|
|
402
|
+
color: var(--el-color-info-light-6);
|
|
403
|
+
}
|
|
338
404
|
|
|
339
405
|
.el-message .el-message-icon--info {
|
|
340
406
|
color: var(--el-message-text-color);
|
|
407
|
+
width: 12px;
|
|
408
|
+
height: 12px;
|
|
341
409
|
}
|
|
342
410
|
.el-message--warning {
|
|
343
|
-
--el-message-bg-color: var(--el-color-warning-light-
|
|
344
|
-
--el-message-border-color: var(--el-color-warning-light-
|
|
411
|
+
--el-message-bg-color: var(--el-color-warning-light-1);
|
|
412
|
+
--el-message-border-color: var(--el-color-warning-light-3);
|
|
345
413
|
--el-message-text-color: var(--el-color-warning);
|
|
346
414
|
}
|
|
347
415
|
.el-message--warning .el-message__content {
|
|
348
416
|
color: var(--el-message-text-color);
|
|
349
417
|
overflow-wrap: break-word;
|
|
350
418
|
}
|
|
419
|
+
.el-message--warning .el-message__closeBtn {
|
|
420
|
+
color: var(--el-color-warning);
|
|
421
|
+
}
|
|
422
|
+
.el-message--warning .el-message__closeBtn:hover {
|
|
423
|
+
color: var(--el-color-warning-light-4);
|
|
424
|
+
}
|
|
425
|
+
.el-message--warning .el-message__closeBtn:active {
|
|
426
|
+
color: var(--el-color-warning-light-6);
|
|
427
|
+
}
|
|
351
428
|
|
|
352
429
|
.el-message .el-message-icon--warning {
|
|
353
430
|
color: var(--el-message-text-color);
|
|
431
|
+
width: 12px;
|
|
432
|
+
height: 12px;
|
|
354
433
|
}
|
|
355
434
|
.el-message--error {
|
|
356
|
-
--el-message-bg-color: var(--el-color-error-light-
|
|
357
|
-
--el-message-border-color: var(--el-color-error-light-
|
|
435
|
+
--el-message-bg-color: var(--el-color-error-light-1);
|
|
436
|
+
--el-message-border-color: var(--el-color-error-light-3);
|
|
358
437
|
--el-message-text-color: var(--el-color-error);
|
|
359
438
|
}
|
|
360
439
|
.el-message--error .el-message__content {
|
|
361
440
|
color: var(--el-message-text-color);
|
|
362
441
|
overflow-wrap: break-word;
|
|
363
442
|
}
|
|
443
|
+
.el-message--error .el-message__closeBtn {
|
|
444
|
+
color: var(--el-color-error);
|
|
445
|
+
}
|
|
446
|
+
.el-message--error .el-message__closeBtn:hover {
|
|
447
|
+
color: var(--el-color-error-light-4);
|
|
448
|
+
}
|
|
449
|
+
.el-message--error .el-message__closeBtn:active {
|
|
450
|
+
color: var(--el-color-error-light-6);
|
|
451
|
+
}
|
|
364
452
|
|
|
365
453
|
.el-message .el-message-icon--error {
|
|
366
454
|
color: var(--el-message-text-color);
|
|
455
|
+
width: 12px;
|
|
456
|
+
height: 12px;
|
|
457
|
+
}
|
|
458
|
+
.el-message--danger {
|
|
459
|
+
--el-message-bg-color: var(--el-color-danger-light-1);
|
|
460
|
+
--el-message-border-color: var(--el-color-danger-light-3);
|
|
461
|
+
--el-message-text-color: var(--el-color-danger);
|
|
462
|
+
}
|
|
463
|
+
.el-message--danger .el-message__content {
|
|
464
|
+
color: var(--el-message-text-color);
|
|
465
|
+
overflow-wrap: break-word;
|
|
466
|
+
}
|
|
467
|
+
.el-message--danger .el-message__closeBtn {
|
|
468
|
+
color: var(--el-color-danger);
|
|
469
|
+
}
|
|
470
|
+
.el-message--danger .el-message__closeBtn:hover {
|
|
471
|
+
color: var(--el-color-danger-light-4);
|
|
472
|
+
}
|
|
473
|
+
.el-message--danger .el-message__closeBtn:active {
|
|
474
|
+
color: var(--el-color-danger-light-6);
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.el-message .el-message-icon--danger {
|
|
478
|
+
color: var(--el-message-text-color);
|
|
479
|
+
width: 12px;
|
|
480
|
+
height: 12px;
|
|
367
481
|
}
|
|
368
482
|
.el-message .el-message__badge {
|
|
369
483
|
position: absolute;
|
|
@@ -372,27 +486,43 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
372
486
|
}
|
|
373
487
|
.el-message__content {
|
|
374
488
|
padding: 0;
|
|
375
|
-
font-size:
|
|
376
|
-
line-height:
|
|
489
|
+
font-size: var(--el-message-font-size);
|
|
490
|
+
line-height: 14px;
|
|
377
491
|
}
|
|
378
492
|
.el-message__content:focus {
|
|
379
493
|
outline-width: 0;
|
|
380
494
|
}
|
|
381
495
|
|
|
382
|
-
.el-message .el-message__closeBtn {
|
|
383
|
-
cursor: pointer;
|
|
384
|
-
color: var(--el-message-close-icon-color);
|
|
385
|
-
font-size: var(--el-message-close-size);
|
|
386
|
-
}
|
|
387
|
-
.el-message .el-message__closeBtn:focus {
|
|
388
|
-
outline-width: 0;
|
|
389
|
-
}
|
|
390
|
-
.el-message .el-message__closeBtn:hover {
|
|
391
|
-
color: var(--el-message-close-hover-color);
|
|
392
|
-
}
|
|
393
|
-
|
|
394
496
|
.el-message-fade-enter-from,
|
|
395
497
|
.el-message-fade-leave-to {
|
|
396
498
|
opacity: 0;
|
|
397
499
|
transform: translate(-50%, -100%);
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
.el-message::before {
|
|
503
|
+
font-family: "iconsax" !important;
|
|
504
|
+
-webkit-font-smoothing: antialiased;
|
|
505
|
+
-moz-osx-font-smoothing: grayscale;
|
|
506
|
+
font-style: normal;
|
|
507
|
+
font-variant: normal;
|
|
508
|
+
font-weight: 600;
|
|
509
|
+
line-height: 1;
|
|
510
|
+
speak: never;
|
|
511
|
+
text-transform: none;
|
|
512
|
+
font-size: 12px;
|
|
513
|
+
}
|
|
514
|
+
.el-message.el-message--success::before {
|
|
515
|
+
content: "\ec2a";
|
|
516
|
+
}
|
|
517
|
+
.el-message.el-message--info::before {
|
|
518
|
+
content: "\eb4d";
|
|
519
|
+
}
|
|
520
|
+
.el-message.el-message--warning::before {
|
|
521
|
+
content: "\e9f6";
|
|
522
|
+
}
|
|
523
|
+
.el-message.el-message--danger::before, .el-message.el-message--error::before {
|
|
524
|
+
content: "\e9c8";
|
|
525
|
+
}
|
|
526
|
+
.el-message .el-message__icon {
|
|
527
|
+
display: none;
|
|
398
528
|
}
|
|
@@ -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
|
}
|
|
@@ -274,18 +302,18 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
274
302
|
**/
|
|
275
303
|
.el-notification {
|
|
276
304
|
--el-notification-width: 330px;
|
|
277
|
-
--el-notification-padding:
|
|
305
|
+
--el-notification-padding: 12px 26px 12px 16px;
|
|
278
306
|
--el-notification-radius: 8px;
|
|
279
307
|
--el-notification-shadow: var(--el-box-shadow-light);
|
|
280
|
-
--el-notification-border-color: var(--el-
|
|
308
|
+
--el-notification-border-color: var(--el-color-neutral-light-3);
|
|
281
309
|
--el-notification-icon-size: 24px;
|
|
282
|
-
--el-notification-close-font-size: var(--el-message-close-size,
|
|
310
|
+
--el-notification-close-font-size: var(--el-message-close-size, 12px);
|
|
283
311
|
--el-notification-group-margin-left: 13px;
|
|
284
312
|
--el-notification-group-margin-right: 8px;
|
|
285
313
|
--el-notification-content-font-size: var(--el-font-size-base);
|
|
286
|
-
--el-notification-content-color: var(--el-
|
|
287
|
-
--el-notification-title-font-size:
|
|
288
|
-
--el-notification-title-color: var(--el-
|
|
314
|
+
--el-notification-content-color: var(--el-color-neutral-light-7);
|
|
315
|
+
--el-notification-title-font-size: 14px;
|
|
316
|
+
--el-notification-title-color: var(--el-color-neutral-light-9);
|
|
289
317
|
--el-notification-close-color: var(--el-text-color-secondary);
|
|
290
318
|
--el-notification-close-hover-color: var(--el-text-color-regular);
|
|
291
319
|
}
|
|
@@ -312,12 +340,11 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
312
340
|
left: 16px;
|
|
313
341
|
}
|
|
314
342
|
.el-notification__group {
|
|
315
|
-
margin-left: var(--el-notification-group-margin-left);
|
|
316
343
|
margin-right: var(--el-notification-group-margin-right);
|
|
317
344
|
}
|
|
318
345
|
|
|
319
346
|
.el-notification__title {
|
|
320
|
-
font-weight:
|
|
347
|
+
font-weight: normal;
|
|
321
348
|
font-size: var(--el-notification-title-font-size);
|
|
322
349
|
line-height: var(--el-notification-icon-size);
|
|
323
350
|
color: var(--el-notification-title-color);
|
|
@@ -327,7 +354,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
327
354
|
.el-notification__content {
|
|
328
355
|
font-size: var(--el-notification-content-font-size);
|
|
329
356
|
line-height: 24px;
|
|
330
|
-
margin:
|
|
357
|
+
margin: 12px 0 0;
|
|
331
358
|
color: var(--el-notification-content-color);
|
|
332
359
|
}
|
|
333
360
|
.el-notification__content p {
|
|
@@ -338,6 +365,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
338
365
|
height: var(--el-notification-icon-size);
|
|
339
366
|
width: var(--el-notification-icon-size);
|
|
340
367
|
font-size: var(--el-notification-icon-size);
|
|
368
|
+
margin-right: 8px;
|
|
341
369
|
}
|
|
342
370
|
.el-notification .el-notification__closeBtn {
|
|
343
371
|
position: absolute;
|
|
@@ -366,6 +394,10 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
366
394
|
--el-notification-icon-color: var(--el-color-error);
|
|
367
395
|
color: var(--el-notification-icon-color);
|
|
368
396
|
}
|
|
397
|
+
.el-notification .el-notification--danger {
|
|
398
|
+
--el-notification-icon-color: var(--el-color-danger);
|
|
399
|
+
color: var(--el-notification-icon-color);
|
|
400
|
+
}
|
|
369
401
|
|
|
370
402
|
.el-notification-fade-enter-from.right {
|
|
371
403
|
right: 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
|
}
|
|
@@ -273,6 +301,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
273
301
|
}
|
|
274
302
|
**/
|
|
275
303
|
.el-select-dropdown__item {
|
|
304
|
+
display: flex;
|
|
276
305
|
font-size: var(--el-font-size-small);
|
|
277
306
|
font-weight: 500;
|
|
278
307
|
padding: 0 44px 0 16px;
|
|
@@ -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
|
}
|