@douyinfe/semi-ui 2.33.0 → 2.34.0-alpha.1
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/css/semi.css +493 -23
- package/dist/css/semi.min.css +1 -1
- package/dist/umd/semi-ui.js +3604 -3474
- package/dist/umd/semi-ui.js.map +1 -1
- package/dist/umd/semi-ui.min.js +1 -1
- package/dist/umd/semi-ui.min.js.map +1 -1
- package/lib/cjs/_utils/index.d.ts +1 -1
- package/lib/cjs/button/index.d.ts +1 -1
- package/lib/cjs/input/index.d.ts +1 -1
- package/lib/cjs/input/index.js +1 -1
- package/lib/cjs/navigation/Item.d.ts +4 -0
- package/lib/cjs/navigation/Item.js +29 -10
- package/lib/cjs/navigation/SubNav.d.ts +5 -0
- package/lib/cjs/navigation/SubNav.js +51 -26
- package/lib/cjs/skeleton/index.d.ts +1 -0
- package/lib/cjs/skeleton/index.js +1 -0
- package/lib/cjs/skeleton/item.d.ts +1 -0
- package/lib/cjs/skeleton/item.js +6 -1
- package/lib/cjs/steps/basicStep.d.ts +3 -0
- package/lib/cjs/steps/basicStep.js +8 -2
- package/lib/cjs/steps/basicSteps.js +2 -1
- package/lib/cjs/steps/fillStep.d.ts +2 -0
- package/lib/cjs/steps/fillStep.js +3 -1
- package/lib/cjs/steps/fillSteps.js +5 -8
- package/lib/cjs/steps/index.d.ts +63 -1
- package/lib/cjs/steps/index.js +9 -0
- package/lib/cjs/steps/navStep.d.ts +3 -0
- package/lib/cjs/steps/navStep.js +6 -2
- package/lib/cjs/steps/navSteps.js +2 -1
- package/lib/cjs/steps/step.d.ts +4 -1
- package/lib/cjs/steps/step.js +1 -0
- package/lib/cjs/table/Body/BaseRow.js +1 -1
- package/lib/cjs/timeline/context.d.ts +8 -0
- package/lib/cjs/timeline/context.js +15 -0
- package/lib/cjs/timeline/index.d.ts +2 -1
- package/lib/cjs/timeline/index.js +8 -2
- package/lib/cjs/timeline/item.d.ts +10 -0
- package/lib/cjs/timeline/item.js +42 -3
- package/lib/cjs/tooltip/index.d.ts +2 -0
- package/lib/cjs/tooltip/index.js +14 -0
- package/lib/es/_utils/index.d.ts +1 -1
- package/lib/es/button/index.d.ts +1 -1
- package/lib/es/input/index.d.ts +1 -1
- package/lib/es/input/index.js +1 -1
- package/lib/es/navigation/Item.d.ts +4 -0
- package/lib/es/navigation/Item.js +28 -10
- package/lib/es/navigation/SubNav.d.ts +5 -0
- package/lib/es/navigation/SubNav.js +52 -26
- package/lib/es/skeleton/index.d.ts +1 -0
- package/lib/es/skeleton/index.js +1 -0
- package/lib/es/skeleton/item.d.ts +1 -0
- package/lib/es/skeleton/item.js +6 -1
- package/lib/es/steps/basicStep.d.ts +3 -0
- package/lib/es/steps/basicStep.js +8 -2
- package/lib/es/steps/basicSteps.js +2 -1
- package/lib/es/steps/fillStep.d.ts +2 -0
- package/lib/es/steps/fillStep.js +3 -1
- package/lib/es/steps/fillSteps.js +6 -8
- package/lib/es/steps/index.d.ts +63 -1
- package/lib/es/steps/index.js +6 -0
- package/lib/es/steps/navStep.d.ts +3 -0
- package/lib/es/steps/navStep.js +6 -2
- package/lib/es/steps/navSteps.js +2 -1
- package/lib/es/steps/step.d.ts +4 -1
- package/lib/es/steps/step.js +1 -0
- package/lib/es/table/Body/BaseRow.js +1 -1
- package/lib/es/timeline/context.d.ts +8 -0
- package/lib/es/timeline/context.js +3 -0
- package/lib/es/timeline/index.d.ts +2 -1
- package/lib/es/timeline/index.js +7 -2
- package/lib/es/timeline/item.d.ts +10 -0
- package/lib/es/timeline/item.js +41 -3
- package/lib/es/tooltip/index.d.ts +2 -0
- package/lib/es/tooltip/index.js +14 -0
- package/package.json +8 -8
package/dist/css/semi.css
CHANGED
|
@@ -12721,7 +12721,6 @@ img[src=""], img:not([src]) {
|
|
|
12721
12721
|
padding: 8px 12px;
|
|
12722
12722
|
box-sizing: border-box;
|
|
12723
12723
|
margin-top: 0;
|
|
12724
|
-
margin-bottom: 8px;
|
|
12725
12724
|
font-size: 14px;
|
|
12726
12725
|
line-height: 20px;
|
|
12727
12726
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
@@ -12906,6 +12905,12 @@ img[src=""], img:not([src]) {
|
|
|
12906
12905
|
text-overflow: ellipsis;
|
|
12907
12906
|
white-space: nowrap;
|
|
12908
12907
|
overflow: hidden;
|
|
12908
|
+
display: flex;
|
|
12909
|
+
flex-direction: column;
|
|
12910
|
+
row-gap: 8px;
|
|
12911
|
+
}
|
|
12912
|
+
.semi-navigation-sub.semi-navigation-sub-open {
|
|
12913
|
+
margin-top: 8px;
|
|
12909
12914
|
}
|
|
12910
12915
|
.semi-navigation-sub .semi-navigation-item {
|
|
12911
12916
|
color: var(--semi-color-text-0);
|
|
@@ -12914,9 +12919,6 @@ img[src=""], img:not([src]) {
|
|
|
12914
12919
|
font-weight: 400;
|
|
12915
12920
|
width: 100%;
|
|
12916
12921
|
}
|
|
12917
|
-
.semi-navigation-sub .semi-navigation-item:first-child {
|
|
12918
|
-
margin-top: 8px;
|
|
12919
|
-
}
|
|
12920
12922
|
.semi-navigation-sub .semi-navigation-item > .semi-navigation-sub .semi-navigation-item-text:first-child {
|
|
12921
12923
|
margin-left: 44px;
|
|
12922
12924
|
}
|
|
@@ -12998,6 +13000,12 @@ img[src=""], img:not([src]) {
|
|
|
12998
13000
|
transition: transform 200ms ease-in-out;
|
|
12999
13001
|
transform: rotate(-180deg);
|
|
13000
13002
|
}
|
|
13003
|
+
.semi-navigation-icon-rotate-0-no-transition {
|
|
13004
|
+
transform: rotate(0);
|
|
13005
|
+
}
|
|
13006
|
+
.semi-navigation-icon-rotate-180-no-transition {
|
|
13007
|
+
transform: rotate(-180deg);
|
|
13008
|
+
}
|
|
13001
13009
|
|
|
13002
13010
|
/* Header、Footer-Common */
|
|
13003
13011
|
.semi-navigation-header {
|
|
@@ -13058,6 +13066,11 @@ img[src=""], img:not([src]) {
|
|
|
13058
13066
|
.semi-navigation-vertical .semi-navigation-list > .semi-navigation-item-selected:not(.semi-navigation-item-disabled).semi-navigation-item-normal:hover .semi-navigation-item-icon:first-child {
|
|
13059
13067
|
color: var(--semi-color-primary);
|
|
13060
13068
|
}
|
|
13069
|
+
.semi-navigation-vertical .semi-navigation-list {
|
|
13070
|
+
display: flex;
|
|
13071
|
+
flex-direction: column;
|
|
13072
|
+
row-gap: 8px;
|
|
13073
|
+
}
|
|
13061
13074
|
.semi-navigation-vertical .semi-navigation-list > .semi-navigation-sub-wrap > .semi-navigation-sub-title {
|
|
13062
13075
|
color: var(--semi-color-text-0);
|
|
13063
13076
|
background-color: transparent;
|
|
@@ -13135,9 +13148,6 @@ img[src=""], img:not([src]) {
|
|
|
13135
13148
|
.semi-navigation-vertical .semi-navigation-list > .semi-navigation-sub-wrap > .semi-navigation-sub-title:hover.semi-navigation-sub-title-disabled.semi-navigation-sub-title-selected .semi-navigation-item-icon:first-child, .semi-navigation-vertical .semi-navigation-list > .semi-navigation-sub-wrap > .semi-navigation-sub-title:active.semi-navigation-sub-title-disabled.semi-navigation-sub-title-selected .semi-navigation-item-icon:first-child {
|
|
13136
13149
|
color: var(--semi-color-primary-disabled);
|
|
13137
13150
|
}
|
|
13138
|
-
.semi-navigation-vertical .semi-navigation-item:last-of-type {
|
|
13139
|
-
margin-bottom: 0;
|
|
13140
|
-
}
|
|
13141
13151
|
.semi-navigation-vertical .semi-navigation-inner {
|
|
13142
13152
|
flex-direction: column;
|
|
13143
13153
|
}
|
|
@@ -13336,6 +13346,66 @@ img[src=""], img:not([src]) {
|
|
|
13336
13346
|
padding: 0;
|
|
13337
13347
|
}
|
|
13338
13348
|
|
|
13349
|
+
.semi-navigation-first-layer > .semi-navigation-sub-title .semi-navigation-item-text {
|
|
13350
|
+
font-weight: 600;
|
|
13351
|
+
}
|
|
13352
|
+
.semi-navigation-first-layer > .semi-navigation-item-text {
|
|
13353
|
+
font-weight: 600;
|
|
13354
|
+
}
|
|
13355
|
+
|
|
13356
|
+
.semi-navigation-sub-title-selected .semi-navigation-item-icon:first-child {
|
|
13357
|
+
color: var(--semi-color-primary);
|
|
13358
|
+
}
|
|
13359
|
+
|
|
13360
|
+
.semi-navigation-sub-wrap .semi-navigation-sub-title {
|
|
13361
|
+
margin-bottom: 0;
|
|
13362
|
+
}
|
|
13363
|
+
.semi-navigation-sub-wrap .semi-navigation-item:last-of-type {
|
|
13364
|
+
margin-bottom: 0;
|
|
13365
|
+
}
|
|
13366
|
+
|
|
13367
|
+
.semi-navigation-sub-title.semi-navigation-sub-title-disabled .semi-navigation-item-text {
|
|
13368
|
+
color: var(--semi-color-disabled-text);
|
|
13369
|
+
}
|
|
13370
|
+
|
|
13371
|
+
.semi-navigation-item-horizontal.semi-navigation-item {
|
|
13372
|
+
width: fit-content;
|
|
13373
|
+
margin-bottom: 0;
|
|
13374
|
+
margin-right: 8px;
|
|
13375
|
+
}
|
|
13376
|
+
.semi-navigation-item-horizontal.semi-navigation-item.semi-navigation-item-disabled {
|
|
13377
|
+
color: var(--semi-color-disabled-text);
|
|
13378
|
+
}
|
|
13379
|
+
.semi-navigation-item-horizontal .semi-navigation-sub-title .semi-navigation-item-icon:first-child,
|
|
13380
|
+
.semi-navigation-item-horizontal .semi-navigation-sub-title .semi-navigation-item-text {
|
|
13381
|
+
color: var(--semi-color-text-2);
|
|
13382
|
+
background-color: transparent;
|
|
13383
|
+
}
|
|
13384
|
+
.semi-navigation-item-horizontal .semi-navigation-sub-title.semi-navigation-sub-title-selected .semi-navigation-item-icon:first-child,
|
|
13385
|
+
.semi-navigation-item-horizontal .semi-navigation-sub-title.semi-navigation-sub-title-selected .semi-navigation-item-text {
|
|
13386
|
+
color: var(--semi-color-text-0);
|
|
13387
|
+
}
|
|
13388
|
+
.semi-navigation-item-horizontal .semi-navigation-sub-title.semi-navigation-sub-title-disabled .semi-navigation-item-icon:first-child,
|
|
13389
|
+
.semi-navigation-item-horizontal .semi-navigation-sub-title.semi-navigation-sub-title-disabled .semi-navigation-item-text {
|
|
13390
|
+
color: var(--semi-color-disabled-text);
|
|
13391
|
+
}
|
|
13392
|
+
.semi-navigation-item-horizontal.semi-navigation-first-layer {
|
|
13393
|
+
color: var(--semi-color-text-2);
|
|
13394
|
+
}
|
|
13395
|
+
.semi-navigation-item-horizontal.semi-navigation-item-selected {
|
|
13396
|
+
background-color: transparent;
|
|
13397
|
+
}
|
|
13398
|
+
.semi-navigation-item-horizontal.semi-navigation-item-selected .semi-navigation-item-icon:first-child,
|
|
13399
|
+
.semi-navigation-item-horizontal.semi-navigation-item-selected .semi-navigation-item-text {
|
|
13400
|
+
color: var(--semi-color-text-0);
|
|
13401
|
+
}
|
|
13402
|
+
.semi-navigation-item-horizontal .semi-navigation-item-icon:first-child {
|
|
13403
|
+
margin-right: 8px;
|
|
13404
|
+
}
|
|
13405
|
+
.semi-navigation-item-horizontal .semi-navigation-item-icon:last-child {
|
|
13406
|
+
margin-left: 8px;
|
|
13407
|
+
}
|
|
13408
|
+
|
|
13339
13409
|
.semi-rtl .semi-navigation,
|
|
13340
13410
|
.semi-portal-rtl .semi-navigation {
|
|
13341
13411
|
direction: rtl;
|
|
@@ -16175,6 +16245,9 @@ img[src=""], img:not([src]) {
|
|
|
16175
16245
|
.semi-steps .semi-col {
|
|
16176
16246
|
flex: 1;
|
|
16177
16247
|
}
|
|
16248
|
+
.semi-steps .semi-row-flex {
|
|
16249
|
+
column-gap: 16px;
|
|
16250
|
+
}
|
|
16178
16251
|
.semi-steps-vertical .semi-row-flex {
|
|
16179
16252
|
flex-direction: column;
|
|
16180
16253
|
}
|
|
@@ -16184,13 +16257,13 @@ img[src=""], img:not([src]) {
|
|
|
16184
16257
|
height: 72px;
|
|
16185
16258
|
position: relative;
|
|
16186
16259
|
overflow: hidden;
|
|
16187
|
-
margin-right: 16px;
|
|
16188
16260
|
border: 1px solid transparent;
|
|
16189
16261
|
border-radius: var(--semi-border-radius-medium);
|
|
16190
16262
|
padding: 12px 16px;
|
|
16191
16263
|
transition: color var(--semi-transition_duration-none) var(--semi-transition_function-easeIn) var(--semi-transition_delay-none);
|
|
16192
16264
|
transform: scale(var(--semi-transform_scale-small));
|
|
16193
16265
|
transition: background-color var(--semi-transition_duration-none) var(--semi-transition_function-easeIn) var(--semi-transition_delay-none);
|
|
16266
|
+
column-gap: 16px;
|
|
16194
16267
|
}
|
|
16195
16268
|
.semi-steps .semi-steps-item .semi-steps-item-title {
|
|
16196
16269
|
position: relative;
|
|
@@ -16310,7 +16383,142 @@ img[src=""], img:not([src]) {
|
|
|
16310
16383
|
background: var(--semi-color-primary-light-default);
|
|
16311
16384
|
}
|
|
16312
16385
|
.semi-steps .semi-steps-item-content {
|
|
16313
|
-
|
|
16386
|
+
flex: 1;
|
|
16387
|
+
overflow: hidden;
|
|
16388
|
+
}
|
|
16389
|
+
|
|
16390
|
+
.semi-steps-item-fill.semi-steps-item {
|
|
16391
|
+
box-sizing: border-box;
|
|
16392
|
+
display: flex;
|
|
16393
|
+
height: 72px;
|
|
16394
|
+
position: relative;
|
|
16395
|
+
overflow: hidden;
|
|
16396
|
+
border: 1px solid transparent;
|
|
16397
|
+
border-radius: var(--semi-border-radius-medium);
|
|
16398
|
+
padding: 12px 16px;
|
|
16399
|
+
transition: color var(--semi-transition_duration-none) var(--semi-transition_function-easeIn) var(--semi-transition_delay-none);
|
|
16400
|
+
transform: scale(var(--semi-transform_scale-small));
|
|
16401
|
+
transition: background-color var(--semi-transition_duration-none) var(--semi-transition_function-easeIn) var(--semi-transition_delay-none);
|
|
16402
|
+
column-gap: 16px;
|
|
16403
|
+
}
|
|
16404
|
+
.semi-steps-item-fill.semi-steps-item .semi-steps-item-title {
|
|
16405
|
+
position: relative;
|
|
16406
|
+
font-size: 18px;
|
|
16407
|
+
line-height: 24px;
|
|
16408
|
+
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
16409
|
+
font-weight: 600;
|
|
16410
|
+
width: 100%;
|
|
16411
|
+
overflow: hidden;
|
|
16412
|
+
text-overflow: ellipsis;
|
|
16413
|
+
white-space: nowrap;
|
|
16414
|
+
color: var(--semi-color-text-0);
|
|
16415
|
+
transition: color var(--semi-transition_duration-none) var(--semi-transition_function-easeIn) var(--semi-transition_delay-none);
|
|
16416
|
+
}
|
|
16417
|
+
.semi-steps-item-fill.semi-steps-item .semi-steps-item-description {
|
|
16418
|
+
font-size: 14px;
|
|
16419
|
+
line-height: 20px;
|
|
16420
|
+
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
16421
|
+
color: var(--semi-color-text-2);
|
|
16422
|
+
width: 100%;
|
|
16423
|
+
overflow: hidden;
|
|
16424
|
+
text-overflow: ellipsis;
|
|
16425
|
+
white-space: nowrap;
|
|
16426
|
+
}
|
|
16427
|
+
.semi-steps-item-fill.semi-steps-item-process {
|
|
16428
|
+
background-color: var(--semi-color-primary-light-default);
|
|
16429
|
+
}
|
|
16430
|
+
.semi-steps-item-fill.semi-steps-item-process .semi-steps-item-left:not(.semi-steps-item-icon) {
|
|
16431
|
+
background: var(--semi-color-primary);
|
|
16432
|
+
}
|
|
16433
|
+
.semi-steps-item-fill.semi-steps-item-process .semi-steps-item-title,
|
|
16434
|
+
.semi-steps-item-fill.semi-steps-item-process .semi-steps-item-icon {
|
|
16435
|
+
color: var(--semi-color-primary);
|
|
16436
|
+
}
|
|
16437
|
+
.semi-steps-item-fill.semi-steps-item-wait .semi-steps-item-left:not(.semi-steps-item-icon) {
|
|
16438
|
+
background: var(--semi-color-text-2);
|
|
16439
|
+
}
|
|
16440
|
+
.semi-steps-item-fill.semi-steps-item-wait .semi-steps-item-icon {
|
|
16441
|
+
color: var(--semi-color-text-2);
|
|
16442
|
+
}
|
|
16443
|
+
.semi-steps-item-fill.semi-steps-item-finish .semi-icon,
|
|
16444
|
+
.semi-steps-item-fill.semi-steps-item-finish .semi-steps-item-title {
|
|
16445
|
+
color: var(--semi-color-success);
|
|
16446
|
+
}
|
|
16447
|
+
.semi-steps-item-fill.semi-steps-item-finish:hover {
|
|
16448
|
+
background-color: var(--semi-color-fill-0);
|
|
16449
|
+
}
|
|
16450
|
+
.semi-steps-item-fill.semi-steps-item-finish:hover .semi-icon,
|
|
16451
|
+
.semi-steps-item-fill.semi-steps-item-finish:hover .semi-steps-item-title {
|
|
16452
|
+
color: var(--semi-color-success-hover);
|
|
16453
|
+
}
|
|
16454
|
+
.semi-steps-item-fill.semi-steps-item-finish:active {
|
|
16455
|
+
background-color: var(--semi-color-fill-1);
|
|
16456
|
+
}
|
|
16457
|
+
.semi-steps-item-fill.semi-steps-item-finish:active .semi-icon,
|
|
16458
|
+
.semi-steps-item-fill.semi-steps-item-finish:active .semi-steps-item-title {
|
|
16459
|
+
color: var(--semi-color-success-active);
|
|
16460
|
+
}
|
|
16461
|
+
.semi-steps-item-fill.semi-steps-item-error .semi-icon,
|
|
16462
|
+
.semi-steps-item-fill.semi-steps-item-error .semi-steps-item-title {
|
|
16463
|
+
color: var(--semi-color-danger);
|
|
16464
|
+
}
|
|
16465
|
+
.semi-steps-item-fill.semi-steps-item-error:hover {
|
|
16466
|
+
background: var(--semi-color-fill-0);
|
|
16467
|
+
}
|
|
16468
|
+
.semi-steps-item-fill.semi-steps-item-error:hover .semi-icon,
|
|
16469
|
+
.semi-steps-item-fill.semi-steps-item-error:hover .semi-steps-item-title {
|
|
16470
|
+
color: var(--semi-color-danger-hover);
|
|
16471
|
+
}
|
|
16472
|
+
.semi-steps-item-fill.semi-steps-item-error:active {
|
|
16473
|
+
background-color: var(--semi-color-fill-1);
|
|
16474
|
+
}
|
|
16475
|
+
.semi-steps-item-fill.semi-steps-item-error:active .semi-icon,
|
|
16476
|
+
.semi-steps-item-fill.semi-steps-item-error:active .semi-steps-item-title {
|
|
16477
|
+
color: var(--semi-color-danger-active);
|
|
16478
|
+
}
|
|
16479
|
+
.semi-steps-item-fill.semi-steps-item-warning .semi-steps-item-title,
|
|
16480
|
+
.semi-steps-item-fill.semi-steps-item-warning .semi-icon {
|
|
16481
|
+
color: var(--semi-color-warning);
|
|
16482
|
+
}
|
|
16483
|
+
.semi-steps-item-fill.semi-steps-item-warning:hover {
|
|
16484
|
+
background: var(--semi-color-fill-0);
|
|
16485
|
+
}
|
|
16486
|
+
.semi-steps-item-fill.semi-steps-item-warning:hover .semi-steps-item-title,
|
|
16487
|
+
.semi-steps-item-fill.semi-steps-item-warning:hover .semi-icon {
|
|
16488
|
+
color: var(--semi-color-warning-hover);
|
|
16489
|
+
}
|
|
16490
|
+
.semi-steps-item-fill.semi-steps-item-warning:active {
|
|
16491
|
+
background-color: var(--semi-color-fill-1);
|
|
16492
|
+
}
|
|
16493
|
+
.semi-steps-item-fill.semi-steps-item-warning:active .semi-steps-item-title,
|
|
16494
|
+
.semi-steps-item-fill.semi-steps-item-warning:active .semi-icon {
|
|
16495
|
+
color: var(--semi-color-warning-active);
|
|
16496
|
+
}
|
|
16497
|
+
.semi-steps-item-fill.semi-steps-item-clickable {
|
|
16498
|
+
cursor: pointer;
|
|
16499
|
+
}
|
|
16500
|
+
.semi-steps-item-fill .semi-steps-item-left {
|
|
16501
|
+
width: 24px;
|
|
16502
|
+
height: 24px;
|
|
16503
|
+
line-height: 32px;
|
|
16504
|
+
text-align: center;
|
|
16505
|
+
border-radius: 32px;
|
|
16506
|
+
display: flex;
|
|
16507
|
+
align-items: center;
|
|
16508
|
+
justify-content: center;
|
|
16509
|
+
font-size: 20px;
|
|
16510
|
+
line-height: 28px;
|
|
16511
|
+
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
16512
|
+
font-weight: 600;
|
|
16513
|
+
flex-grow: 0;
|
|
16514
|
+
}
|
|
16515
|
+
.semi-steps-item-fill .semi-steps-item-left.semi-steps-item-plain {
|
|
16516
|
+
color: rgba(var(--semi-white), 1);
|
|
16517
|
+
}
|
|
16518
|
+
.semi-steps-item-fill .semi-steps-item-left-process {
|
|
16519
|
+
background: var(--semi-color-primary-light-default);
|
|
16520
|
+
}
|
|
16521
|
+
.semi-steps-item-fill .semi-steps-item-content {
|
|
16314
16522
|
flex: 1;
|
|
16315
16523
|
overflow: hidden;
|
|
16316
16524
|
}
|
|
@@ -16318,6 +16526,7 @@ img[src=""], img:not([src]) {
|
|
|
16318
16526
|
.semi-steps-basic.semi-steps-horizontal {
|
|
16319
16527
|
display: flex;
|
|
16320
16528
|
flex-flow: row nowrap;
|
|
16529
|
+
column-gap: 16px;
|
|
16321
16530
|
}
|
|
16322
16531
|
.semi-steps-basic.semi-steps-horizontal.semi-steps-hasline .semi-steps-item-title::after {
|
|
16323
16532
|
content: "";
|
|
@@ -16329,12 +16538,6 @@ img[src=""], img:not([src]) {
|
|
|
16329
16538
|
height: 1px;
|
|
16330
16539
|
background: var(--semi-color-fill-2);
|
|
16331
16540
|
}
|
|
16332
|
-
.semi-steps-basic.semi-steps-horizontal .semi-steps-item {
|
|
16333
|
-
padding-left: 16px;
|
|
16334
|
-
}
|
|
16335
|
-
.semi-steps-basic.semi-steps-horizontal .semi-steps-item:first-child {
|
|
16336
|
-
padding-left: 0;
|
|
16337
|
-
}
|
|
16338
16541
|
.semi-steps-basic.semi-steps-horizontal .semi-steps-item:last-child {
|
|
16339
16542
|
flex: none;
|
|
16340
16543
|
}
|
|
@@ -16374,9 +16577,7 @@ img[src=""], img:not([src]) {
|
|
|
16374
16577
|
.semi-steps-basic.semi-steps-vertical {
|
|
16375
16578
|
display: flex;
|
|
16376
16579
|
flex-flow: column nowrap;
|
|
16377
|
-
|
|
16378
|
-
.semi-steps-basic.semi-steps-vertical.semi-steps-small .semi-steps-item .semi-steps-item-content {
|
|
16379
|
-
min-height: 40px;
|
|
16580
|
+
row-gap: 9px;
|
|
16380
16581
|
}
|
|
16381
16582
|
.semi-steps-basic.semi-steps-vertical.semi-steps-hasline .semi-steps-item-icon::after {
|
|
16382
16583
|
content: "";
|
|
@@ -16388,11 +16589,8 @@ img[src=""], img:not([src]) {
|
|
|
16388
16589
|
height: 9999px;
|
|
16389
16590
|
background: var(--semi-color-fill-2);
|
|
16390
16591
|
}
|
|
16391
|
-
.semi-steps-basic.semi-steps-vertical .semi-steps-item {
|
|
16392
|
-
|
|
16393
|
-
}
|
|
16394
|
-
.semi-steps-basic.semi-steps-vertical .semi-steps-item:first-child {
|
|
16395
|
-
padding-top: 0;
|
|
16592
|
+
.semi-steps-basic.semi-steps-vertical.semi-steps-small .semi-steps-item .semi-steps-item-content {
|
|
16593
|
+
min-height: 40px;
|
|
16396
16594
|
}
|
|
16397
16595
|
.semi-steps-basic.semi-steps-vertical .semi-steps-item:last-child .semi-steps-item-icon::after {
|
|
16398
16596
|
display: none;
|
|
@@ -16539,6 +16737,197 @@ img[src=""], img:not([src]) {
|
|
|
16539
16737
|
height: 20px;
|
|
16540
16738
|
}
|
|
16541
16739
|
|
|
16740
|
+
.semi-steps-item-basic.semi-steps-item-horizontal {
|
|
16741
|
+
display: flex;
|
|
16742
|
+
flex-flow: row nowrap;
|
|
16743
|
+
column-gap: 16px;
|
|
16744
|
+
}
|
|
16745
|
+
.semi-steps-item-basic.semi-steps-item-horizontal.semi-steps-item:last-child {
|
|
16746
|
+
flex: none;
|
|
16747
|
+
}
|
|
16748
|
+
.semi-steps-item-basic.semi-steps-item-horizontal.semi-steps-item:last-child .semi-steps-item-title {
|
|
16749
|
+
max-width: 100%;
|
|
16750
|
+
padding-right: 0;
|
|
16751
|
+
}
|
|
16752
|
+
.semi-steps-item-basic.semi-steps-item-horizontal.semi-steps-item:last-child .semi-steps-item-title::after {
|
|
16753
|
+
display: none;
|
|
16754
|
+
}
|
|
16755
|
+
.semi-steps-item-basic.semi-steps-item-horizontal.semi-steps-item-done .semi-steps-item-container .semi-steps-item-title::after {
|
|
16756
|
+
background: var(--semi-color-primary);
|
|
16757
|
+
}
|
|
16758
|
+
.semi-steps-item-basic.semi-steps-item-horizontal.semi-steps-item .semi-steps-item-content {
|
|
16759
|
+
flex: 1;
|
|
16760
|
+
}
|
|
16761
|
+
.semi-steps-item-basic.semi-steps-item-horizontal.semi-steps-item .semi-steps-item-description {
|
|
16762
|
+
font-size: 12px;
|
|
16763
|
+
line-height: 16px;
|
|
16764
|
+
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
16765
|
+
color: var(--semi-color-text-2);
|
|
16766
|
+
width: 100%;
|
|
16767
|
+
max-width: 268px;
|
|
16768
|
+
overflow: hidden;
|
|
16769
|
+
text-overflow: ellipsis;
|
|
16770
|
+
white-space: nowrap;
|
|
16771
|
+
}
|
|
16772
|
+
.semi-steps-item-basic.semi-steps-item-horizontal.semi-steps-item .semi-steps-item-title {
|
|
16773
|
+
max-width: 80%;
|
|
16774
|
+
}
|
|
16775
|
+
.semi-steps-item-basic.semi-steps-item-horizontal.semi-steps-item .semi-steps-item-title .semi-steps-item-title-text {
|
|
16776
|
+
overflow: hidden;
|
|
16777
|
+
text-overflow: ellipsis;
|
|
16778
|
+
white-space: nowrap;
|
|
16779
|
+
transition: color var(--semi-transition_duration-none) var(--semi-transition_function-easeIn) var(--semi-transition_delay-none);
|
|
16780
|
+
}
|
|
16781
|
+
.semi-steps-item-basic.semi-steps-item-vertical {
|
|
16782
|
+
display: flex;
|
|
16783
|
+
flex-flow: column nowrap;
|
|
16784
|
+
row-gap: 9px;
|
|
16785
|
+
}
|
|
16786
|
+
.semi-steps-item-basic.semi-steps-item-vertical.semi-steps-item:last-child .semi-steps-item-icon::after {
|
|
16787
|
+
display: none;
|
|
16788
|
+
}
|
|
16789
|
+
.semi-steps-item-basic.semi-steps-item-vertical.semi-steps-item-done .semi-steps-item-icon::after {
|
|
16790
|
+
background: var(--semi-color-primary);
|
|
16791
|
+
}
|
|
16792
|
+
.semi-steps-item-basic.semi-steps-item-vertical.semi-steps-item .semi-steps-item-content {
|
|
16793
|
+
min-height: 42px;
|
|
16794
|
+
padding-bottom: 22px;
|
|
16795
|
+
}
|
|
16796
|
+
.semi-steps-item-basic.semi-steps-item-vertical.semi-steps-item .semi-steps-item-icon {
|
|
16797
|
+
display: inline-flex;
|
|
16798
|
+
position: relative;
|
|
16799
|
+
padding-bottom: 9px;
|
|
16800
|
+
}
|
|
16801
|
+
.semi-steps-item-basic.semi-steps-item-vertical.semi-steps-item .semi-steps-item-description {
|
|
16802
|
+
font-size: 12px;
|
|
16803
|
+
line-height: 16px;
|
|
16804
|
+
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
16805
|
+
color: var(--semi-color-text-2);
|
|
16806
|
+
width: 100%;
|
|
16807
|
+
}
|
|
16808
|
+
.semi-steps-item-basic.semi-steps-item-vertical.semi-steps-item .semi-steps-item-title {
|
|
16809
|
+
max-width: 100%;
|
|
16810
|
+
}
|
|
16811
|
+
.semi-steps-item-basic.semi-steps-item-vertical.semi-steps-item .semi-steps-item-title .semi-steps-item-title-text {
|
|
16812
|
+
overflow: hidden;
|
|
16813
|
+
text-overflow: ellipsis;
|
|
16814
|
+
white-space: nowrap;
|
|
16815
|
+
}
|
|
16816
|
+
.semi-steps-item-basic.semi-steps-item {
|
|
16817
|
+
box-sizing: border-box;
|
|
16818
|
+
position: relative;
|
|
16819
|
+
display: inline-block;
|
|
16820
|
+
vertical-align: top;
|
|
16821
|
+
overflow: hidden;
|
|
16822
|
+
flex: 1;
|
|
16823
|
+
cursor: pointer;
|
|
16824
|
+
transition: color var(--semi-transition_duration-none) var(--semi-transition_function-easeIn) var(--semi-transition_delay-none), background-color var(--semi-transition_duration-none) var(--semi-transition_function-easeIn) var(--semi-transition_delay-none);
|
|
16825
|
+
transform: scale(var(--semi-transform_scale-small));
|
|
16826
|
+
}
|
|
16827
|
+
.semi-steps-item-basic.semi-steps-item:hover .semi-steps-item-title {
|
|
16828
|
+
color: var(--semi-color-focus-border);
|
|
16829
|
+
}
|
|
16830
|
+
.semi-steps-item-basic.semi-steps-item:hover .semi-steps-item-description {
|
|
16831
|
+
color: var(--semi-color-focus-border);
|
|
16832
|
+
}
|
|
16833
|
+
.semi-steps-item-basic.semi-steps-item .semi-steps-item-container {
|
|
16834
|
+
display: flex;
|
|
16835
|
+
align-items: flex-start;
|
|
16836
|
+
}
|
|
16837
|
+
.semi-steps-item-basic.semi-steps-item .semi-steps-item-left {
|
|
16838
|
+
display: flex;
|
|
16839
|
+
justify-content: center;
|
|
16840
|
+
align-items: center;
|
|
16841
|
+
margin-right: 8px;
|
|
16842
|
+
}
|
|
16843
|
+
.semi-steps-item-basic.semi-steps-item .semi-steps-item-left .semi-steps-item-icon {
|
|
16844
|
+
display: flex;
|
|
16845
|
+
height: 24px;
|
|
16846
|
+
align-items: center;
|
|
16847
|
+
}
|
|
16848
|
+
.semi-steps-item-basic.semi-steps-item .semi-steps-item-left .semi-steps-item-number-icon {
|
|
16849
|
+
display: inline-flex;
|
|
16850
|
+
align-items: center;
|
|
16851
|
+
justify-content: center;
|
|
16852
|
+
width: 24px;
|
|
16853
|
+
height: 24px;
|
|
16854
|
+
font-size: 16px;
|
|
16855
|
+
line-height: 22px;
|
|
16856
|
+
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
16857
|
+
font-weight: 600;
|
|
16858
|
+
background: var(--semi-color-primary);
|
|
16859
|
+
border-radius: var(--semi-border-radius-circle);
|
|
16860
|
+
color: var(--semi-color-white);
|
|
16861
|
+
transition: color var(--semi-transition_duration-none) var(--semi-transition_function-easeIn) var(--semi-transition_delay-none);
|
|
16862
|
+
}
|
|
16863
|
+
.semi-steps-item-basic.semi-steps-item .semi-steps-item-title {
|
|
16864
|
+
position: relative;
|
|
16865
|
+
display: inline-block;
|
|
16866
|
+
font-size: 16px;
|
|
16867
|
+
line-height: 22px;
|
|
16868
|
+
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
16869
|
+
line-height: 24px;
|
|
16870
|
+
font-weight: 600;
|
|
16871
|
+
color: var(--semi-color-text-0);
|
|
16872
|
+
vertical-align: top;
|
|
16873
|
+
padding-right: 16px;
|
|
16874
|
+
padding-bottom: 4px;
|
|
16875
|
+
transition: color var(--semi-transition_duration-none) var(--semi-transition_function-easeIn) var(--semi-transition_delay-none);
|
|
16876
|
+
}
|
|
16877
|
+
.semi-steps-item-basic.semi-steps-item-finish .semi-steps-item-left .semi-steps-item-icon {
|
|
16878
|
+
color: var(--semi-color-primary);
|
|
16879
|
+
}
|
|
16880
|
+
.semi-steps-item-basic.semi-steps-item-finish .semi-steps-item-left .semi-steps-item-icon .semi-steps-item-number-icon {
|
|
16881
|
+
color: var(--semi-color-white);
|
|
16882
|
+
}
|
|
16883
|
+
.semi-steps-item-basic.semi-steps-item-wait .semi-steps-item-title {
|
|
16884
|
+
color: var(--semi-color-text-2);
|
|
16885
|
+
}
|
|
16886
|
+
.semi-steps-item-basic.semi-steps-item-wait .semi-steps-item-left .semi-steps-item-icon {
|
|
16887
|
+
color: var(--semi-color-text-2);
|
|
16888
|
+
}
|
|
16889
|
+
.semi-steps-item-basic.semi-steps-item-wait .semi-steps-item-left .semi-steps-item-icon .semi-steps-item-number-icon {
|
|
16890
|
+
background: var(--semi-color-fill-0);
|
|
16891
|
+
color: var(--semi-color-text-2);
|
|
16892
|
+
}
|
|
16893
|
+
.semi-steps-item-basic.semi-steps-item-wait:hover .semi-steps-item-left .semi-steps-item-icon .semi-steps-item-number-icon {
|
|
16894
|
+
background: var(--semi-color-secondary-light-default);
|
|
16895
|
+
color: var(--semi-color-focus-border);
|
|
16896
|
+
}
|
|
16897
|
+
.semi-steps-item-basic.semi-steps-item-process .semi-steps-item-left .semi-steps-item-icon {
|
|
16898
|
+
color: var(--semi-color-primary);
|
|
16899
|
+
}
|
|
16900
|
+
.semi-steps-item-basic.semi-steps-item-process .semi-steps-item-left .semi-steps-item-icon .semi-steps-item-number-icon {
|
|
16901
|
+
color: var(--semi-color-white);
|
|
16902
|
+
}
|
|
16903
|
+
.semi-steps-item-basic.semi-steps-item-error .semi-steps-item-left .semi-steps-item-icon {
|
|
16904
|
+
color: var(--semi-color-danger);
|
|
16905
|
+
}
|
|
16906
|
+
.semi-steps-item-basic.semi-steps-item-error .semi-steps-item-left .semi-steps-item-icon .semi-steps-item-number-icon {
|
|
16907
|
+
color: var(--semi-color-primary);
|
|
16908
|
+
}
|
|
16909
|
+
.semi-steps-item-basic.semi-steps-item-warning .semi-steps-item-left .semi-steps-item-icon {
|
|
16910
|
+
color: var(--semi-color-warning);
|
|
16911
|
+
}
|
|
16912
|
+
.semi-steps-item-basic.semi-steps-item-warning .semi-steps-item-left .semi-steps-item-icon .semi-steps-item-number-icon {
|
|
16913
|
+
color: var(--semi-color-white);
|
|
16914
|
+
}
|
|
16915
|
+
.semi-steps-item-basic.semi-steps-item-small.semi-steps-item .semi-steps-item-title {
|
|
16916
|
+
font-size: 14px;
|
|
16917
|
+
line-height: 20px;
|
|
16918
|
+
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
16919
|
+
}
|
|
16920
|
+
.semi-steps-item-basic.semi-steps-item-small.semi-steps-item .semi-steps-item-left .semi-steps-item-icon {
|
|
16921
|
+
height: 20px;
|
|
16922
|
+
}
|
|
16923
|
+
.semi-steps-item-basic.semi-steps-item-small.semi-steps-item .semi-steps-item-left .semi-steps-item-icon .semi-steps-item-number-icon {
|
|
16924
|
+
font-size: 12px;
|
|
16925
|
+
line-height: 16px;
|
|
16926
|
+
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
16927
|
+
width: 20px;
|
|
16928
|
+
height: 20px;
|
|
16929
|
+
}
|
|
16930
|
+
|
|
16542
16931
|
.semi-steps-nav {
|
|
16543
16932
|
display: inline-flex;
|
|
16544
16933
|
flex-flow: row nowrap;
|
|
@@ -16588,6 +16977,51 @@ img[src=""], img:not([src]) {
|
|
|
16588
16977
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
16589
16978
|
}
|
|
16590
16979
|
|
|
16980
|
+
.semi-steps-item-nav.semi-steps-item {
|
|
16981
|
+
box-sizing: border-box;
|
|
16982
|
+
}
|
|
16983
|
+
.semi-steps-item-nav.semi-steps-item:last-child {
|
|
16984
|
+
flex: none;
|
|
16985
|
+
}
|
|
16986
|
+
.semi-steps-item-nav.semi-steps-item:last-child .semi-steps-item-content {
|
|
16987
|
+
width: auto;
|
|
16988
|
+
}
|
|
16989
|
+
.semi-steps-item-nav.semi-steps-item .semi-steps-item-container {
|
|
16990
|
+
display: flex;
|
|
16991
|
+
align-items: center;
|
|
16992
|
+
color: var(--semi-color-text-2);
|
|
16993
|
+
}
|
|
16994
|
+
.semi-steps-item-nav.semi-steps-item .semi-steps-item-container .semi-steps-item-icon {
|
|
16995
|
+
display: inline-flex;
|
|
16996
|
+
flex: 1;
|
|
16997
|
+
justify-content: center;
|
|
16998
|
+
color: var(--semi-grey-3);
|
|
16999
|
+
min-width: 60px;
|
|
17000
|
+
}
|
|
17001
|
+
.semi-steps-item-nav.semi-steps-item .semi-steps-item-content {
|
|
17002
|
+
flex: 1;
|
|
17003
|
+
display: inline-block;
|
|
17004
|
+
}
|
|
17005
|
+
.semi-steps-item-nav.semi-steps-item .semi-steps-item-title {
|
|
17006
|
+
font-size: 16px;
|
|
17007
|
+
line-height: 22px;
|
|
17008
|
+
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
17009
|
+
max-width: 17em;
|
|
17010
|
+
overflow: hidden;
|
|
17011
|
+
text-overflow: ellipsis;
|
|
17012
|
+
white-space: nowrap;
|
|
17013
|
+
font-weight: 400;
|
|
17014
|
+
}
|
|
17015
|
+
.semi-steps-item-nav.semi-steps-item-active .semi-steps-item-title {
|
|
17016
|
+
color: var(--semi-color-text-0);
|
|
17017
|
+
font-weight: 600;
|
|
17018
|
+
}
|
|
17019
|
+
.semi-steps-item-nav.semi-steps-item-small .semi-steps-item-title {
|
|
17020
|
+
font-size: 14px;
|
|
17021
|
+
line-height: 20px;
|
|
17022
|
+
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
17023
|
+
}
|
|
17024
|
+
|
|
16591
17025
|
.semi-rtl .semi-steps,
|
|
16592
17026
|
.semi-portal-rtl .semi-steps {
|
|
16593
17027
|
direction: rtl;
|
|
@@ -19146,6 +19580,42 @@ img[src=""], img:not([src]) {
|
|
|
19146
19580
|
width: calc(100% - 28px);
|
|
19147
19581
|
}
|
|
19148
19582
|
|
|
19583
|
+
.semi-timeline-item-alternate .semi-timeline-item-tail, .semi-timeline-item-alternate .semi-timeline-item-head, .semi-timeline-item-alternate .semi-timeline-item-head-custom, .semi-timeline-item-mode-right .semi-timeline-item-tail, .semi-timeline-item-mode-right .semi-timeline-item-head, .semi-timeline-item-mode-right .semi-timeline-item-head-custom, .semi-timeline-item-center .semi-timeline-item-tail, .semi-timeline-item-center .semi-timeline-item-head, .semi-timeline-item-center .semi-timeline-item-head-custom {
|
|
19584
|
+
left: 50%;
|
|
19585
|
+
}
|
|
19586
|
+
.semi-timeline-item-alternate .semi-timeline-item-head.semi-timeline-item-head-custom, .semi-timeline-item-mode-right .semi-timeline-item-head.semi-timeline-item-head-custom, .semi-timeline-item-center .semi-timeline-item-head.semi-timeline-item-head-custom {
|
|
19587
|
+
margin-left: 0;
|
|
19588
|
+
}
|
|
19589
|
+
.semi-timeline-item-alternate .semi-timeline-item-head, .semi-timeline-item-mode-right .semi-timeline-item-head, .semi-timeline-item-center .semi-timeline-item-head {
|
|
19590
|
+
margin-left: -4px;
|
|
19591
|
+
}
|
|
19592
|
+
.semi-timeline-item-alternate.semi-timeline-item-left .semi-timeline-item-content, .semi-timeline-item-mode-right.semi-timeline-item-left .semi-timeline-item-content, .semi-timeline-item-center.semi-timeline-item-left .semi-timeline-item-content {
|
|
19593
|
+
left: calc(50% - 4px);
|
|
19594
|
+
width: calc(50% - 14px);
|
|
19595
|
+
text-align: left;
|
|
19596
|
+
}
|
|
19597
|
+
.semi-timeline-item-alternate.semi-timeline-item-right .semi-timeline-item-content, .semi-timeline-item-mode-right.semi-timeline-item-right .semi-timeline-item-content, .semi-timeline-item-center.semi-timeline-item-right .semi-timeline-item-content {
|
|
19598
|
+
width: calc(50% - 20px);
|
|
19599
|
+
margin: 0;
|
|
19600
|
+
text-align: right;
|
|
19601
|
+
}
|
|
19602
|
+
.semi-timeline-item-alternate.semi-timeline-item.semi-timeline-item-not-last-child > .semi-timeline-item-tail, .semi-timeline-item-mode-right.semi-timeline-item.semi-timeline-item-not-last-child > .semi-timeline-item-tail, .semi-timeline-item-center.semi-timeline-item.semi-timeline-item-not-last-child > .semi-timeline-item-tail, .semi-timeline-item-left.semi-timeline-item.semi-timeline-item-not-last-child > .semi-timeline-item-tail {
|
|
19603
|
+
border-left: 1px solid var(--semi-color-text-3);
|
|
19604
|
+
}
|
|
19605
|
+
.semi-timeline-item-center .semi-timeline-item-content-time {
|
|
19606
|
+
position: absolute;
|
|
19607
|
+
top: -2px;
|
|
19608
|
+
margin-left: calc(-40px - 100%);
|
|
19609
|
+
width: 100%;
|
|
19610
|
+
text-align: right;
|
|
19611
|
+
}
|
|
19612
|
+
.semi-timeline-item-mode-right.semi-timeline-item-right .semi-timeline-item-tail, .semi-timeline-item-mode-right.semi-timeline-item-right .semi-timeline-item-head, .semi-timeline-item-mode-right.semi-timeline-item-right .semi-timeline-item-head-custom {
|
|
19613
|
+
left: calc(100% - 9px);
|
|
19614
|
+
}
|
|
19615
|
+
.semi-timeline-item-mode-right.semi-timeline-item-right .semi-timeline-item-content {
|
|
19616
|
+
width: calc(100% - 28px);
|
|
19617
|
+
}
|
|
19618
|
+
|
|
19149
19619
|
.semi-rtl .semi-timeline,
|
|
19150
19620
|
.semi-portal-rtl .semi-timeline {
|
|
19151
19621
|
direction: rtl;
|