yd-admin 0.1.13 → 0.1.14
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/dist/index.js +2273 -178
- package/dist/style.css +337 -325
- package/package.json +4 -1
package/dist/style.css
CHANGED
|
@@ -440,30 +440,30 @@ to {
|
|
|
440
440
|
text-align: center;
|
|
441
441
|
}
|
|
442
442
|
|
|
443
|
-
.yd-select-wrapper[data-v-
|
|
443
|
+
.yd-select-wrapper[data-v-90548156] {
|
|
444
444
|
position: relative;
|
|
445
445
|
display: inline-flex;
|
|
446
446
|
flex-direction: column;
|
|
447
447
|
width: 100%;
|
|
448
448
|
gap: var(--yd-spacing-sm);
|
|
449
449
|
}
|
|
450
|
-
.yd-select__label[data-v-
|
|
450
|
+
.yd-select__label[data-v-90548156] {
|
|
451
451
|
font-size: var(--yd-font-size-sm);
|
|
452
452
|
font-weight: var(--yd-font-weight-medium);
|
|
453
453
|
color: var(--yd-color-fg);
|
|
454
454
|
}
|
|
455
|
-
.yd-select__required[data-v-
|
|
455
|
+
.yd-select__required[data-v-90548156] {
|
|
456
456
|
color: var(--yd-color-error);
|
|
457
457
|
margin-left: 2px;
|
|
458
458
|
}
|
|
459
|
-
.yd-select__control[data-v-
|
|
459
|
+
.yd-select__control[data-v-90548156] {
|
|
460
460
|
position: relative;
|
|
461
461
|
display: flex;
|
|
462
462
|
align-items: center;
|
|
463
463
|
cursor: pointer;
|
|
464
464
|
}
|
|
465
|
-
.yd-select__input[data-v-
|
|
466
|
-
.yd-select__display[data-v-
|
|
465
|
+
.yd-select__input[data-v-90548156],
|
|
466
|
+
.yd-select__display[data-v-90548156] {
|
|
467
467
|
width: 100%;
|
|
468
468
|
padding: var(--yd-spacing-sm) var(--yd-spacing-xl) var(--yd-spacing-sm) var(--yd-spacing-base);
|
|
469
469
|
border: none;
|
|
@@ -473,13 +473,13 @@ to {
|
|
|
473
473
|
font-size: var(--yd-font-size-base);
|
|
474
474
|
color: var(--yd-color-fg);
|
|
475
475
|
}
|
|
476
|
-
.yd-select__display--placeholder[data-v-
|
|
476
|
+
.yd-select__display--placeholder[data-v-90548156] {
|
|
477
477
|
color: var(--yd-color-muted-fg);
|
|
478
478
|
}
|
|
479
|
-
.yd-select__input[data-v-
|
|
479
|
+
.yd-select__input[data-v-90548156]:focus {
|
|
480
480
|
border-color: var(--yd-color-primary-500);
|
|
481
481
|
}
|
|
482
|
-
.yd-select__clear[data-v-
|
|
482
|
+
.yd-select__clear[data-v-90548156] {
|
|
483
483
|
position: absolute;
|
|
484
484
|
right: var(--yd-spacing-xl);
|
|
485
485
|
cursor: pointer;
|
|
@@ -488,10 +488,10 @@ to {
|
|
|
488
488
|
align-items: center;
|
|
489
489
|
transition: color var(--yd-transition-fast);
|
|
490
490
|
}
|
|
491
|
-
.yd-select__clear[data-v-
|
|
491
|
+
.yd-select__clear[data-v-90548156]:hover {
|
|
492
492
|
color: var(--yd-color-fg);
|
|
493
493
|
}
|
|
494
|
-
.yd-select__arrow[data-v-
|
|
494
|
+
.yd-select__arrow[data-v-90548156] {
|
|
495
495
|
position: absolute;
|
|
496
496
|
right: var(--yd-spacing-sm);
|
|
497
497
|
pointer-events: none;
|
|
@@ -499,40 +499,40 @@ to {
|
|
|
499
499
|
display: flex;
|
|
500
500
|
align-items: center;
|
|
501
501
|
}
|
|
502
|
-
.yd-select__message[data-v-
|
|
502
|
+
.yd-select__message[data-v-90548156] {
|
|
503
503
|
font-size: var(--yd-font-size-xs);
|
|
504
504
|
color: var(--yd-color-muted-fg);
|
|
505
505
|
}
|
|
506
|
-
.yd-select__message--error[data-v-
|
|
506
|
+
.yd-select__message--error[data-v-90548156] {
|
|
507
507
|
color: var(--yd-color-error);
|
|
508
508
|
}
|
|
509
509
|
|
|
510
510
|
/* Wrapper variants */
|
|
511
|
-
.yd-select-wrapper--default .yd-select__input[data-v-
|
|
512
|
-
.yd-select-wrapper--default .yd-select__display[data-v-
|
|
511
|
+
.yd-select-wrapper--default .yd-select__input[data-v-90548156],
|
|
512
|
+
.yd-select-wrapper--default .yd-select__display[data-v-90548156] {
|
|
513
513
|
border-bottom: 1px solid var(--yd-color-border);
|
|
514
514
|
}
|
|
515
|
-
.yd-select-wrapper--bordered .yd-select__input[data-v-
|
|
516
|
-
.yd-select-wrapper--bordered .yd-select__display[data-v-
|
|
515
|
+
.yd-select-wrapper--bordered .yd-select__input[data-v-90548156],
|
|
516
|
+
.yd-select-wrapper--bordered .yd-select__display[data-v-90548156] {
|
|
517
517
|
border: 1px solid var(--yd-color-border);
|
|
518
518
|
border-radius: var(--yd-radius-base);
|
|
519
519
|
}
|
|
520
|
-
.yd-select-wrapper--filled .yd-select__input[data-v-
|
|
521
|
-
.yd-select-wrapper--filled .yd-select__display[data-v-
|
|
520
|
+
.yd-select-wrapper--filled .yd-select__input[data-v-90548156],
|
|
521
|
+
.yd-select-wrapper--filled .yd-select__display[data-v-90548156] {
|
|
522
522
|
background: var(--yd-color-muted);
|
|
523
523
|
border-radius: var(--yd-radius-base);
|
|
524
524
|
}
|
|
525
|
-
.yd-select-wrapper--disabled[data-v-
|
|
525
|
+
.yd-select-wrapper--disabled[data-v-90548156] {
|
|
526
526
|
opacity: 0.6;
|
|
527
527
|
pointer-events: none;
|
|
528
528
|
}
|
|
529
|
-
.yd-select-wrapper--error.yd-select-wrapper--bordered .yd-select__input[data-v-
|
|
530
|
-
.yd-select-wrapper--error.yd-select-wrapper--bordered .yd-select__display[data-v-
|
|
529
|
+
.yd-select-wrapper--error.yd-select-wrapper--bordered .yd-select__input[data-v-90548156],
|
|
530
|
+
.yd-select-wrapper--error.yd-select-wrapper--bordered .yd-select__display[data-v-90548156] {
|
|
531
531
|
border-color: var(--yd-color-error);
|
|
532
532
|
}
|
|
533
533
|
|
|
534
534
|
/* Dropdown */
|
|
535
|
-
.yd-select__dropdown[data-v-
|
|
535
|
+
.yd-select__dropdown[data-v-90548156] {
|
|
536
536
|
position: absolute;
|
|
537
537
|
z-index: var(--yd-z-index-dropdown);
|
|
538
538
|
background: var(--yd-color-bg);
|
|
@@ -541,18 +541,18 @@ to {
|
|
|
541
541
|
overflow: hidden;
|
|
542
542
|
will-change: opacity, transform;
|
|
543
543
|
}
|
|
544
|
-
.yd-select__loading[data-v-
|
|
545
|
-
.yd-select__empty[data-v-
|
|
544
|
+
.yd-select__loading[data-v-90548156],
|
|
545
|
+
.yd-select__empty[data-v-90548156] {
|
|
546
546
|
padding: var(--yd-spacing-xl);
|
|
547
547
|
text-align: center;
|
|
548
548
|
color: var(--yd-color-muted-fg);
|
|
549
549
|
font-size: var(--yd-font-size-sm);
|
|
550
550
|
}
|
|
551
|
-
.yd-select__list[data-v-
|
|
551
|
+
.yd-select__list[data-v-90548156] {
|
|
552
552
|
overflow-y: auto;
|
|
553
553
|
padding: var(--yd-spacing-xs) 0;
|
|
554
554
|
}
|
|
555
|
-
.yd-select__option[data-v-
|
|
555
|
+
.yd-select__option[data-v-90548156] {
|
|
556
556
|
display: flex;
|
|
557
557
|
align-items: center;
|
|
558
558
|
justify-content: space-between;
|
|
@@ -562,37 +562,37 @@ to {
|
|
|
562
562
|
color: var(--yd-color-fg);
|
|
563
563
|
transition: background var(--yd-transition-fast);
|
|
564
564
|
}
|
|
565
|
-
.yd-select__option[data-v-
|
|
565
|
+
.yd-select__option[data-v-90548156]:hover:not(.yd-select__option--disabled) {
|
|
566
566
|
background: var(--yd-color-muted);
|
|
567
567
|
}
|
|
568
|
-
.yd-select__option--active[data-v-
|
|
568
|
+
.yd-select__option--active[data-v-90548156] {
|
|
569
569
|
color: var(--yd-color-primary-600);
|
|
570
570
|
font-weight: var(--yd-font-weight-medium);
|
|
571
571
|
background: var(--yd-color-primary-50);
|
|
572
572
|
}
|
|
573
|
-
.yd-select__option--disabled[data-v-
|
|
573
|
+
.yd-select__option--disabled[data-v-90548156] {
|
|
574
574
|
opacity: 0.5;
|
|
575
575
|
cursor: not-allowed;
|
|
576
576
|
}
|
|
577
|
-
.yd-select__check[data-v-
|
|
577
|
+
.yd-select__check[data-v-90548156] {
|
|
578
578
|
color: var(--yd-color-primary-500);
|
|
579
579
|
}
|
|
580
|
-
.yd-select__group[data-v-
|
|
580
|
+
.yd-select__group[data-v-90548156] {
|
|
581
581
|
padding: var(--yd-spacing-xs) 0;
|
|
582
582
|
}
|
|
583
|
-
.yd-select__group-title[data-v-
|
|
583
|
+
.yd-select__group-title[data-v-90548156] {
|
|
584
584
|
padding: var(--yd-spacing-xs) var(--yd-spacing-base);
|
|
585
585
|
font-size: var(--yd-font-size-xs);
|
|
586
586
|
color: var(--yd-color-muted-fg);
|
|
587
587
|
font-weight: var(--yd-font-weight-medium);
|
|
588
588
|
}
|
|
589
|
-
.yd-select-dropdown-enter-active[data-v-
|
|
590
|
-
.yd-select-dropdown-leave-active[data-v-
|
|
589
|
+
.yd-select-dropdown-enter-active[data-v-90548156],
|
|
590
|
+
.yd-select-dropdown-leave-active[data-v-90548156] {
|
|
591
591
|
will-change: opacity;
|
|
592
592
|
transition: opacity 0.2s ease;
|
|
593
593
|
}
|
|
594
|
-
.yd-select-dropdown-enter-from[data-v-
|
|
595
|
-
.yd-select-dropdown-leave-to[data-v-
|
|
594
|
+
.yd-select-dropdown-enter-from[data-v-90548156],
|
|
595
|
+
.yd-select-dropdown-leave-to[data-v-90548156] {
|
|
596
596
|
opacity: 0;
|
|
597
597
|
}
|
|
598
598
|
|
|
@@ -1104,26 +1104,26 @@ to {
|
|
|
1104
1104
|
height: 24px;
|
|
1105
1105
|
}
|
|
1106
1106
|
|
|
1107
|
-
.yd-slider[data-v-
|
|
1107
|
+
.yd-slider[data-v-57b592ff] {
|
|
1108
1108
|
position: relative;
|
|
1109
1109
|
width: 100%;
|
|
1110
1110
|
padding: 12px 0;
|
|
1111
1111
|
}
|
|
1112
|
-
.yd-slider__rail[data-v-
|
|
1112
|
+
.yd-slider__rail[data-v-57b592ff] {
|
|
1113
1113
|
position: relative;
|
|
1114
1114
|
height: 6px;
|
|
1115
1115
|
background: var(--yd-color-muted);
|
|
1116
1116
|
border-radius: var(--yd-radius-full);
|
|
1117
1117
|
cursor: pointer;
|
|
1118
1118
|
}
|
|
1119
|
-
.yd-slider__track[data-v-
|
|
1119
|
+
.yd-slider__track[data-v-57b592ff] {
|
|
1120
1120
|
position: absolute;
|
|
1121
1121
|
height: 100%;
|
|
1122
1122
|
background: var(--yd-color-primary-500);
|
|
1123
1123
|
border-radius: var(--yd-radius-full);
|
|
1124
1124
|
transition: none;
|
|
1125
1125
|
}
|
|
1126
|
-
.yd-slider__handle[data-v-
|
|
1126
|
+
.yd-slider__handle[data-v-57b592ff] {
|
|
1127
1127
|
position: absolute;
|
|
1128
1128
|
top: 50%;
|
|
1129
1129
|
width: 18px;
|
|
@@ -1136,10 +1136,14 @@ to {
|
|
|
1136
1136
|
transition: box-shadow var(--yd-transition-fast);
|
|
1137
1137
|
box-shadow: var(--yd-shadow-sm);
|
|
1138
1138
|
}
|
|
1139
|
-
.yd-slider__handle[data-v-
|
|
1139
|
+
.yd-slider__handle[data-v-57b592ff]:hover {
|
|
1140
1140
|
box-shadow: 0 0 0 4px var(--yd-color-primary-100);
|
|
1141
1141
|
}
|
|
1142
|
-
.yd-
|
|
1142
|
+
.yd-slider__handle[data-v-57b592ff]:focus-visible {
|
|
1143
|
+
outline: 2px solid var(--yd-color-primary);
|
|
1144
|
+
outline-offset: 2px;
|
|
1145
|
+
}
|
|
1146
|
+
.yd-slider__tooltip[data-v-57b592ff] {
|
|
1143
1147
|
position: absolute;
|
|
1144
1148
|
bottom: 100%;
|
|
1145
1149
|
left: 0;
|
|
@@ -1152,10 +1156,10 @@ to {
|
|
|
1152
1156
|
margin-bottom: 8px;
|
|
1153
1157
|
white-space: nowrap;
|
|
1154
1158
|
}
|
|
1155
|
-
.yd-slider__handle[data-v-
|
|
1159
|
+
.yd-slider__handle[data-v-57b592ff]:hover {
|
|
1156
1160
|
box-shadow: 0 0 0 4px var(--yd-color-primary-100);
|
|
1157
1161
|
}
|
|
1158
|
-
.yd-slider__tooltip[data-v-
|
|
1162
|
+
.yd-slider__tooltip[data-v-57b592ff] {
|
|
1159
1163
|
position: absolute;
|
|
1160
1164
|
bottom: 100%;
|
|
1161
1165
|
left: 0;
|
|
@@ -1168,23 +1172,23 @@ to {
|
|
|
1168
1172
|
margin-bottom: 8px;
|
|
1169
1173
|
white-space: nowrap;
|
|
1170
1174
|
}
|
|
1171
|
-
.yd-slider--disabled[data-v-
|
|
1175
|
+
.yd-slider--disabled[data-v-57b592ff] {
|
|
1172
1176
|
pointer-events: none;
|
|
1173
1177
|
opacity: 0.6;
|
|
1174
1178
|
}
|
|
1175
|
-
.yd-slider--disabled[data-v-
|
|
1179
|
+
.yd-slider--disabled[data-v-57b592ff] {
|
|
1176
1180
|
pointer-events: none;
|
|
1177
1181
|
opacity: 0.6;
|
|
1178
1182
|
}
|
|
1179
|
-
.yd-slider--disabled .yd-slider__handle[data-v-
|
|
1183
|
+
.yd-slider--disabled .yd-slider__handle[data-v-57b592ff] {
|
|
1180
1184
|
cursor: not-allowed;
|
|
1181
1185
|
}
|
|
1182
1186
|
|
|
1183
|
-
.yd-date-picker[data-v-
|
|
1187
|
+
.yd-date-picker[data-v-1692914b] {
|
|
1184
1188
|
position: relative;
|
|
1185
1189
|
display: inline-block;
|
|
1186
1190
|
}
|
|
1187
|
-
.yd-date-picker__input[data-v-
|
|
1191
|
+
.yd-date-picker__input[data-v-1692914b] {
|
|
1188
1192
|
padding: var(--yd-spacing-sm) var(--yd-spacing-xl) var(--yd-spacing-sm) var(--yd-spacing-base);
|
|
1189
1193
|
border: 1px solid var(--yd-color-border);
|
|
1190
1194
|
border-radius: var(--yd-radius-base);
|
|
@@ -1194,14 +1198,14 @@ to {
|
|
|
1194
1198
|
cursor: pointer;
|
|
1195
1199
|
width: 200px;
|
|
1196
1200
|
}
|
|
1197
|
-
.yd-date-picker__icon[data-v-
|
|
1201
|
+
.yd-date-picker__icon[data-v-1692914b] {
|
|
1198
1202
|
position: absolute;
|
|
1199
1203
|
right: var(--yd-spacing-sm);
|
|
1200
1204
|
top: 50%;
|
|
1201
1205
|
transform: translateY(-50%);
|
|
1202
1206
|
cursor: pointer;
|
|
1203
1207
|
}
|
|
1204
|
-
.yd-date-picker__panel[data-v-
|
|
1208
|
+
.yd-date-picker__panel[data-v-1692914b] {
|
|
1205
1209
|
padding: var(--yd-spacing-base);
|
|
1206
1210
|
background: var(--yd-color-bg);
|
|
1207
1211
|
border: 1px solid var(--yd-color-border);
|
|
@@ -1209,18 +1213,18 @@ to {
|
|
|
1209
1213
|
box-shadow: var(--yd-shadow-lg);
|
|
1210
1214
|
width: 280px;
|
|
1211
1215
|
}
|
|
1212
|
-
.yd-date-picker__view[data-v-
|
|
1216
|
+
.yd-date-picker__view[data-v-1692914b] {
|
|
1213
1217
|
min-height: 240px;
|
|
1214
1218
|
}
|
|
1215
|
-
.yd-date-picker__header[data-v-
|
|
1216
|
-
.yd-date-picker__view-header[data-v-
|
|
1219
|
+
.yd-date-picker__header[data-v-1692914b],
|
|
1220
|
+
.yd-date-picker__view-header[data-v-1692914b] {
|
|
1217
1221
|
display: flex;
|
|
1218
1222
|
align-items: center;
|
|
1219
1223
|
justify-content: space-between;
|
|
1220
1224
|
margin-bottom: var(--yd-spacing-sm);
|
|
1221
1225
|
}
|
|
1222
|
-
.yd-date-picker__header button[data-v-
|
|
1223
|
-
.yd-date-picker__view-header button[data-v-
|
|
1226
|
+
.yd-date-picker__header button[data-v-1692914b],
|
|
1227
|
+
.yd-date-picker__view-header button[data-v-1692914b] {
|
|
1224
1228
|
background: none;
|
|
1225
1229
|
border: none;
|
|
1226
1230
|
cursor: pointer;
|
|
@@ -1228,10 +1232,10 @@ to {
|
|
|
1228
1232
|
color: var(--yd-color-fg);
|
|
1229
1233
|
padding: 0 var(--yd-spacing-sm);
|
|
1230
1234
|
}
|
|
1231
|
-
.yd-date-picker__header span[data-v-
|
|
1235
|
+
.yd-date-picker__header span[data-v-1692914b] {
|
|
1232
1236
|
font-weight: var(--yd-font-weight-medium);
|
|
1233
1237
|
}
|
|
1234
|
-
.yd-date-picker__weekdays[data-v-
|
|
1238
|
+
.yd-date-picker__weekdays[data-v-1692914b] {
|
|
1235
1239
|
display: grid;
|
|
1236
1240
|
grid-template-columns: repeat(7, 1fr);
|
|
1237
1241
|
text-align: center;
|
|
@@ -1239,12 +1243,12 @@ to {
|
|
|
1239
1243
|
color: var(--yd-color-muted-fg);
|
|
1240
1244
|
margin-bottom: var(--yd-spacing-xs);
|
|
1241
1245
|
}
|
|
1242
|
-
.yd-date-picker__days[data-v-
|
|
1246
|
+
.yd-date-picker__days[data-v-1692914b] {
|
|
1243
1247
|
display: grid;
|
|
1244
1248
|
grid-template-columns: repeat(7, 1fr);
|
|
1245
1249
|
gap: 2px;
|
|
1246
1250
|
}
|
|
1247
|
-
.yd-date-picker__day[data-v-
|
|
1251
|
+
.yd-date-picker__day[data-v-1692914b] {
|
|
1248
1252
|
display: flex;
|
|
1249
1253
|
align-items: center;
|
|
1250
1254
|
justify-content: center;
|
|
@@ -1257,32 +1261,36 @@ to {
|
|
|
1257
1261
|
color: var(--yd-color-fg);
|
|
1258
1262
|
transition: all var(--yd-transition-fast);
|
|
1259
1263
|
}
|
|
1260
|
-
.yd-date-picker__day[data-v-
|
|
1264
|
+
.yd-date-picker__day[data-v-1692914b]:hover:not(:disabled) {
|
|
1261
1265
|
background: var(--yd-color-muted);
|
|
1262
1266
|
}
|
|
1263
|
-
.yd-date-picker__day--other[data-v-
|
|
1267
|
+
.yd-date-picker__day--other[data-v-1692914b] {
|
|
1264
1268
|
color: var(--yd-color-muted-fg);
|
|
1265
1269
|
}
|
|
1266
|
-
.yd-date-picker__day--selected[data-v-
|
|
1270
|
+
.yd-date-picker__day--selected[data-v-1692914b] {
|
|
1267
1271
|
background: var(--yd-color-primary-500);
|
|
1268
1272
|
color: var(--yd-color-bg);
|
|
1269
1273
|
}
|
|
1270
|
-
.yd-date-picker__day--today[data-v-
|
|
1274
|
+
.yd-date-picker__day--today[data-v-1692914b] {
|
|
1271
1275
|
font-weight: var(--yd-font-weight-bold);
|
|
1272
1276
|
border: 1px solid var(--yd-color-primary-500);
|
|
1273
1277
|
}
|
|
1274
|
-
.yd-date-picker__day[data-v-
|
|
1278
|
+
.yd-date-picker__day--focused[data-v-1692914b] {
|
|
1279
|
+
outline: 2px solid var(--yd-color-primary);
|
|
1280
|
+
outline-offset: -2px;
|
|
1281
|
+
}
|
|
1282
|
+
.yd-date-picker__day[data-v-1692914b]:disabled {
|
|
1275
1283
|
opacity: 0.3;
|
|
1276
1284
|
cursor: default;
|
|
1277
1285
|
}
|
|
1278
|
-
.yd-date-picker__years[data-v-
|
|
1279
|
-
.yd-date-picker__months[data-v-
|
|
1286
|
+
.yd-date-picker__years[data-v-1692914b],
|
|
1287
|
+
.yd-date-picker__months[data-v-1692914b] {
|
|
1280
1288
|
display: grid;
|
|
1281
1289
|
grid-template-columns: repeat(3, 1fr);
|
|
1282
1290
|
gap: var(--yd-spacing-sm);
|
|
1283
1291
|
}
|
|
1284
|
-
.yd-date-picker__year[data-v-
|
|
1285
|
-
.yd-date-picker__month[data-v-
|
|
1292
|
+
.yd-date-picker__year[data-v-1692914b],
|
|
1293
|
+
.yd-date-picker__month[data-v-1692914b] {
|
|
1286
1294
|
display: flex;
|
|
1287
1295
|
align-items: center;
|
|
1288
1296
|
justify-content: center;
|
|
@@ -1295,12 +1303,12 @@ to {
|
|
|
1295
1303
|
color: var(--yd-color-fg);
|
|
1296
1304
|
transition: all var(--yd-transition-fast);
|
|
1297
1305
|
}
|
|
1298
|
-
.yd-date-picker__year[data-v-
|
|
1299
|
-
.yd-date-picker__month[data-v-
|
|
1306
|
+
.yd-date-picker__year[data-v-1692914b]:hover,
|
|
1307
|
+
.yd-date-picker__month[data-v-1692914b]:hover {
|
|
1300
1308
|
background: var(--yd-color-muted);
|
|
1301
1309
|
}
|
|
1302
|
-
.yd-date-picker__year--selected[data-v-
|
|
1303
|
-
.yd-date-picker__month--selected[data-v-
|
|
1310
|
+
.yd-date-picker__year--selected[data-v-1692914b],
|
|
1311
|
+
.yd-date-picker__month--selected[data-v-1692914b] {
|
|
1304
1312
|
background: var(--yd-color-primary-500);
|
|
1305
1313
|
color: var(--yd-color-bg);
|
|
1306
1314
|
}
|
|
@@ -1411,11 +1419,11 @@ to {
|
|
|
1411
1419
|
cursor: default;
|
|
1412
1420
|
}
|
|
1413
1421
|
|
|
1414
|
-
.yd-time-picker[data-v-
|
|
1422
|
+
.yd-time-picker[data-v-9ebec461] {
|
|
1415
1423
|
position: relative;
|
|
1416
1424
|
display: inline-block;
|
|
1417
1425
|
}
|
|
1418
|
-
.yd-time-picker__input[data-v-
|
|
1426
|
+
.yd-time-picker__input[data-v-9ebec461] {
|
|
1419
1427
|
padding: var(--yd-spacing-sm) var(--yd-spacing-base);
|
|
1420
1428
|
border: 1px solid var(--yd-color-border);
|
|
1421
1429
|
border-radius: var(--yd-radius-base);
|
|
@@ -1425,7 +1433,7 @@ to {
|
|
|
1425
1433
|
cursor: pointer;
|
|
1426
1434
|
width: 140px;
|
|
1427
1435
|
}
|
|
1428
|
-
.yd-time-picker__panel[data-v-
|
|
1436
|
+
.yd-time-picker__panel[data-v-9ebec461] {
|
|
1429
1437
|
position: absolute;
|
|
1430
1438
|
top: 100%;
|
|
1431
1439
|
left: 0;
|
|
@@ -1437,18 +1445,22 @@ to {
|
|
|
1437
1445
|
border-radius: var(--yd-radius-md);
|
|
1438
1446
|
box-shadow: var(--yd-shadow-lg);
|
|
1439
1447
|
}
|
|
1440
|
-
.yd-time-picker__columns[data-v-
|
|
1448
|
+
.yd-time-picker__columns[data-v-9ebec461] {
|
|
1441
1449
|
display: flex;
|
|
1442
1450
|
gap: var(--yd-spacing-sm);
|
|
1443
1451
|
}
|
|
1444
|
-
.yd-time-picker__column[data-v-
|
|
1452
|
+
.yd-time-picker__column[data-v-9ebec461] {
|
|
1445
1453
|
width: 56px;
|
|
1446
1454
|
height: 180px;
|
|
1447
1455
|
overflow-y: auto;
|
|
1448
1456
|
border: 1px solid var(--yd-color-border);
|
|
1449
1457
|
border-radius: var(--yd-radius-sm);
|
|
1450
1458
|
}
|
|
1451
|
-
.yd-time-
|
|
1459
|
+
.yd-time-picker__column[data-v-9ebec461]:focus-within {
|
|
1460
|
+
border-color: var(--yd-color-primary);
|
|
1461
|
+
box-shadow: 0 0 0 2px var(--yd-color-primary-100);
|
|
1462
|
+
}
|
|
1463
|
+
.yd-time-picker__item[data-v-9ebec461] {
|
|
1452
1464
|
display: flex;
|
|
1453
1465
|
align-items: center;
|
|
1454
1466
|
justify-content: center;
|
|
@@ -1458,10 +1470,10 @@ to {
|
|
|
1458
1470
|
color: var(--yd-color-fg);
|
|
1459
1471
|
transition: all var(--yd-transition-fast);
|
|
1460
1472
|
}
|
|
1461
|
-
.yd-time-picker__item[data-v-
|
|
1473
|
+
.yd-time-picker__item[data-v-9ebec461]:hover {
|
|
1462
1474
|
background: var(--yd-color-muted);
|
|
1463
1475
|
}
|
|
1464
|
-
.yd-time-picker__item--active[data-v-
|
|
1476
|
+
.yd-time-picker__item--active[data-v-9ebec461] {
|
|
1465
1477
|
background: var(--yd-color-primary-500);
|
|
1466
1478
|
color: var(--yd-color-bg);
|
|
1467
1479
|
}
|
|
@@ -1546,12 +1558,12 @@ to {
|
|
|
1546
1558
|
font-size: var(--yd-font-size-sm);
|
|
1547
1559
|
}
|
|
1548
1560
|
|
|
1549
|
-
.yd-auto-complete[data-v-
|
|
1561
|
+
.yd-auto-complete[data-v-4cddacd2] {
|
|
1550
1562
|
position: relative;
|
|
1551
1563
|
display: inline-block;
|
|
1552
1564
|
width: 100%;
|
|
1553
1565
|
}
|
|
1554
|
-
.yd-auto-complete__dropdown[data-v-
|
|
1566
|
+
.yd-auto-complete__dropdown[data-v-4cddacd2] {
|
|
1555
1567
|
position: absolute;
|
|
1556
1568
|
top: 100%;
|
|
1557
1569
|
left: 0;
|
|
@@ -1565,15 +1577,15 @@ to {
|
|
|
1565
1577
|
border-radius: var(--yd-radius-md);
|
|
1566
1578
|
box-shadow: var(--yd-shadow-lg);
|
|
1567
1579
|
}
|
|
1568
|
-
.yd-auto-complete__option[data-v-
|
|
1580
|
+
.yd-auto-complete__option[data-v-4cddacd2] {
|
|
1569
1581
|
padding: var(--yd-spacing-sm) var(--yd-spacing-base);
|
|
1570
1582
|
cursor: pointer;
|
|
1571
1583
|
font-size: var(--yd-font-size-sm);
|
|
1572
1584
|
color: var(--yd-color-fg);
|
|
1573
1585
|
transition: background var(--yd-transition-fast);
|
|
1574
1586
|
}
|
|
1575
|
-
.yd-auto-complete__option[data-v-
|
|
1576
|
-
.yd-auto-complete__option--active[data-v-
|
|
1587
|
+
.yd-auto-complete__option[data-v-4cddacd2]:hover,
|
|
1588
|
+
.yd-auto-complete__option--active[data-v-4cddacd2] {
|
|
1577
1589
|
background: var(--yd-color-muted);
|
|
1578
1590
|
}
|
|
1579
1591
|
|
|
@@ -2499,30 +2511,30 @@ to {
|
|
|
2499
2511
|
color: var(--yd-color-error);
|
|
2500
2512
|
}
|
|
2501
2513
|
|
|
2502
|
-
.yd-tree-select-wrapper[data-v-
|
|
2514
|
+
.yd-tree-select-wrapper[data-v-338c5a59] {
|
|
2503
2515
|
position: relative;
|
|
2504
2516
|
display: inline-flex;
|
|
2505
2517
|
flex-direction: column;
|
|
2506
2518
|
width: 100%;
|
|
2507
2519
|
gap: var(--yd-spacing-sm);
|
|
2508
2520
|
}
|
|
2509
|
-
.yd-tree-select__label[data-v-
|
|
2521
|
+
.yd-tree-select__label[data-v-338c5a59] {
|
|
2510
2522
|
font-size: var(--yd-font-size-sm);
|
|
2511
2523
|
font-weight: var(--yd-font-weight-medium);
|
|
2512
2524
|
color: var(--yd-color-fg);
|
|
2513
2525
|
}
|
|
2514
|
-
.yd-tree-select__required[data-v-
|
|
2526
|
+
.yd-tree-select__required[data-v-338c5a59] {
|
|
2515
2527
|
color: var(--yd-color-error);
|
|
2516
2528
|
margin-left: 2px;
|
|
2517
2529
|
}
|
|
2518
|
-
.yd-tree-select__control[data-v-
|
|
2530
|
+
.yd-tree-select__control[data-v-338c5a59] {
|
|
2519
2531
|
position: relative;
|
|
2520
2532
|
display: flex;
|
|
2521
2533
|
align-items: center;
|
|
2522
2534
|
cursor: pointer;
|
|
2523
2535
|
}
|
|
2524
|
-
.yd-tree-select__input[data-v-
|
|
2525
|
-
.yd-tree-select__display[data-v-
|
|
2536
|
+
.yd-tree-select__input[data-v-338c5a59],
|
|
2537
|
+
.yd-tree-select__display[data-v-338c5a59] {
|
|
2526
2538
|
width: 100%;
|
|
2527
2539
|
padding: var(--yd-spacing-sm) var(--yd-spacing-xl) var(--yd-spacing-sm) var(--yd-spacing-base);
|
|
2528
2540
|
border: none;
|
|
@@ -2532,10 +2544,10 @@ to {
|
|
|
2532
2544
|
font-size: var(--yd-font-size-base);
|
|
2533
2545
|
color: var(--yd-color-fg);
|
|
2534
2546
|
}
|
|
2535
|
-
.yd-tree-select__display--placeholder[data-v-
|
|
2547
|
+
.yd-tree-select__display--placeholder[data-v-338c5a59] {
|
|
2536
2548
|
color: var(--yd-color-muted-fg);
|
|
2537
2549
|
}
|
|
2538
|
-
.yd-tree-select__clear[data-v-
|
|
2550
|
+
.yd-tree-select__clear[data-v-338c5a59] {
|
|
2539
2551
|
position: absolute;
|
|
2540
2552
|
right: var(--yd-spacing-xl);
|
|
2541
2553
|
cursor: pointer;
|
|
@@ -2544,10 +2556,10 @@ to {
|
|
|
2544
2556
|
align-items: center;
|
|
2545
2557
|
transition: color var(--yd-transition-fast);
|
|
2546
2558
|
}
|
|
2547
|
-
.yd-tree-select__clear[data-v-
|
|
2559
|
+
.yd-tree-select__clear[data-v-338c5a59]:hover {
|
|
2548
2560
|
color: var(--yd-color-fg);
|
|
2549
2561
|
}
|
|
2550
|
-
.yd-tree-select__arrow[data-v-
|
|
2562
|
+
.yd-tree-select__arrow[data-v-338c5a59] {
|
|
2551
2563
|
position: absolute;
|
|
2552
2564
|
right: var(--yd-spacing-sm);
|
|
2553
2565
|
pointer-events: none;
|
|
@@ -2555,40 +2567,40 @@ to {
|
|
|
2555
2567
|
display: flex;
|
|
2556
2568
|
align-items: center;
|
|
2557
2569
|
}
|
|
2558
|
-
.yd-tree-select__message[data-v-
|
|
2570
|
+
.yd-tree-select__message[data-v-338c5a59] {
|
|
2559
2571
|
font-size: var(--yd-font-size-xs);
|
|
2560
2572
|
color: var(--yd-color-muted-fg);
|
|
2561
2573
|
}
|
|
2562
|
-
.yd-tree-select__message--error[data-v-
|
|
2574
|
+
.yd-tree-select__message--error[data-v-338c5a59] {
|
|
2563
2575
|
color: var(--yd-color-error);
|
|
2564
2576
|
}
|
|
2565
2577
|
|
|
2566
2578
|
/* Wrapper variants */
|
|
2567
|
-
.yd-tree-select-wrapper--default .yd-tree-select__input[data-v-
|
|
2568
|
-
.yd-tree-select-wrapper--default .yd-tree-select__display[data-v-
|
|
2579
|
+
.yd-tree-select-wrapper--default .yd-tree-select__input[data-v-338c5a59],
|
|
2580
|
+
.yd-tree-select-wrapper--default .yd-tree-select__display[data-v-338c5a59] {
|
|
2569
2581
|
border-bottom: 1px solid var(--yd-color-border);
|
|
2570
2582
|
}
|
|
2571
|
-
.yd-tree-select-wrapper--bordered .yd-tree-select__input[data-v-
|
|
2572
|
-
.yd-tree-select-wrapper--bordered .yd-tree-select__display[data-v-
|
|
2583
|
+
.yd-tree-select-wrapper--bordered .yd-tree-select__input[data-v-338c5a59],
|
|
2584
|
+
.yd-tree-select-wrapper--bordered .yd-tree-select__display[data-v-338c5a59] {
|
|
2573
2585
|
border: 1px solid var(--yd-color-border);
|
|
2574
2586
|
border-radius: var(--yd-radius-base);
|
|
2575
2587
|
}
|
|
2576
|
-
.yd-tree-select-wrapper--filled .yd-tree-select__input[data-v-
|
|
2577
|
-
.yd-tree-select-wrapper--filled .yd-tree-select__display[data-v-
|
|
2588
|
+
.yd-tree-select-wrapper--filled .yd-tree-select__input[data-v-338c5a59],
|
|
2589
|
+
.yd-tree-select-wrapper--filled .yd-tree-select__display[data-v-338c5a59] {
|
|
2578
2590
|
background: var(--yd-color-muted);
|
|
2579
2591
|
border-radius: var(--yd-radius-base);
|
|
2580
2592
|
}
|
|
2581
|
-
.yd-tree-select-wrapper--disabled[data-v-
|
|
2593
|
+
.yd-tree-select-wrapper--disabled[data-v-338c5a59] {
|
|
2582
2594
|
opacity: 0.6;
|
|
2583
2595
|
pointer-events: none;
|
|
2584
2596
|
}
|
|
2585
|
-
.yd-tree-select-wrapper--error.yd-tree-select-wrapper--bordered .yd-tree-select__input[data-v-
|
|
2586
|
-
.yd-tree-select-wrapper--error.yd-tree-select-wrapper--bordered .yd-tree-select__display[data-v-
|
|
2597
|
+
.yd-tree-select-wrapper--error.yd-tree-select-wrapper--bordered .yd-tree-select__input[data-v-338c5a59],
|
|
2598
|
+
.yd-tree-select-wrapper--error.yd-tree-select-wrapper--bordered .yd-tree-select__display[data-v-338c5a59] {
|
|
2587
2599
|
border-color: var(--yd-color-error);
|
|
2588
2600
|
}
|
|
2589
2601
|
|
|
2590
2602
|
/* Dropdown */
|
|
2591
|
-
.yd-tree-select__dropdown[data-v-
|
|
2603
|
+
.yd-tree-select__dropdown[data-v-338c5a59] {
|
|
2592
2604
|
position: absolute;
|
|
2593
2605
|
z-index: var(--yd-z-index-dropdown);
|
|
2594
2606
|
background: var(--yd-color-bg);
|
|
@@ -2597,15 +2609,15 @@ to {
|
|
|
2597
2609
|
overflow: hidden;
|
|
2598
2610
|
will-change: opacity, transform;
|
|
2599
2611
|
}
|
|
2600
|
-
.yd-tree-select__virtual-wrapper[data-v-
|
|
2612
|
+
.yd-tree-select__virtual-wrapper[data-v-338c5a59] {
|
|
2601
2613
|
overflow: auto;
|
|
2602
2614
|
}
|
|
2603
|
-
.yd-tree-select__tree-container[data-v-
|
|
2615
|
+
.yd-tree-select__tree-container[data-v-338c5a59] {
|
|
2604
2616
|
padding: var(--yd-spacing-xs) 0;
|
|
2605
|
-
max-height: var(--
|
|
2617
|
+
max-height: var(--f4998178);
|
|
2606
2618
|
overflow-y: auto;
|
|
2607
2619
|
}
|
|
2608
|
-
.yd-tree-select__node[data-v-
|
|
2620
|
+
.yd-tree-select__node[data-v-338c5a59] {
|
|
2609
2621
|
display: flex;
|
|
2610
2622
|
align-items: center;
|
|
2611
2623
|
gap: var(--yd-spacing-xs);
|
|
@@ -2615,52 +2627,52 @@ to {
|
|
|
2615
2627
|
color: var(--yd-color-fg);
|
|
2616
2628
|
transition: background var(--yd-transition-fast);
|
|
2617
2629
|
}
|
|
2618
|
-
.yd-tree-select__node[data-v-
|
|
2630
|
+
.yd-tree-select__node[data-v-338c5a59]:hover {
|
|
2619
2631
|
background: var(--yd-color-muted);
|
|
2620
2632
|
}
|
|
2621
|
-
.yd-tree-select__node--selected[data-v-
|
|
2633
|
+
.yd-tree-select__node--selected[data-v-338c5a59] {
|
|
2622
2634
|
color: var(--yd-color-primary-600);
|
|
2623
2635
|
font-weight: var(--yd-font-weight-medium);
|
|
2624
2636
|
background: var(--yd-color-primary-50);
|
|
2625
2637
|
}
|
|
2626
|
-
.yd-tree-select__node--disabled[data-v-
|
|
2638
|
+
.yd-tree-select__node--disabled[data-v-338c5a59] {
|
|
2627
2639
|
opacity: 0.5;
|
|
2628
2640
|
cursor: not-allowed;
|
|
2629
2641
|
}
|
|
2630
|
-
.yd-tree-select__node-toggle[data-v-
|
|
2642
|
+
.yd-tree-select__node-toggle[data-v-338c5a59] {
|
|
2631
2643
|
cursor: pointer;
|
|
2632
2644
|
width: 16px;
|
|
2633
2645
|
text-align: center;
|
|
2634
2646
|
color: var(--yd-color-muted-fg);
|
|
2635
2647
|
flex-shrink: 0;
|
|
2636
2648
|
}
|
|
2637
|
-
.yd-tree-select__node-leaf[data-v-
|
|
2649
|
+
.yd-tree-select__node-leaf[data-v-338c5a59] {
|
|
2638
2650
|
color: var(--yd-color-muted-fg);
|
|
2639
2651
|
width: 16px;
|
|
2640
2652
|
text-align: center;
|
|
2641
2653
|
}
|
|
2642
|
-
.yd-tree-select__node-checkbox[data-v-
|
|
2654
|
+
.yd-tree-select__node-checkbox[data-v-338c5a59] {
|
|
2643
2655
|
display: flex;
|
|
2644
2656
|
align-items: center;
|
|
2645
2657
|
margin-right: var(--yd-spacing-xs);
|
|
2646
2658
|
}
|
|
2647
|
-
.yd-tree-select__node-checkbox input[data-v-
|
|
2659
|
+
.yd-tree-select__node-checkbox input[data-v-338c5a59] {
|
|
2648
2660
|
cursor: pointer;
|
|
2649
2661
|
accent-color: var(--yd-color-primary-500);
|
|
2650
2662
|
}
|
|
2651
|
-
.yd-tree-select__node-title[data-v-
|
|
2663
|
+
.yd-tree-select__node-title[data-v-338c5a59] {
|
|
2652
2664
|
flex: 1;
|
|
2653
2665
|
}
|
|
2654
|
-
.yd-tree-select__node-children[data-v-
|
|
2666
|
+
.yd-tree-select__node-children[data-v-338c5a59] {
|
|
2655
2667
|
padding-left: var(--yd-spacing-lg);
|
|
2656
2668
|
}
|
|
2657
|
-
.yd-tree-select-dropdown-enter-active[data-v-
|
|
2658
|
-
.yd-tree-select-dropdown-leave-active[data-v-
|
|
2669
|
+
.yd-tree-select-dropdown-enter-active[data-v-338c5a59],
|
|
2670
|
+
.yd-tree-select-dropdown-leave-active[data-v-338c5a59] {
|
|
2659
2671
|
will-change: opacity;
|
|
2660
2672
|
transition: opacity 0.2s ease;
|
|
2661
2673
|
}
|
|
2662
|
-
.yd-tree-select-dropdown-enter-from[data-v-
|
|
2663
|
-
.yd-tree-select-dropdown-leave-to[data-v-
|
|
2674
|
+
.yd-tree-select-dropdown-enter-from[data-v-338c5a59],
|
|
2675
|
+
.yd-tree-select-dropdown-leave-to[data-v-338c5a59] {
|
|
2664
2676
|
opacity: 0;
|
|
2665
2677
|
}
|
|
2666
2678
|
|
|
@@ -3073,17 +3085,17 @@ to {
|
|
|
3073
3085
|
background: var(--calendar-hover);
|
|
3074
3086
|
}
|
|
3075
3087
|
|
|
3076
|
-
.yd-markdown[data-v-
|
|
3088
|
+
.yd-markdown[data-v-2a88fddd] {
|
|
3077
3089
|
position: relative;
|
|
3078
3090
|
overflow: hidden;
|
|
3079
3091
|
background-color: var(--yd-bg-color, #fff);
|
|
3080
3092
|
border: 1px solid var(--yd-border-color, #e5e5e5);
|
|
3081
3093
|
border-radius: 8px;
|
|
3082
3094
|
}
|
|
3083
|
-
.yd-markdown__editor[data-v-
|
|
3095
|
+
.yd-markdown__editor[data-v-2a88fddd] {
|
|
3084
3096
|
position: relative;
|
|
3085
3097
|
}
|
|
3086
|
-
.yd-markdown__textarea[data-v-
|
|
3098
|
+
.yd-markdown__textarea[data-v-2a88fddd] {
|
|
3087
3099
|
width: 100%;
|
|
3088
3100
|
min-height: 200px;
|
|
3089
3101
|
padding: 12px;
|
|
@@ -3096,20 +3108,20 @@ to {
|
|
|
3096
3108
|
resize: vertical;
|
|
3097
3109
|
outline: none;
|
|
3098
3110
|
}
|
|
3099
|
-
.yd-markdown__textarea--editable[data-v-
|
|
3111
|
+
.yd-markdown__textarea--editable[data-v-2a88fddd] {
|
|
3100
3112
|
background-color: var(--yd-bg-secondary, #fafafa);
|
|
3101
3113
|
}
|
|
3102
|
-
.yd-markdown__textarea[data-v-
|
|
3114
|
+
.yd-markdown__textarea[data-v-2a88fddd]::placeholder {
|
|
3103
3115
|
color: var(--yd-text-placeholder, #999);
|
|
3104
3116
|
}
|
|
3105
|
-
.yd-markdown__toolbar[data-v-
|
|
3117
|
+
.yd-markdown__toolbar[data-v-2a88fddd] {
|
|
3106
3118
|
display: flex;
|
|
3107
3119
|
gap: 4px;
|
|
3108
3120
|
padding: 8px 12px;
|
|
3109
3121
|
background-color: var(--yd-bg-secondary, #f5f5f5);
|
|
3110
3122
|
border-top: 1px solid var(--yd-border-color, #e5e5e5);
|
|
3111
3123
|
}
|
|
3112
|
-
.yd-markdown__tool[data-v-
|
|
3124
|
+
.yd-markdown__tool[data-v-2a88fddd] {
|
|
3113
3125
|
padding: 4px 12px;
|
|
3114
3126
|
background-color: transparent;
|
|
3115
3127
|
border: 1px solid var(--yd-border-color, #e5e5e5);
|
|
@@ -3119,108 +3131,108 @@ to {
|
|
|
3119
3131
|
cursor: pointer;
|
|
3120
3132
|
transition: all 150ms;
|
|
3121
3133
|
}
|
|
3122
|
-
.yd-markdown__tool[data-v-
|
|
3134
|
+
.yd-markdown__tool[data-v-2a88fddd]:hover {
|
|
3123
3135
|
background-color: var(--yd-bg-hover, #f0f0f0);
|
|
3124
3136
|
}
|
|
3125
|
-
.yd-markdown__tool--active[data-v-
|
|
3137
|
+
.yd-markdown__tool--active[data-v-2a88fddd] {
|
|
3126
3138
|
background-color: var(--yd-primary-color, #1890ff);
|
|
3127
3139
|
border-color: var(--yd-primary-color, #1890ff);
|
|
3128
3140
|
color: #fff;
|
|
3129
3141
|
}
|
|
3130
|
-
.yd-markdown__content[data-v-
|
|
3142
|
+
.yd-markdown__content[data-v-2a88fddd] {
|
|
3131
3143
|
padding: 16px;
|
|
3132
3144
|
line-height: 1.6;
|
|
3133
3145
|
color: var(--yd-text-color, #333);
|
|
3134
3146
|
}
|
|
3135
|
-
.yd-markdown__content[data-v-
|
|
3147
|
+
.yd-markdown__content[data-v-2a88fddd] h1 {
|
|
3136
3148
|
font-size: 2em;
|
|
3137
3149
|
font-weight: 600;
|
|
3138
3150
|
margin: 0 0 16px;
|
|
3139
3151
|
padding-bottom: 8px;
|
|
3140
3152
|
border-bottom: 1px solid var(--yd-border-color, #e5e5e5);
|
|
3141
3153
|
}
|
|
3142
|
-
.yd-markdown__content[data-v-
|
|
3154
|
+
.yd-markdown__content[data-v-2a88fddd] h2 {
|
|
3143
3155
|
font-size: 1.5em;
|
|
3144
3156
|
font-weight: 600;
|
|
3145
3157
|
margin: 24px 0 12px;
|
|
3146
3158
|
padding-bottom: 6px;
|
|
3147
3159
|
border-bottom: 1px solid var(--yd-border-color, #e5e5e5);
|
|
3148
3160
|
}
|
|
3149
|
-
.yd-markdown__content[data-v-
|
|
3161
|
+
.yd-markdown__content[data-v-2a88fddd] h3 {
|
|
3150
3162
|
font-size: 1.25em;
|
|
3151
3163
|
font-weight: 600;
|
|
3152
3164
|
margin: 20px 0 10px;
|
|
3153
3165
|
}
|
|
3154
|
-
.yd-markdown__content[data-v-
|
|
3166
|
+
.yd-markdown__content[data-v-2a88fddd] p {
|
|
3155
3167
|
margin: 0 0 12px;
|
|
3156
3168
|
}
|
|
3157
|
-
.yd-markdown__content[data-v-
|
|
3158
|
-
.yd-markdown__content[data-v-
|
|
3169
|
+
.yd-markdown__content[data-v-2a88fddd] ul,
|
|
3170
|
+
.yd-markdown__content[data-v-2a88fddd] ol {
|
|
3159
3171
|
margin: 0 0 12px;
|
|
3160
3172
|
padding-left: 24px;
|
|
3161
3173
|
}
|
|
3162
|
-
.yd-markdown__content[data-v-
|
|
3174
|
+
.yd-markdown__content[data-v-2a88fddd] li {
|
|
3163
3175
|
margin-bottom: 4px;
|
|
3164
3176
|
}
|
|
3165
|
-
.yd-markdown__content[data-v-
|
|
3177
|
+
.yd-markdown__content[data-v-2a88fddd] code {
|
|
3166
3178
|
padding: 2px 6px;
|
|
3167
3179
|
background-color: var(--yd-bg-secondary, #f5f5f5);
|
|
3168
3180
|
border-radius: 4px;
|
|
3169
3181
|
font-family: "SF Mono", "Fira Code", "Consolas", monospace;
|
|
3170
3182
|
font-size: 0.9em;
|
|
3171
3183
|
}
|
|
3172
|
-
.yd-markdown__content[data-v-
|
|
3184
|
+
.yd-markdown__content[data-v-2a88fddd] pre {
|
|
3173
3185
|
margin: 0 0 12px;
|
|
3174
3186
|
padding: 12px;
|
|
3175
3187
|
background-color: #1e1e1e;
|
|
3176
3188
|
border-radius: 6px;
|
|
3177
3189
|
overflow-x: auto;
|
|
3178
3190
|
}
|
|
3179
|
-
.yd-markdown__content[data-v-
|
|
3191
|
+
.yd-markdown__content[data-v-2a88fddd] pre code {
|
|
3180
3192
|
padding: 0;
|
|
3181
3193
|
background: transparent;
|
|
3182
3194
|
color: #d4d4d4;
|
|
3183
3195
|
}
|
|
3184
|
-
.yd-markdown__content[data-v-
|
|
3196
|
+
.yd-markdown__content[data-v-2a88fddd] blockquote {
|
|
3185
3197
|
margin: 0 0 12px;
|
|
3186
3198
|
padding: 8px 16px;
|
|
3187
3199
|
background-color: var(--yd-bg-secondary, #f5f5f5);
|
|
3188
3200
|
border-left: 4px solid var(--yd-primary-color, #1890ff);
|
|
3189
3201
|
}
|
|
3190
|
-
.yd-markdown__content[data-v-
|
|
3202
|
+
.yd-markdown__content[data-v-2a88fddd] table {
|
|
3191
3203
|
width: 100%;
|
|
3192
3204
|
margin: 0 0 12px;
|
|
3193
3205
|
border-collapse: collapse;
|
|
3194
3206
|
}
|
|
3195
|
-
.yd-markdown__content[data-v-
|
|
3196
|
-
.yd-markdown__content[data-v-
|
|
3207
|
+
.yd-markdown__content[data-v-2a88fddd] th,
|
|
3208
|
+
.yd-markdown__content[data-v-2a88fddd] td {
|
|
3197
3209
|
padding: 8px 12px;
|
|
3198
3210
|
border: 1px solid var(--yd-border-color, #e5e5e5);
|
|
3199
3211
|
}
|
|
3200
|
-
.yd-markdown__content[data-v-
|
|
3212
|
+
.yd-markdown__content[data-v-2a88fddd] th {
|
|
3201
3213
|
background-color: var(--yd-bg-secondary, #f5f5f5);
|
|
3202
3214
|
font-weight: 600;
|
|
3203
3215
|
}
|
|
3204
|
-
.yd-markdown__content[data-v-
|
|
3216
|
+
.yd-markdown__content[data-v-2a88fddd] a {
|
|
3205
3217
|
color: var(--yd-primary-color, #1890ff);
|
|
3206
3218
|
text-decoration: none;
|
|
3207
3219
|
}
|
|
3208
|
-
.yd-markdown__content[data-v-
|
|
3220
|
+
.yd-markdown__content[data-v-2a88fddd] a:hover {
|
|
3209
3221
|
text-decoration: underline;
|
|
3210
3222
|
}
|
|
3211
|
-
.yd-markdown__content[data-v-
|
|
3223
|
+
.yd-markdown__content[data-v-2a88fddd] img {
|
|
3212
3224
|
max-width: 100%;
|
|
3213
3225
|
border-radius: 4px;
|
|
3214
3226
|
}
|
|
3215
|
-
.yd-markdown__split[data-v-
|
|
3227
|
+
.yd-markdown__split[data-v-2a88fddd] {
|
|
3216
3228
|
display: flex;
|
|
3217
3229
|
height: 300px;
|
|
3218
3230
|
}
|
|
3219
|
-
.yd-markdown__split-editor[data-v-
|
|
3231
|
+
.yd-markdown__split-editor[data-v-2a88fddd] {
|
|
3220
3232
|
flex: 1;
|
|
3221
3233
|
border-right: 1px solid var(--yd-border-color, #e5e5e5);
|
|
3222
3234
|
}
|
|
3223
|
-
.yd-markdown__split-editor textarea[data-v-
|
|
3235
|
+
.yd-markdown__split-editor textarea[data-v-2a88fddd] {
|
|
3224
3236
|
width: 100%;
|
|
3225
3237
|
height: 100%;
|
|
3226
3238
|
padding: 12px;
|
|
@@ -3232,26 +3244,26 @@ to {
|
|
|
3232
3244
|
resize: none;
|
|
3233
3245
|
outline: none;
|
|
3234
3246
|
}
|
|
3235
|
-
.yd-markdown__split-preview[data-v-
|
|
3247
|
+
.yd-markdown__split-preview[data-v-2a88fddd] {
|
|
3236
3248
|
flex: 1;
|
|
3237
3249
|
padding: 16px;
|
|
3238
3250
|
overflow-y: auto;
|
|
3239
3251
|
}
|
|
3240
3252
|
|
|
3241
3253
|
/* Size variants */
|
|
3242
|
-
.yd-markdown--xs .yd-markdown__textarea[data-v-
|
|
3254
|
+
.yd-markdown--xs .yd-markdown__textarea[data-v-2a88fddd] {
|
|
3243
3255
|
font-size: 12px;
|
|
3244
3256
|
min-height: 100px;
|
|
3245
3257
|
}
|
|
3246
|
-
.yd-markdown--sm .yd-markdown__textarea[data-v-
|
|
3258
|
+
.yd-markdown--sm .yd-markdown__textarea[data-v-2a88fddd] {
|
|
3247
3259
|
font-size: 13px;
|
|
3248
3260
|
min-height: 150px;
|
|
3249
3261
|
}
|
|
3250
|
-
.yd-markdown--lg .yd-markdown__textarea[data-v-
|
|
3262
|
+
.yd-markdown--lg .yd-markdown__textarea[data-v-2a88fddd] {
|
|
3251
3263
|
font-size: 15px;
|
|
3252
3264
|
min-height: 300px;
|
|
3253
3265
|
}
|
|
3254
|
-
.yd-markdown--xl .yd-markdown__textarea[data-v-
|
|
3266
|
+
.yd-markdown--xl .yd-markdown__textarea[data-v-2a88fddd] {
|
|
3255
3267
|
font-size: 16px;
|
|
3256
3268
|
min-height: 400px;
|
|
3257
3269
|
}
|
|
@@ -5442,7 +5454,7 @@ to {
|
|
|
5442
5454
|
}
|
|
5443
5455
|
}
|
|
5444
5456
|
|
|
5445
|
-
.yd-layout-sidebar[data-v-
|
|
5457
|
+
.yd-layout-sidebar[data-v-c55533fa] {
|
|
5446
5458
|
position: absolute;
|
|
5447
5459
|
left: 0;
|
|
5448
5460
|
top: 0;
|
|
@@ -5457,21 +5469,21 @@ to {
|
|
|
5457
5469
|
overflow: hidden;
|
|
5458
5470
|
z-index: 100;
|
|
5459
5471
|
}
|
|
5460
|
-
.yd-layout-sidebar--fixed[data-v-
|
|
5472
|
+
.yd-layout-sidebar--fixed[data-v-c55533fa] {
|
|
5461
5473
|
position: fixed;
|
|
5462
5474
|
}
|
|
5463
|
-
.yd-layout-sidebar--collapsed[data-v-
|
|
5475
|
+
.yd-layout-sidebar--collapsed[data-v-c55533fa] {
|
|
5464
5476
|
width: 64px;
|
|
5465
5477
|
}
|
|
5466
5478
|
|
|
5467
5479
|
/* Logo 区域 - 折叠时横向居中 */
|
|
5468
|
-
.yd-layout-sidebar--collapsed .yd-layout-sidebar__logo[data-v-
|
|
5480
|
+
.yd-layout-sidebar--collapsed .yd-layout-sidebar__logo[data-v-c55533fa] {
|
|
5469
5481
|
justify-content: center;
|
|
5470
5482
|
padding: 0;
|
|
5471
5483
|
}
|
|
5472
5484
|
|
|
5473
5485
|
/* Logo 区域 */
|
|
5474
|
-
.yd-layout-sidebar__logo[data-v-
|
|
5486
|
+
.yd-layout-sidebar__logo[data-v-c55533fa] {
|
|
5475
5487
|
display: flex;
|
|
5476
5488
|
align-items: center;
|
|
5477
5489
|
justify-content: center;
|
|
@@ -5485,7 +5497,7 @@ to {
|
|
|
5485
5497
|
}
|
|
5486
5498
|
|
|
5487
5499
|
/* Logo 图标 */
|
|
5488
|
-
.yd-layout-sidebar__logo-icon[data-v-
|
|
5500
|
+
.yd-layout-sidebar__logo-icon[data-v-c55533fa] {
|
|
5489
5501
|
display: flex;
|
|
5490
5502
|
align-items: center;
|
|
5491
5503
|
justify-content: center;
|
|
@@ -5496,16 +5508,16 @@ to {
|
|
|
5496
5508
|
}
|
|
5497
5509
|
|
|
5498
5510
|
/* Logo 图标 SVG 居中定位 */
|
|
5499
|
-
.yd-layout-sidebar__logo-icon svg[data-v-
|
|
5511
|
+
.yd-layout-sidebar__logo-icon svg[data-v-c55533fa] {
|
|
5500
5512
|
display: block;
|
|
5501
5513
|
}
|
|
5502
|
-
.yd-layout-sidebar__logo-image[data-v-
|
|
5514
|
+
.yd-layout-sidebar__logo-image[data-v-c55533fa] {
|
|
5503
5515
|
width: 32px;
|
|
5504
5516
|
height: 32px;
|
|
5505
5517
|
object-fit: contain;
|
|
5506
5518
|
flex-shrink: 0;
|
|
5507
5519
|
}
|
|
5508
|
-
.yd-layout-sidebar__logo-title[data-v-
|
|
5520
|
+
.yd-layout-sidebar__logo-title[data-v-c55533fa] {
|
|
5509
5521
|
font-size: var(--yd-font-size-lg);
|
|
5510
5522
|
font-weight: var(--yd-font-weight-semibold);
|
|
5511
5523
|
color: var(--yd-layout-sidebar-fg, var(--yd-color-fg));
|
|
@@ -5514,11 +5526,11 @@ to {
|
|
|
5514
5526
|
}
|
|
5515
5527
|
|
|
5516
5528
|
/* 搜索框 */
|
|
5517
|
-
.yd-layout-sidebar__search[data-v-
|
|
5529
|
+
.yd-layout-sidebar__search[data-v-c55533fa] {
|
|
5518
5530
|
padding: var(--yd-spacing-xs) var(--yd-spacing-sm);
|
|
5519
5531
|
flex-shrink: 0;
|
|
5520
5532
|
}
|
|
5521
|
-
.yd-layout-sidebar__search-input[data-v-
|
|
5533
|
+
.yd-layout-sidebar__search-input[data-v-c55533fa] {
|
|
5522
5534
|
width: 100%;
|
|
5523
5535
|
height: 32px;
|
|
5524
5536
|
padding: 0 var(--yd-spacing-sm);
|
|
@@ -5531,13 +5543,13 @@ to {
|
|
|
5531
5543
|
outline: none;
|
|
5532
5544
|
transition: border-color var(--yd-transition-fast);
|
|
5533
5545
|
}
|
|
5534
|
-
.yd-layout-sidebar__search-input[data-v-
|
|
5546
|
+
.yd-layout-sidebar__search-input[data-v-c55533fa]::placeholder {
|
|
5535
5547
|
color: var(--yd-layout-sidebar-fg-muted, var(--yd-color-muted-fg));
|
|
5536
5548
|
}
|
|
5537
|
-
.yd-layout-sidebar__search-input[data-v-
|
|
5549
|
+
.yd-layout-sidebar__search-input[data-v-c55533fa]:focus {
|
|
5538
5550
|
border-color: var(--yd-color-primary-500);
|
|
5539
5551
|
}
|
|
5540
|
-
.yd-layout-sidebar__search-clear[data-v-
|
|
5552
|
+
.yd-layout-sidebar__search-clear[data-v-c55533fa] {
|
|
5541
5553
|
position: relative;
|
|
5542
5554
|
left: -24px;
|
|
5543
5555
|
display: inline-flex;
|
|
@@ -5549,7 +5561,7 @@ to {
|
|
|
5549
5561
|
color: var(--yd-color-muted-fg);
|
|
5550
5562
|
cursor: pointer;
|
|
5551
5563
|
}
|
|
5552
|
-
.yd-layout-sidebar__search-empty[data-v-
|
|
5564
|
+
.yd-layout-sidebar__search-empty[data-v-c55533fa] {
|
|
5553
5565
|
display: flex;
|
|
5554
5566
|
align-items: center;
|
|
5555
5567
|
justify-content: center;
|
|
@@ -5559,7 +5571,7 @@ to {
|
|
|
5559
5571
|
}
|
|
5560
5572
|
|
|
5561
5573
|
/* 菜单区域 */
|
|
5562
|
-
.yd-layout-sidebar__menu-wrapper[data-v-
|
|
5574
|
+
.yd-layout-sidebar__menu-wrapper[data-v-c55533fa] {
|
|
5563
5575
|
flex: 1;
|
|
5564
5576
|
overflow-y: auto;
|
|
5565
5577
|
overflow-x: hidden;
|
|
@@ -5568,11 +5580,11 @@ to {
|
|
|
5568
5580
|
padding-left: var(--yd-spacing-xs);
|
|
5569
5581
|
padding-right: var(--yd-spacing-xs);
|
|
5570
5582
|
}
|
|
5571
|
-
.yd-layout-sidebar__menu[data-v-
|
|
5583
|
+
.yd-layout-sidebar__menu[data-v-c55533fa] {
|
|
5572
5584
|
display: flex;
|
|
5573
5585
|
flex-direction: column;
|
|
5574
5586
|
}
|
|
5575
|
-
.yd-layout-sidebar__menu-item[data-v-
|
|
5587
|
+
.yd-layout-sidebar__menu-item[data-v-c55533fa] {
|
|
5576
5588
|
display: flex;
|
|
5577
5589
|
align-items: center;
|
|
5578
5590
|
justify-content: center;
|
|
@@ -5589,77 +5601,77 @@ to {
|
|
|
5589
5601
|
}
|
|
5590
5602
|
|
|
5591
5603
|
/* 菜单图标 */
|
|
5592
|
-
.yd-layout-sidebar__menu-icon[data-v-
|
|
5604
|
+
.yd-layout-sidebar__menu-icon[data-v-c55533fa] {
|
|
5593
5605
|
display: flex;
|
|
5594
5606
|
align-items: center;
|
|
5595
5607
|
justify-content: center;
|
|
5596
5608
|
flex-shrink: 0;
|
|
5597
5609
|
}
|
|
5598
|
-
.yd-layout-sidebar__menu-item[data-v-
|
|
5610
|
+
.yd-layout-sidebar__menu-item[data-v-c55533fa]:hover {
|
|
5599
5611
|
background: var(--yd-layout-sidebar-hover-bg, var(--yd-color-muted));
|
|
5600
5612
|
}
|
|
5601
|
-
.yd-layout-sidebar__menu-item--active[data-v-
|
|
5613
|
+
.yd-layout-sidebar__menu-item--active[data-v-c55533fa] {
|
|
5602
5614
|
background: var(--yd-layout-sidebar-active-bg, var(--yd-color-primary-50));
|
|
5603
5615
|
color: var(--yd-layout-sidebar-active-fg, var(--yd-color-primary-600));
|
|
5604
5616
|
}
|
|
5605
|
-
.yd-layout-sidebar__menu-item--disabled[data-v-
|
|
5617
|
+
.yd-layout-sidebar__menu-item--disabled[data-v-c55533fa] {
|
|
5606
5618
|
opacity: 0.5;
|
|
5607
5619
|
cursor: not-allowed;
|
|
5608
5620
|
}
|
|
5609
|
-
.yd-layout-sidebar__menu-item--group-title[data-v-
|
|
5621
|
+
.yd-layout-sidebar__menu-item--group-title[data-v-c55533fa] {
|
|
5610
5622
|
font-weight: var(--yd-font-weight-medium);
|
|
5611
5623
|
}
|
|
5612
|
-
.yd-layout-sidebar__menu-item--child[data-v-
|
|
5624
|
+
.yd-layout-sidebar__menu-item--child[data-v-c55533fa] {
|
|
5613
5625
|
padding-left: calc(var(--yd-spacing-base) + 20px);
|
|
5614
5626
|
}
|
|
5615
5627
|
|
|
5616
5628
|
/* 折叠状态下的菜单项 */
|
|
5617
|
-
.yd-layout-sidebar--collapsed .yd-layout-sidebar__menu-item[data-v-
|
|
5629
|
+
.yd-layout-sidebar--collapsed .yd-layout-sidebar__menu-item[data-v-c55533fa] {
|
|
5618
5630
|
justify-content: center;
|
|
5619
5631
|
padding: 0;
|
|
5620
5632
|
margin: 2px 4px;
|
|
5621
5633
|
width: calc(100% - 8px);
|
|
5622
5634
|
}
|
|
5623
|
-
.yd-layout-sidebar--collapsed .yd-layout-sidebar__menu-item[data-v-
|
|
5635
|
+
.yd-layout-sidebar--collapsed .yd-layout-sidebar__menu-item[data-v-c55533fa] > * {
|
|
5624
5636
|
justify-content: center;
|
|
5625
5637
|
width: 100%;
|
|
5626
5638
|
}
|
|
5627
|
-
.yd-layout-sidebar--collapsed .yd-layout-sidebar__menu-item--child[data-v-
|
|
5639
|
+
.yd-layout-sidebar--collapsed .yd-layout-sidebar__menu-item--child[data-v-c55533fa] {
|
|
5628
5640
|
padding-left: calc(var(--yd-spacing-base) + 20px);
|
|
5629
5641
|
}
|
|
5630
|
-
.yd-layout-sidebar__menu-label[data-v-
|
|
5642
|
+
.yd-layout-sidebar__menu-label[data-v-c55533fa] {
|
|
5631
5643
|
flex: 1;
|
|
5632
5644
|
overflow: hidden;
|
|
5633
5645
|
text-overflow: ellipsis;
|
|
5634
5646
|
}
|
|
5635
|
-
.yd-layout-sidebar__menu-arrow[data-v-
|
|
5647
|
+
.yd-layout-sidebar__menu-arrow[data-v-c55533fa] {
|
|
5636
5648
|
display: flex;
|
|
5637
5649
|
align-items: center;
|
|
5638
5650
|
transition: transform var(--yd-transition-fast);
|
|
5639
5651
|
}
|
|
5640
|
-
.yd-layout-sidebar__menu-arrow--expanded[data-v-
|
|
5652
|
+
.yd-layout-sidebar__menu-arrow--expanded[data-v-c55533fa] {
|
|
5641
5653
|
transform: rotate(180deg);
|
|
5642
5654
|
}
|
|
5643
|
-
.yd-layout-sidebar__menu-submenu[data-v-
|
|
5655
|
+
.yd-layout-sidebar__menu-submenu[data-v-c55533fa] {
|
|
5644
5656
|
overflow: hidden;
|
|
5645
5657
|
}
|
|
5646
|
-
.yd-layout-sidebar__menu-item-group[data-v-
|
|
5658
|
+
.yd-layout-sidebar__menu-item-group[data-v-c55533fa] {
|
|
5647
5659
|
margin-bottom: var(--yd-spacing-xs);
|
|
5648
5660
|
}
|
|
5649
5661
|
|
|
5650
5662
|
/* 底部折叠按钮 */
|
|
5651
|
-
.yd-layout-sidebar__footer[data-v-
|
|
5663
|
+
.yd-layout-sidebar__footer[data-v-c55533fa] {
|
|
5652
5664
|
flex-shrink: 0;
|
|
5653
5665
|
padding: var(--yd-spacing-sm);
|
|
5654
5666
|
border-top: 1px solid var(--yd-layout-sidebar-border, var(--yd-color-border));
|
|
5655
5667
|
}
|
|
5656
5668
|
|
|
5657
5669
|
/* 底部支持信息 */
|
|
5658
|
-
.yd-layout-sidebar__footer[data-v-
|
|
5670
|
+
.yd-layout-sidebar__footer[data-v-c55533fa] {
|
|
5659
5671
|
padding: var(--yd-spacing-xs) var(--yd-spacing-sm);
|
|
5660
5672
|
min-height: 24px;
|
|
5661
5673
|
}
|
|
5662
|
-
.yd-layout-sidebar__footer-content[data-v-
|
|
5674
|
+
.yd-layout-sidebar__footer-content[data-v-c55533fa] {
|
|
5663
5675
|
display: flex;
|
|
5664
5676
|
align-items: center;
|
|
5665
5677
|
justify-content: center;
|
|
@@ -5674,10 +5686,10 @@ to {
|
|
|
5674
5686
|
}
|
|
5675
5687
|
|
|
5676
5688
|
/* 折叠时隐藏底部 */
|
|
5677
|
-
.yd-layout-sidebar--collapsed .yd-layout-sidebar__footer-content[data-v-
|
|
5689
|
+
.yd-layout-sidebar--collapsed .yd-layout-sidebar__footer-content[data-v-c55533fa] {
|
|
5678
5690
|
display: none;
|
|
5679
5691
|
}
|
|
5680
|
-
.yd-layout-sidebar__collapse-btn[data-v-
|
|
5692
|
+
.yd-layout-sidebar__collapse-btn[data-v-c55533fa] {
|
|
5681
5693
|
display: flex;
|
|
5682
5694
|
align-items: center;
|
|
5683
5695
|
justify-content: center;
|
|
@@ -5691,43 +5703,43 @@ to {
|
|
|
5691
5703
|
}
|
|
5692
5704
|
|
|
5693
5705
|
/* 折叠状态下底部按钮 */
|
|
5694
|
-
.yd-layout-sidebar--collapsed .yd-layout-sidebar__collapse-btn[data-v-
|
|
5706
|
+
.yd-layout-sidebar--collapsed .yd-layout-sidebar__collapse-btn[data-v-c55533fa] {
|
|
5695
5707
|
justify-content: center;
|
|
5696
5708
|
padding: 0;
|
|
5697
5709
|
width: 100%;
|
|
5698
5710
|
}
|
|
5699
5711
|
|
|
5700
5712
|
/* 折叠状态下菜单项图标居中 */
|
|
5701
|
-
.yd-layout-sidebar--collapsed .yd-layout-sidebar__menu-icon[data-v-
|
|
5713
|
+
.yd-layout-sidebar--collapsed .yd-layout-sidebar__menu-icon[data-v-c55533fa] {
|
|
5702
5714
|
justify-content: center;
|
|
5703
5715
|
width: 100%;
|
|
5704
5716
|
}
|
|
5705
|
-
.yd-layout-sidebar__collapse-btn[data-v-
|
|
5717
|
+
.yd-layout-sidebar__collapse-btn[data-v-c55533fa]:hover {
|
|
5706
5718
|
background: var(--yd-color-muted);
|
|
5707
5719
|
color: var(--yd-color-fg);
|
|
5708
5720
|
}
|
|
5709
5721
|
|
|
5710
5722
|
/* 过渡动画 */
|
|
5711
|
-
.yd-layout-fade-enter-active[data-v-
|
|
5712
|
-
.yd-layout-fade-leave-active[data-v-
|
|
5723
|
+
.yd-layout-fade-enter-active[data-v-c55533fa],
|
|
5724
|
+
.yd-layout-fade-leave-active[data-v-c55533fa] {
|
|
5713
5725
|
transition: opacity 0.2s ease;
|
|
5714
5726
|
}
|
|
5715
|
-
.yd-layout-fade-enter-from[data-v-
|
|
5716
|
-
.yd-layout-fade-leave-to[data-v-
|
|
5727
|
+
.yd-layout-fade-enter-from[data-v-c55533fa],
|
|
5728
|
+
.yd-layout-fade-leave-to[data-v-c55533fa] {
|
|
5717
5729
|
opacity: 0;
|
|
5718
5730
|
}
|
|
5719
|
-
.yd-layout-slide-enter-active[data-v-
|
|
5720
|
-
.yd-layout-slide-leave-active[data-v-
|
|
5731
|
+
.yd-layout-slide-enter-active[data-v-c55533fa],
|
|
5732
|
+
.yd-layout-slide-leave-active[data-v-c55533fa] {
|
|
5721
5733
|
transition: all 0.2s ease;
|
|
5722
5734
|
}
|
|
5723
|
-
.yd-layout-slide-enter-from[data-v-
|
|
5724
|
-
.yd-layout-slide-leave-to[data-v-
|
|
5735
|
+
.yd-layout-slide-enter-from[data-v-c55533fa],
|
|
5736
|
+
.yd-layout-slide-leave-to[data-v-c55533fa] {
|
|
5725
5737
|
opacity: 0;
|
|
5726
5738
|
transform: translateY(-10px);
|
|
5727
5739
|
}
|
|
5728
5740
|
|
|
5729
5741
|
/* 亮色主题 - 独立使用时的默认值 */
|
|
5730
|
-
.yd-layout-sidebar--light[data-v-
|
|
5742
|
+
.yd-layout-sidebar--light[data-v-c55533fa] {
|
|
5731
5743
|
--yd-layout-sidebar-bg: #ffffff;
|
|
5732
5744
|
--yd-layout-sidebar-border: #e5e7eb;
|
|
5733
5745
|
--yd-layout-sidebar-fg: #111827;
|
|
@@ -5738,20 +5750,20 @@ to {
|
|
|
5738
5750
|
}
|
|
5739
5751
|
|
|
5740
5752
|
/* 暗色主题 */
|
|
5741
|
-
.yd-layout-sidebar--dark[data-v-
|
|
5753
|
+
.yd-layout-sidebar--dark[data-v-c55533fa] {
|
|
5742
5754
|
--yd-layout-sidebar-bg: #1a1a1a;
|
|
5743
5755
|
--yd-layout-sidebar-border: #333;
|
|
5744
5756
|
}
|
|
5745
|
-
.yd-layout-sidebar--dark .yd-layout-sidebar__logo-title[data-v-
|
|
5757
|
+
.yd-layout-sidebar--dark .yd-layout-sidebar__logo-title[data-v-c55533fa] {
|
|
5746
5758
|
color: #fff;
|
|
5747
5759
|
}
|
|
5748
|
-
.yd-layout-sidebar--dark .yd-layout-sidebar__menu-item--active[data-v-
|
|
5760
|
+
.yd-layout-sidebar--dark .yd-layout-sidebar__menu-item--active[data-v-c55533fa] {
|
|
5749
5761
|
background: rgba(24, 144, 255, 0.15);
|
|
5750
5762
|
color: var(--yd-color-primary-400);
|
|
5751
5763
|
}
|
|
5752
5764
|
|
|
5753
5765
|
/* 拖拽手柄 */
|
|
5754
|
-
.yd-layout-sidebar__resize-handle[data-v-
|
|
5766
|
+
.yd-layout-sidebar__resize-handle[data-v-c55533fa] {
|
|
5755
5767
|
position: absolute;
|
|
5756
5768
|
top: 0;
|
|
5757
5769
|
right: 0;
|
|
@@ -5762,14 +5774,14 @@ to {
|
|
|
5762
5774
|
transition: background var(--yd-transition-fast);
|
|
5763
5775
|
z-index: 10;
|
|
5764
5776
|
}
|
|
5765
|
-
.yd-layout-sidebar__resize-handle[data-v-
|
|
5766
|
-
.yd-layout-sidebar__resize-handle[data-v-
|
|
5777
|
+
.yd-layout-sidebar__resize-handle[data-v-c55533fa]:hover,
|
|
5778
|
+
.yd-layout-sidebar__resize-handle[data-v-c55533fa]:active {
|
|
5767
5779
|
background: var(--yd-color-primary-400);
|
|
5768
5780
|
}
|
|
5769
|
-
.yd-layout-sidebar--collapsed .yd-layout-sidebar__resize-handle[data-v-
|
|
5781
|
+
.yd-layout-sidebar--collapsed .yd-layout-sidebar__resize-handle[data-v-c55533fa] {
|
|
5770
5782
|
display: none;
|
|
5771
5783
|
}
|
|
5772
|
-
.yd-layout-sidebar--fixed .yd-layout-sidebar__resize-handle[data-v-
|
|
5784
|
+
.yd-layout-sidebar--fixed .yd-layout-sidebar__resize-handle[data-v-c55533fa] {
|
|
5773
5785
|
display: none;
|
|
5774
5786
|
}
|
|
5775
5787
|
|
|
@@ -6500,7 +6512,7 @@ to {
|
|
|
6500
6512
|
opacity: 0;
|
|
6501
6513
|
}
|
|
6502
6514
|
|
|
6503
|
-
.yd-layout-header[data-v-
|
|
6515
|
+
.yd-layout-header[data-v-0e3d094c] {
|
|
6504
6516
|
display: flex;
|
|
6505
6517
|
align-items: center;
|
|
6506
6518
|
justify-content: space-between;
|
|
@@ -6515,7 +6527,7 @@ to {
|
|
|
6515
6527
|
}
|
|
6516
6528
|
|
|
6517
6529
|
/* 移动端菜单切换按钮 */
|
|
6518
|
-
.yd-layout-header__toggle[data-v-
|
|
6530
|
+
.yd-layout-header__toggle[data-v-0e3d094c] {
|
|
6519
6531
|
display: none;
|
|
6520
6532
|
align-items: center;
|
|
6521
6533
|
justify-content: center;
|
|
@@ -6527,44 +6539,44 @@ to {
|
|
|
6527
6539
|
color: var(--yd-color-fg);
|
|
6528
6540
|
transition: background var(--yd-transition-fast);
|
|
6529
6541
|
}
|
|
6530
|
-
.yd-layout-header__toggle[data-v-
|
|
6542
|
+
.yd-layout-header__toggle[data-v-0e3d094c]:hover {
|
|
6531
6543
|
background: var(--yd-color-muted);
|
|
6532
6544
|
}
|
|
6533
6545
|
@media (max-width: 767px) {
|
|
6534
|
-
.yd-layout-header__toggle[data-v-
|
|
6546
|
+
.yd-layout-header__toggle[data-v-0e3d094c] {
|
|
6535
6547
|
display: flex;
|
|
6536
6548
|
}
|
|
6537
6549
|
|
|
6538
6550
|
/* 移动端隐藏桌面版元素 */
|
|
6539
|
-
.yd-layout-header__tabs[data-v-
|
|
6540
|
-
.yd-layout-header__actions[data-v-
|
|
6551
|
+
.yd-layout-header__tabs[data-v-0e3d094c],
|
|
6552
|
+
.yd-layout-header__actions[data-v-0e3d094c] {
|
|
6541
6553
|
display: none;
|
|
6542
6554
|
}
|
|
6543
6555
|
|
|
6544
6556
|
/* 移动端显示用户头像 */
|
|
6545
|
-
.yd-layout-header__user[data-v-
|
|
6557
|
+
.yd-layout-header__user[data-v-0e3d094c] {
|
|
6546
6558
|
display: flex;
|
|
6547
6559
|
}
|
|
6548
6560
|
}
|
|
6549
6561
|
@media (min-width: 768px) {
|
|
6550
|
-
.yd-layout-header__user[data-v-
|
|
6562
|
+
.yd-layout-header__user[data-v-0e3d094c] {
|
|
6551
6563
|
display: none;
|
|
6552
6564
|
}
|
|
6553
6565
|
}
|
|
6554
|
-
.yd-layout-header--dark[data-v-
|
|
6566
|
+
.yd-layout-header--dark[data-v-0e3d094c] {
|
|
6555
6567
|
--yd-layout-header-bg: #1a1a1a;
|
|
6556
6568
|
--yd-layout-header-border: #333;
|
|
6557
6569
|
}
|
|
6558
6570
|
|
|
6559
6571
|
/* 标签页区域 */
|
|
6560
|
-
.yd-layout-header__tabs[data-v-
|
|
6572
|
+
.yd-layout-header__tabs[data-v-0e3d094c] {
|
|
6561
6573
|
flex: 1;
|
|
6562
6574
|
min-width: 100px;
|
|
6563
6575
|
overflow: visible;
|
|
6564
6576
|
}
|
|
6565
6577
|
|
|
6566
6578
|
/* 操作区 */
|
|
6567
|
-
.yd-layout-header__actions[data-v-
|
|
6579
|
+
.yd-layout-header__actions[data-v-0e3d094c] {
|
|
6568
6580
|
display: flex;
|
|
6569
6581
|
align-items: center;
|
|
6570
6582
|
flex-shrink: 0;
|
|
@@ -6573,12 +6585,12 @@ to {
|
|
|
6573
6585
|
}
|
|
6574
6586
|
|
|
6575
6587
|
/* 操作区内部 Space */
|
|
6576
|
-
.yd-layout-header__actions[data-v-
|
|
6588
|
+
.yd-layout-header__actions[data-v-0e3d094c] > * {
|
|
6577
6589
|
flex-shrink: 0;
|
|
6578
6590
|
}
|
|
6579
6591
|
|
|
6580
6592
|
/* 操作按钮 */
|
|
6581
|
-
.yd-layout-header__action-btn[data-v-
|
|
6593
|
+
.yd-layout-header__action-btn[data-v-0e3d094c] {
|
|
6582
6594
|
display: flex;
|
|
6583
6595
|
align-items: center;
|
|
6584
6596
|
justify-content: center;
|
|
@@ -6590,22 +6602,22 @@ to {
|
|
|
6590
6602
|
color: var(--yd-color-muted-fg);
|
|
6591
6603
|
transition: all var(--yd-transition-fast);
|
|
6592
6604
|
}
|
|
6593
|
-
.yd-layout-header__action-btn[data-v-
|
|
6605
|
+
.yd-layout-header__action-btn[data-v-0e3d094c] > * {
|
|
6594
6606
|
flex-shrink: 0;
|
|
6595
6607
|
display: flex;
|
|
6596
6608
|
align-items: center;
|
|
6597
6609
|
justify-content: center;
|
|
6598
6610
|
}
|
|
6599
|
-
.yd-layout-header__action-btn[data-v-
|
|
6611
|
+
.yd-layout-header__action-btn[data-v-0e3d094c]:hover {
|
|
6600
6612
|
background: var(--yd-color-muted);
|
|
6601
6613
|
color: var(--yd-color-fg);
|
|
6602
6614
|
}
|
|
6603
|
-
.yd-layout-header__action-label[data-v-
|
|
6615
|
+
.yd-layout-header__action-label[data-v-0e3d094c] {
|
|
6604
6616
|
font-size: var(--yd-font-size-sm);
|
|
6605
6617
|
}
|
|
6606
6618
|
|
|
6607
6619
|
/* 用户信息 */
|
|
6608
|
-
.yd-layout-header__user[data-v-
|
|
6620
|
+
.yd-layout-header__user[data-v-0e3d094c] {
|
|
6609
6621
|
display: flex;
|
|
6610
6622
|
align-items: center;
|
|
6611
6623
|
justify-content: center;
|
|
@@ -6616,20 +6628,20 @@ to {
|
|
|
6616
6628
|
cursor: pointer;
|
|
6617
6629
|
transition: background var(--yd-transition-fast);
|
|
6618
6630
|
}
|
|
6619
|
-
.yd-layout-header__user[data-v-
|
|
6631
|
+
.yd-layout-header__user[data-v-0e3d094c] > * {
|
|
6620
6632
|
flex-shrink: 0;
|
|
6621
6633
|
display: flex;
|
|
6622
6634
|
align-items: center;
|
|
6623
6635
|
}
|
|
6624
6636
|
|
|
6625
6637
|
/* 嵌套的子组件也要居中 - 通过CSS变量控制尺寸 */
|
|
6626
|
-
.yd-layout-header__user .yd-avatar[data-v-
|
|
6638
|
+
.yd-layout-header__user .yd-avatar[data-v-0e3d094c] {
|
|
6627
6639
|
--yd-avatar-size: 28px;
|
|
6628
6640
|
}
|
|
6629
|
-
.yd-layout-header__user[data-v-
|
|
6641
|
+
.yd-layout-header__user[data-v-0e3d094c]:hover {
|
|
6630
6642
|
background: var(--yd-color-muted);
|
|
6631
6643
|
}
|
|
6632
|
-
.yd-layout-header__username[data-v-
|
|
6644
|
+
.yd-layout-header__username[data-v-0e3d094c] {
|
|
6633
6645
|
display: flex;
|
|
6634
6646
|
align-items: center;
|
|
6635
6647
|
font-size: var(--yd-font-size-sm);
|
|
@@ -6641,18 +6653,18 @@ to {
|
|
|
6641
6653
|
}
|
|
6642
6654
|
|
|
6643
6655
|
/* 暗色主题 */
|
|
6644
|
-
.yd-layout-header--dark .yd-layout-header__action-btn[data-v-
|
|
6656
|
+
.yd-layout-header--dark .yd-layout-header__action-btn[data-v-0e3d094c] {
|
|
6645
6657
|
color: rgba(255, 255, 255, 0.65);
|
|
6646
6658
|
}
|
|
6647
|
-
.yd-layout-header--dark .yd-layout-header__action-btn[data-v-
|
|
6659
|
+
.yd-layout-header--dark .yd-layout-header__action-btn[data-v-0e3d094c]:hover {
|
|
6648
6660
|
background: rgba(255, 255, 255, 0.1);
|
|
6649
6661
|
color: #fff;
|
|
6650
6662
|
}
|
|
6651
|
-
.yd-layout-header--dark .yd-layout-header__username[data-v-
|
|
6663
|
+
.yd-layout-header--dark .yd-layout-header__username[data-v-0e3d094c] {
|
|
6652
6664
|
color: #fff;
|
|
6653
6665
|
}
|
|
6654
6666
|
|
|
6655
|
-
.yd-layout-content[data-v-
|
|
6667
|
+
.yd-layout-content[data-v-bedd80a3] {
|
|
6656
6668
|
flex: 1;
|
|
6657
6669
|
min-height: 0;
|
|
6658
6670
|
overflow: auto;
|
|
@@ -6826,7 +6838,7 @@ to {
|
|
|
6826
6838
|
opacity: 0;
|
|
6827
6839
|
}
|
|
6828
6840
|
|
|
6829
|
-
.yd-layout[data-v-
|
|
6841
|
+
.yd-layout[data-v-904a9ea8] {
|
|
6830
6842
|
position: relative;
|
|
6831
6843
|
display: flex;
|
|
6832
6844
|
width: 100%;
|
|
@@ -6834,19 +6846,19 @@ to {
|
|
|
6834
6846
|
background: var(--yd-color-bg);
|
|
6835
6847
|
color: var(--yd-color-fg);
|
|
6836
6848
|
}
|
|
6837
|
-
.yd-layout--light[data-v-
|
|
6849
|
+
.yd-layout--light[data-v-904a9ea8] {
|
|
6838
6850
|
--yd-layout-sidebar-bg: #ffffff;
|
|
6839
6851
|
--yd-layout-sidebar-border: var(--yd-color-border);
|
|
6840
6852
|
--yd-layout-header-bg: #ffffff;
|
|
6841
6853
|
--yd-layout-header-border: var(--yd-color-border);
|
|
6842
6854
|
}
|
|
6843
|
-
.yd-layout--dark[data-v-
|
|
6855
|
+
.yd-layout--dark[data-v-904a9ea8] {
|
|
6844
6856
|
--yd-layout-sidebar-bg: #141414;
|
|
6845
6857
|
--yd-layout-sidebar-border: #303030;
|
|
6846
6858
|
--yd-layout-header-bg: #141414;
|
|
6847
6859
|
--yd-layout-header-border: #303030;
|
|
6848
6860
|
}
|
|
6849
|
-
.yd-layout--corporate[data-v-
|
|
6861
|
+
.yd-layout--corporate[data-v-904a9ea8] {
|
|
6850
6862
|
--yd-layout-sidebar-bg: #0060ab;
|
|
6851
6863
|
--yd-layout-sidebar-border: rgba(255, 255, 255, 0.15);
|
|
6852
6864
|
--yd-layout-header-bg: #ffffff;
|
|
@@ -6859,7 +6871,7 @@ to {
|
|
|
6859
6871
|
--yd-layout-sidebar-active-bg: rgba(255, 255, 255, 0.2);
|
|
6860
6872
|
--yd-layout-sidebar-active-fg: #ffffff;
|
|
6861
6873
|
}
|
|
6862
|
-
.yd-layout__main[data-v-
|
|
6874
|
+
.yd-layout__main[data-v-904a9ea8] {
|
|
6863
6875
|
position: relative;
|
|
6864
6876
|
flex: 1;
|
|
6865
6877
|
display: flex;
|
|
@@ -6871,7 +6883,7 @@ to {
|
|
|
6871
6883
|
}
|
|
6872
6884
|
|
|
6873
6885
|
/* 移动端遮罩层 */
|
|
6874
|
-
.yd-layout__mask[data-v-
|
|
6886
|
+
.yd-layout__mask[data-v-904a9ea8] {
|
|
6875
6887
|
position: fixed;
|
|
6876
6888
|
top: 0;
|
|
6877
6889
|
left: 0;
|
|
@@ -6882,20 +6894,20 @@ to {
|
|
|
6882
6894
|
}
|
|
6883
6895
|
|
|
6884
6896
|
/* 设置抽屉内容 */
|
|
6885
|
-
.yd-layout-settings[data-v-
|
|
6897
|
+
.yd-layout-settings[data-v-904a9ea8] {
|
|
6886
6898
|
display: flex;
|
|
6887
6899
|
flex-direction: column;
|
|
6888
6900
|
gap: var(--yd-spacing-lg);
|
|
6889
6901
|
}
|
|
6890
|
-
.yd-layout-settings__item[data-v-
|
|
6902
|
+
.yd-layout-settings__item[data-v-904a9ea8] {
|
|
6891
6903
|
padding: var(--yd-spacing-sm) 0;
|
|
6892
6904
|
}
|
|
6893
|
-
.yd-layout-settings__row[data-v-
|
|
6905
|
+
.yd-layout-settings__row[data-v-904a9ea8] {
|
|
6894
6906
|
display: flex;
|
|
6895
6907
|
align-items: center;
|
|
6896
6908
|
justify-content: space-between;
|
|
6897
6909
|
}
|
|
6898
|
-
.yd-layout-settings__label[data-v-
|
|
6910
|
+
.yd-layout-settings__label[data-v-904a9ea8] {
|
|
6899
6911
|
font-size: var(--yd-font-size-base);
|
|
6900
6912
|
color: var(--yd-color-fg);
|
|
6901
6913
|
}
|
|
@@ -7030,18 +7042,18 @@ to {
|
|
|
7030
7042
|
opacity: 0;
|
|
7031
7043
|
}
|
|
7032
7044
|
|
|
7033
|
-
.yd-table-wrapper[data-v-
|
|
7045
|
+
.yd-table-wrapper[data-v-eba68bff] {
|
|
7034
7046
|
position: relative;
|
|
7035
7047
|
overflow: auto;
|
|
7036
7048
|
}
|
|
7037
|
-
.yd-table-wrapper--bordered .yd-table__table[data-v-
|
|
7049
|
+
.yd-table-wrapper--bordered .yd-table__table[data-v-eba68bff] {
|
|
7038
7050
|
border: 1px solid var(--yd-color-border);
|
|
7039
7051
|
}
|
|
7040
|
-
.yd-table-wrapper--bordered .yd-table__th[data-v-
|
|
7041
|
-
.yd-table-wrapper--bordered .yd-table__td[data-v-
|
|
7052
|
+
.yd-table-wrapper--bordered .yd-table__th[data-v-eba68bff],
|
|
7053
|
+
.yd-table-wrapper--bordered .yd-table__td[data-v-eba68bff] {
|
|
7042
7054
|
border: 1px solid var(--yd-color-border);
|
|
7043
7055
|
}
|
|
7044
|
-
.yd-table__loading[data-v-
|
|
7056
|
+
.yd-table__loading[data-v-eba68bff] {
|
|
7045
7057
|
position: absolute;
|
|
7046
7058
|
inset: 0;
|
|
7047
7059
|
background: rgba(255, 255, 255, 0.7);
|
|
@@ -7052,25 +7064,25 @@ to {
|
|
|
7052
7064
|
gap: var(--yd-spacing-sm);
|
|
7053
7065
|
z-index: 10;
|
|
7054
7066
|
}
|
|
7055
|
-
[data-theme="dark"] .yd-table__loading[data-v-
|
|
7067
|
+
[data-theme="dark"] .yd-table__loading[data-v-eba68bff] {
|
|
7056
7068
|
background: rgba(0, 0, 0, 0.5);
|
|
7057
7069
|
}
|
|
7058
|
-
.yd-table__wrapper[data-v-
|
|
7070
|
+
.yd-table__wrapper[data-v-eba68bff] {
|
|
7059
7071
|
overflow: auto;
|
|
7060
7072
|
}
|
|
7061
|
-
.yd-table__table[data-v-
|
|
7073
|
+
.yd-table__table[data-v-eba68bff] {
|
|
7062
7074
|
width: 100%;
|
|
7063
7075
|
border-collapse: collapse;
|
|
7064
7076
|
font-size: var(--yd-font-size-sm);
|
|
7065
7077
|
position: relative;
|
|
7066
7078
|
}
|
|
7067
|
-
.yd-table__thead--sticky th[data-v-
|
|
7079
|
+
.yd-table__thead--sticky th[data-v-eba68bff] {
|
|
7068
7080
|
position: sticky;
|
|
7069
7081
|
top: 0;
|
|
7070
7082
|
z-index: 10;
|
|
7071
7083
|
background: var(--yd-color-muted);
|
|
7072
7084
|
}
|
|
7073
|
-
.yd-table__th[data-v-
|
|
7085
|
+
.yd-table__th[data-v-eba68bff] {
|
|
7074
7086
|
padding: var(--yd-spacing-sm) var(--yd-spacing-base);
|
|
7075
7087
|
text-align: left;
|
|
7076
7088
|
font-weight: var(--yd-font-weight-semibold);
|
|
@@ -7079,30 +7091,30 @@ to {
|
|
|
7079
7091
|
border-bottom: 1px solid var(--yd-color-border);
|
|
7080
7092
|
white-space: nowrap;
|
|
7081
7093
|
}
|
|
7082
|
-
.yd-table__th--fixed-left[data-v-
|
|
7083
|
-
.yd-table__td--fixed-left[data-v-
|
|
7094
|
+
.yd-table__th--fixed-left[data-v-eba68bff],
|
|
7095
|
+
.yd-table__td--fixed-left[data-v-eba68bff] {
|
|
7084
7096
|
position: sticky;
|
|
7085
7097
|
left: 0;
|
|
7086
7098
|
z-index: 5;
|
|
7087
7099
|
background: var(--yd-color-bg);
|
|
7088
7100
|
}
|
|
7089
|
-
.yd-table__th--fixed-right[data-v-
|
|
7090
|
-
.yd-table__td--fixed-right[data-v-
|
|
7101
|
+
.yd-table__th--fixed-right[data-v-eba68bff],
|
|
7102
|
+
.yd-table__td--fixed-right[data-v-eba68bff] {
|
|
7091
7103
|
position: sticky;
|
|
7092
7104
|
right: 0;
|
|
7093
7105
|
z-index: 5;
|
|
7094
7106
|
background: var(--yd-color-bg);
|
|
7095
7107
|
}
|
|
7096
|
-
.yd-table__thead--sticky .yd-table__th--fixed-left[data-v-
|
|
7097
|
-
.yd-table__thead--sticky .yd-table__th--fixed-right[data-v-
|
|
7108
|
+
.yd-table__thead--sticky .yd-table__th--fixed-left[data-v-eba68bff],
|
|
7109
|
+
.yd-table__thead--sticky .yd-table__th--fixed-right[data-v-eba68bff] {
|
|
7098
7110
|
z-index: 15;
|
|
7099
7111
|
}
|
|
7100
|
-
.yd-table__th-content[data-v-
|
|
7112
|
+
.yd-table__th-content[data-v-eba68bff] {
|
|
7101
7113
|
display: flex;
|
|
7102
7114
|
align-items: center;
|
|
7103
7115
|
gap: var(--yd-spacing-xs);
|
|
7104
7116
|
}
|
|
7105
|
-
.yd-table__sort-btn[data-v-
|
|
7117
|
+
.yd-table__sort-btn[data-v-eba68bff] {
|
|
7106
7118
|
background: none;
|
|
7107
7119
|
border: none;
|
|
7108
7120
|
cursor: pointer;
|
|
@@ -7110,15 +7122,15 @@ to {
|
|
|
7110
7122
|
padding: 0;
|
|
7111
7123
|
display: inline-flex;
|
|
7112
7124
|
}
|
|
7113
|
-
.yd-table__sort-btn[data-v-
|
|
7125
|
+
.yd-table__sort-btn[data-v-eba68bff]:hover {
|
|
7114
7126
|
color: var(--yd-color-fg);
|
|
7115
7127
|
}
|
|
7116
7128
|
|
|
7117
7129
|
/* Column resize handle */
|
|
7118
|
-
.yd-table__th--resizable[data-v-
|
|
7130
|
+
.yd-table__th--resizable[data-v-eba68bff] {
|
|
7119
7131
|
position: relative;
|
|
7120
7132
|
}
|
|
7121
|
-
.yd-table__resize-handle[data-v-
|
|
7133
|
+
.yd-table__resize-handle[data-v-eba68bff] {
|
|
7122
7134
|
position: absolute;
|
|
7123
7135
|
right: 0;
|
|
7124
7136
|
top: 0;
|
|
@@ -7128,29 +7140,29 @@ to {
|
|
|
7128
7140
|
background: transparent;
|
|
7129
7141
|
transition: background 0.2s;
|
|
7130
7142
|
}
|
|
7131
|
-
.yd-table__resize-handle[data-v-
|
|
7143
|
+
.yd-table__resize-handle[data-v-eba68bff]:hover {
|
|
7132
7144
|
background: var(--yd-color-primary-500);
|
|
7133
7145
|
}
|
|
7134
7146
|
|
|
7135
7147
|
/* Column drag/drop */
|
|
7136
|
-
.yd-table__th--draggable[data-v-
|
|
7148
|
+
.yd-table__th--draggable[data-v-eba68bff] {
|
|
7137
7149
|
cursor: grab;
|
|
7138
7150
|
user-select: none;
|
|
7139
7151
|
}
|
|
7140
|
-
.yd-table__th--draggable[data-v-
|
|
7152
|
+
.yd-table__th--draggable[data-v-eba68bff]:active {
|
|
7141
7153
|
cursor: grabbing;
|
|
7142
7154
|
}
|
|
7143
|
-
.yd-table__th--dragging[data-v-
|
|
7155
|
+
.yd-table__th--dragging[data-v-eba68bff] {
|
|
7144
7156
|
opacity: 0.5;
|
|
7145
7157
|
background: var(--yd-color-muted);
|
|
7146
7158
|
}
|
|
7147
|
-
.yd-table__th--drag-over[data-v-
|
|
7159
|
+
.yd-table__th--drag-over[data-v-eba68bff] {
|
|
7148
7160
|
border-left: 2px solid var(--yd-color-primary-500);
|
|
7149
7161
|
}
|
|
7150
|
-
.yd-table__resize-handle[data-v-
|
|
7162
|
+
.yd-table__resize-handle[data-v-eba68bff]:active {
|
|
7151
7163
|
background: var(--yd-color-primary-700);
|
|
7152
7164
|
}
|
|
7153
|
-
.yd-table__td[data-v-
|
|
7165
|
+
.yd-table__td[data-v-eba68bff] {
|
|
7154
7166
|
padding: var(--yd-spacing-sm) var(--yd-spacing-base);
|
|
7155
7167
|
border-bottom: 1px solid var(--yd-color-border);
|
|
7156
7168
|
color: var(--yd-color-fg);
|
|
@@ -7158,23 +7170,23 @@ to {
|
|
|
7158
7170
|
text-overflow: ellipsis;
|
|
7159
7171
|
white-space: nowrap;
|
|
7160
7172
|
}
|
|
7161
|
-
.yd-table__td--ellipsis[data-v-
|
|
7173
|
+
.yd-table__td--ellipsis[data-v-eba68bff] {
|
|
7162
7174
|
overflow: hidden;
|
|
7163
7175
|
text-overflow: ellipsis;
|
|
7164
7176
|
white-space: nowrap;
|
|
7165
7177
|
cursor: default;
|
|
7166
7178
|
}
|
|
7167
|
-
.yd-table__th--center[data-v-
|
|
7168
|
-
.yd-table__td--center[data-v-
|
|
7179
|
+
.yd-table__th--center[data-v-eba68bff],
|
|
7180
|
+
.yd-table__td--center[data-v-eba68bff] {
|
|
7169
7181
|
text-align: center;
|
|
7170
7182
|
}
|
|
7171
7183
|
|
|
7172
7184
|
/* Virtual scroll optimization */
|
|
7173
|
-
.yd-table__virtual-container[data-v-
|
|
7185
|
+
.yd-table__virtual-container[data-v-eba68bff] {
|
|
7174
7186
|
position: relative;
|
|
7175
7187
|
width: 100%;
|
|
7176
7188
|
}
|
|
7177
|
-
.yd-table__virtual-header[data-v-
|
|
7189
|
+
.yd-table__virtual-header[data-v-eba68bff] {
|
|
7178
7190
|
position: sticky;
|
|
7179
7191
|
top: 0;
|
|
7180
7192
|
z-index: 10;
|
|
@@ -7183,7 +7195,7 @@ to {
|
|
|
7183
7195
|
background: var(--yd-color-muted);
|
|
7184
7196
|
border-bottom: 1px solid var(--yd-color-border);
|
|
7185
7197
|
}
|
|
7186
|
-
.yd-table__virtual-header .yd-table__th[data-v-
|
|
7198
|
+
.yd-table__virtual-header .yd-table__th[data-v-eba68bff] {
|
|
7187
7199
|
padding: var(--yd-spacing-sm) var(--yd-spacing-base);
|
|
7188
7200
|
text-align: left;
|
|
7189
7201
|
font-weight: var(--yd-font-weight-semibold);
|
|
@@ -7192,56 +7204,56 @@ to {
|
|
|
7192
7204
|
display: flex;
|
|
7193
7205
|
align-items: center;
|
|
7194
7206
|
}
|
|
7195
|
-
.yd-table__tr[data-v-
|
|
7207
|
+
.yd-table__tr[data-v-eba68bff] {
|
|
7196
7208
|
will-change: auto;
|
|
7197
7209
|
border-bottom: 1px solid var(--yd-color-border);
|
|
7198
7210
|
}
|
|
7199
|
-
.yd-table__th--right[data-v-
|
|
7200
|
-
.yd-table__td--right[data-v-
|
|
7211
|
+
.yd-table__th--right[data-v-eba68bff],
|
|
7212
|
+
.yd-table__td--right[data-v-eba68bff] {
|
|
7201
7213
|
text-align: right;
|
|
7202
7214
|
}
|
|
7203
|
-
.yd-table__tr--hover[data-v-
|
|
7215
|
+
.yd-table__tr--hover[data-v-eba68bff]:hover {
|
|
7204
7216
|
background: var(--yd-color-muted);
|
|
7205
7217
|
}
|
|
7206
|
-
.yd-table__tr--stripe[data-v-
|
|
7218
|
+
.yd-table__tr--stripe[data-v-eba68bff] {
|
|
7207
7219
|
background: var(--yd-color-muted);
|
|
7208
7220
|
}
|
|
7209
|
-
.yd-table__empty[data-v-
|
|
7221
|
+
.yd-table__empty[data-v-eba68bff] {
|
|
7210
7222
|
padding: var(--yd-spacing-3xl) var(--yd-spacing-base);
|
|
7211
7223
|
text-align: center;
|
|
7212
7224
|
}
|
|
7213
|
-
.yd-table__expand-icon[data-v-
|
|
7225
|
+
.yd-table__expand-icon[data-v-eba68bff] {
|
|
7214
7226
|
cursor: pointer;
|
|
7215
7227
|
display: inline-block;
|
|
7216
7228
|
transition: transform var(--yd-transition-fast);
|
|
7217
7229
|
color: var(--yd-color-muted-fg);
|
|
7218
7230
|
}
|
|
7219
|
-
.yd-table__expand-icon--expanded[data-v-
|
|
7231
|
+
.yd-table__expand-icon--expanded[data-v-eba68bff] {
|
|
7220
7232
|
transform: rotate(90deg);
|
|
7221
7233
|
}
|
|
7222
|
-
.yd-table__expand-all[data-v-
|
|
7234
|
+
.yd-table__expand-all[data-v-eba68bff] {
|
|
7223
7235
|
cursor: pointer;
|
|
7224
7236
|
display: inline-block;
|
|
7225
7237
|
transition: transform var(--yd-transition-fast);
|
|
7226
7238
|
color: var(--yd-color-muted-fg);
|
|
7227
7239
|
}
|
|
7228
|
-
.yd-table__expand-all[data-v-
|
|
7240
|
+
.yd-table__expand-all[data-v-eba68bff]:hover {
|
|
7229
7241
|
color: var(--yd-color-primary-500);
|
|
7230
7242
|
}
|
|
7231
|
-
.yd-table__expand-row[data-v-
|
|
7243
|
+
.yd-table__expand-row[data-v-eba68bff] {
|
|
7232
7244
|
background: var(--yd-color-muted);
|
|
7233
7245
|
}
|
|
7234
|
-
.yd-table__expand-cell[data-v-
|
|
7246
|
+
.yd-table__expand-cell[data-v-eba68bff] {
|
|
7235
7247
|
padding: var(--yd-spacing-base);
|
|
7236
7248
|
}
|
|
7237
|
-
.yd-table__pagination[data-v-
|
|
7249
|
+
.yd-table__pagination[data-v-eba68bff] {
|
|
7238
7250
|
display: flex;
|
|
7239
7251
|
align-items: center;
|
|
7240
7252
|
justify-content: flex-end;
|
|
7241
7253
|
gap: var(--yd-spacing-xs);
|
|
7242
7254
|
padding: var(--yd-spacing-base) 0;
|
|
7243
7255
|
}
|
|
7244
|
-
.yd-table__page-btn[data-v-
|
|
7256
|
+
.yd-table__page-btn[data-v-eba68bff] {
|
|
7245
7257
|
display: inline-flex;
|
|
7246
7258
|
align-items: center;
|
|
7247
7259
|
justify-content: center;
|
|
@@ -7256,32 +7268,32 @@ to {
|
|
|
7256
7268
|
color: var(--yd-color-fg);
|
|
7257
7269
|
transition: all var(--yd-transition-fast);
|
|
7258
7270
|
}
|
|
7259
|
-
.yd-table__page-btn[data-v-
|
|
7271
|
+
.yd-table__page-btn[data-v-eba68bff]:hover:not(:disabled) {
|
|
7260
7272
|
border-color: var(--yd-color-primary-500);
|
|
7261
7273
|
color: var(--yd-color-primary-600);
|
|
7262
7274
|
}
|
|
7263
|
-
.yd-table__page-btn--active[data-v-
|
|
7275
|
+
.yd-table__page-btn--active[data-v-eba68bff] {
|
|
7264
7276
|
background: var(--yd-color-primary-500);
|
|
7265
7277
|
color: #fff;
|
|
7266
7278
|
border-color: var(--yd-color-primary-500);
|
|
7267
7279
|
}
|
|
7268
|
-
.yd-table__page-btn[data-v-
|
|
7280
|
+
.yd-table__page-btn[data-v-eba68bff]:disabled {
|
|
7269
7281
|
opacity: 0.5;
|
|
7270
7282
|
cursor: not-allowed;
|
|
7271
7283
|
}
|
|
7272
|
-
.yd-table__page-info[data-v-
|
|
7284
|
+
.yd-table__page-info[data-v-eba68bff] {
|
|
7273
7285
|
font-size: var(--yd-font-size-xs);
|
|
7274
7286
|
color: var(--yd-color-muted-fg);
|
|
7275
7287
|
margin-left: var(--yd-spacing-sm);
|
|
7276
7288
|
}
|
|
7277
7289
|
|
|
7278
7290
|
/* Export toolbar */
|
|
7279
|
-
.yd-table__export-toolbar[data-v-
|
|
7291
|
+
.yd-table__export-toolbar[data-v-eba68bff] {
|
|
7280
7292
|
display: flex;
|
|
7281
7293
|
gap: var(--yd-spacing-sm);
|
|
7282
7294
|
margin-bottom: var(--yd-spacing-sm);
|
|
7283
7295
|
}
|
|
7284
|
-
.yd-table__export-btn[data-v-
|
|
7296
|
+
.yd-table__export-btn[data-v-eba68bff] {
|
|
7285
7297
|
padding: var(--yd-spacing-xs) var(--yd-spacing-base);
|
|
7286
7298
|
border: 1px solid var(--yd-color-border);
|
|
7287
7299
|
border-radius: var(--yd-radius-sm);
|
|
@@ -7291,14 +7303,14 @@ to {
|
|
|
7291
7303
|
cursor: pointer;
|
|
7292
7304
|
transition: all var(--yd-transition-fast);
|
|
7293
7305
|
}
|
|
7294
|
-
.yd-table__export-btn[data-v-
|
|
7306
|
+
.yd-table__export-btn[data-v-eba68bff]:hover {
|
|
7295
7307
|
border-color: var(--yd-color-primary-500);
|
|
7296
7308
|
color: var(--yd-color-primary-600);
|
|
7297
7309
|
background: var(--yd-color-primary-50);
|
|
7298
7310
|
}
|
|
7299
7311
|
|
|
7300
7312
|
/* Cell overflow tooltip */
|
|
7301
|
-
.yd-table__cell-tooltip[data-v-
|
|
7313
|
+
.yd-table__cell-tooltip[data-v-eba68bff] {
|
|
7302
7314
|
position: fixed;
|
|
7303
7315
|
padding: 4px 10px;
|
|
7304
7316
|
background: var(--yd-color-neutral-800);
|
|
@@ -7312,47 +7324,47 @@ to {
|
|
|
7312
7324
|
box-shadow: var(--yd-shadow-md);
|
|
7313
7325
|
pointer-events: none;
|
|
7314
7326
|
}
|
|
7315
|
-
[data-theme="dark"] .yd-table__cell-tooltip[data-v-
|
|
7327
|
+
[data-theme="dark"] .yd-table__cell-tooltip[data-v-eba68bff] {
|
|
7316
7328
|
background: var(--yd-color-neutral-200);
|
|
7317
7329
|
color: var(--yd-color-neutral-900);
|
|
7318
7330
|
}
|
|
7319
|
-
.yd-tooltip-enter-active[data-v-
|
|
7320
|
-
.yd-tooltip-leave-active[data-v-
|
|
7331
|
+
.yd-tooltip-enter-active[data-v-eba68bff],
|
|
7332
|
+
.yd-tooltip-leave-active[data-v-eba68bff] {
|
|
7321
7333
|
transition: opacity 0.15s ease;
|
|
7322
7334
|
}
|
|
7323
|
-
.yd-tooltip-enter-from[data-v-
|
|
7324
|
-
.yd-tooltip-leave-to[data-v-
|
|
7335
|
+
.yd-tooltip-enter-from[data-v-eba68bff],
|
|
7336
|
+
.yd-tooltip-leave-to[data-v-eba68bff] {
|
|
7325
7337
|
opacity: 0;
|
|
7326
7338
|
}
|
|
7327
7339
|
|
|
7328
7340
|
/* Skeleton styles */
|
|
7329
|
-
.yd-table__skeleton-wrapper[data-v-
|
|
7341
|
+
.yd-table__skeleton-wrapper[data-v-eba68bff] {
|
|
7330
7342
|
width: 100%;
|
|
7331
7343
|
}
|
|
7332
|
-
.yd-table__skeleton-table[data-v-
|
|
7344
|
+
.yd-table__skeleton-table[data-v-eba68bff] {
|
|
7333
7345
|
width: 100%;
|
|
7334
7346
|
border-collapse: collapse;
|
|
7335
7347
|
}
|
|
7336
|
-
.yd-table__skeleton-header-row[data-v-
|
|
7348
|
+
.yd-table__skeleton-header-row[data-v-eba68bff] {
|
|
7337
7349
|
background: var(--yd-color-muted);
|
|
7338
7350
|
}
|
|
7339
|
-
.yd-table__skeleton-cell[data-v-
|
|
7351
|
+
.yd-table__skeleton-cell[data-v-eba68bff] {
|
|
7340
7352
|
padding: var(--yd-spacing-md) var(--yd-spacing-base);
|
|
7341
7353
|
border-bottom: 1px solid var(--yd-color-border);
|
|
7342
7354
|
}
|
|
7343
|
-
.yd-table__skeleton-title[data-v-
|
|
7355
|
+
.yd-table__skeleton-title[data-v-eba68bff] {
|
|
7344
7356
|
height: 16px;
|
|
7345
7357
|
width: 60%;
|
|
7346
7358
|
background: var(--yd-color-muted);
|
|
7347
7359
|
border-radius: var(--yd-radius-sm);
|
|
7348
7360
|
}
|
|
7349
|
-
.yd-table__skeleton-row[data-v-
|
|
7361
|
+
.yd-table__skeleton-row[data-v-eba68bff] {
|
|
7350
7362
|
border-bottom: 1px solid var(--yd-color-border);
|
|
7351
7363
|
}
|
|
7352
|
-
.yd-table__skeleton-row--stripe[data-v-
|
|
7364
|
+
.yd-table__skeleton-row--stripe[data-v-eba68bff] {
|
|
7353
7365
|
background: var(--yd-color-muted);
|
|
7354
7366
|
}
|
|
7355
|
-
.yd-table__skeleton-content[data-v-
|
|
7367
|
+
.yd-table__skeleton-content[data-v-eba68bff] {
|
|
7356
7368
|
height: 16px;
|
|
7357
7369
|
background: linear-gradient(
|
|
7358
7370
|
90deg,
|
|
@@ -7362,9 +7374,9 @@ to {
|
|
|
7362
7374
|
);
|
|
7363
7375
|
background-size: 200% 100%;
|
|
7364
7376
|
border-radius: var(--yd-radius-sm);
|
|
7365
|
-
animation: yd-table-skeleton-shimmer-
|
|
7377
|
+
animation: yd-table-skeleton-shimmer-eba68bff 1.5s infinite;
|
|
7366
7378
|
}
|
|
7367
|
-
@keyframes yd-table-skeleton-shimmer-
|
|
7379
|
+
@keyframes yd-table-skeleton-shimmer-eba68bff {
|
|
7368
7380
|
0% {
|
|
7369
7381
|
background-position: 200% 0;
|
|
7370
7382
|
}
|