@semi-bot/semi-theme-laiye 1.0.3 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +1 -1
- package/raw.json +21 -8
- package/scss/local.scss +14 -7
- package/semi.css +563 -28
- package/semi.min.css +1 -1
package/semi.css
CHANGED
|
@@ -2976,7 +2976,7 @@ body, :host {
|
|
|
2976
2976
|
display: inline-block;
|
|
2977
2977
|
}
|
|
2978
2978
|
.semi-badge-primary.semi-badge-solid {
|
|
2979
|
-
background-color: var(--semi-color-
|
|
2979
|
+
background-color: var(--semi-color-danger);
|
|
2980
2980
|
}
|
|
2981
2981
|
.semi-badge-primary.semi-badge-light {
|
|
2982
2982
|
background-color: var(--semi-color-primary-light-default);
|
|
@@ -3270,12 +3270,12 @@ body, :host {
|
|
|
3270
3270
|
margin-right: 1px;
|
|
3271
3271
|
}
|
|
3272
3272
|
.semi-button-split .semi-button-first {
|
|
3273
|
-
border-top-left-radius:
|
|
3274
|
-
border-bottom-left-radius:
|
|
3273
|
+
border-top-left-radius: 8px;
|
|
3274
|
+
border-bottom-left-radius: 8px;
|
|
3275
3275
|
}
|
|
3276
3276
|
.semi-button-split .semi-button-last {
|
|
3277
|
-
border-top-right-radius:
|
|
3278
|
-
border-bottom-right-radius:
|
|
3277
|
+
border-top-right-radius: 8px;
|
|
3278
|
+
border-bottom-right-radius: 8px;
|
|
3279
3279
|
margin-right: unset;
|
|
3280
3280
|
}
|
|
3281
3281
|
.semi-button-split:hover .semi-button-borderless:active {
|
|
@@ -3480,9 +3480,9 @@ body, :host {
|
|
|
3480
3480
|
color: var(--semi-color-text-1);
|
|
3481
3481
|
}
|
|
3482
3482
|
.semi-button-secondary {
|
|
3483
|
-
background-color: var(--semi-color-
|
|
3484
|
-
outline-color: var(--semi-color-
|
|
3485
|
-
color: var(--semi-
|
|
3483
|
+
background-color: var(--semi-color-primary);
|
|
3484
|
+
outline-color: var(--semi-color-primary);
|
|
3485
|
+
color: rgba(var(--semi-white), 1);
|
|
3486
3486
|
transition: background-color var(--semi-transition_duration-none) var(--semi-transition_function-easeIn) var(--semi-transition_delay-none), border var(--semi-transition_duration-none) var(--semi-transition_function-easeIn) var(--semi-transition_delay-none);
|
|
3487
3487
|
transform: scale(var(--semi-transform_scale-none));
|
|
3488
3488
|
}
|
|
@@ -3501,13 +3501,13 @@ body, :host {
|
|
|
3501
3501
|
border: 1px solid var(--semi-color-border);
|
|
3502
3502
|
}
|
|
3503
3503
|
.semi-button-secondary:hover {
|
|
3504
|
-
background-color: var(--semi-color-
|
|
3504
|
+
background-color: var(--semi-color-primary-hover);
|
|
3505
3505
|
}
|
|
3506
3506
|
.semi-button-secondary:active {
|
|
3507
|
-
background-color: var(--semi-color-
|
|
3507
|
+
background-color: var(--semi-color-primary-active);
|
|
3508
3508
|
}
|
|
3509
3509
|
.semi-button-secondary.semi-button-light, .semi-button-secondary.semi-button-outline, .semi-button-secondary.semi-button-borderless {
|
|
3510
|
-
color: var(--semi-color-
|
|
3510
|
+
color: var(--semi-color-primary);
|
|
3511
3511
|
}
|
|
3512
3512
|
.semi-button-disabled {
|
|
3513
3513
|
color: var(--semi-color-disabled-text);
|
|
@@ -3621,12 +3621,12 @@ body, :host {
|
|
|
3621
3621
|
padding-right: 12px;
|
|
3622
3622
|
}
|
|
3623
3623
|
.semi-button-group > .semi-button:first-child {
|
|
3624
|
-
border-top-left-radius:
|
|
3625
|
-
border-bottom-left-radius:
|
|
3624
|
+
border-top-left-radius: 8px;
|
|
3625
|
+
border-bottom-left-radius: 8px;
|
|
3626
3626
|
}
|
|
3627
3627
|
.semi-button-group > .semi-button:last-child {
|
|
3628
|
-
border-top-right-radius:
|
|
3629
|
-
border-bottom-right-radius:
|
|
3628
|
+
border-top-right-radius: 8px;
|
|
3629
|
+
border-bottom-right-radius: 8px;
|
|
3630
3630
|
}
|
|
3631
3631
|
.semi-button-group > .semi-button-outline:not(:last-child) {
|
|
3632
3632
|
border-right-color: transparent;
|
|
@@ -3641,7 +3641,7 @@ body, :host {
|
|
|
3641
3641
|
background-color: var(--semi-color-secondary);
|
|
3642
3642
|
}
|
|
3643
3643
|
.semi-button-group-line-secondary {
|
|
3644
|
-
background-color: var(--semi-color-
|
|
3644
|
+
background-color: var(--semi-color-primary);
|
|
3645
3645
|
}
|
|
3646
3646
|
.semi-button-group-line-tertiary {
|
|
3647
3647
|
background-color: var(--semi-color-tertiary);
|
|
@@ -3733,8 +3733,8 @@ body, :host {
|
|
|
3733
3733
|
.semi-portal-rtl .semi-button-group > .semi-button:first-child {
|
|
3734
3734
|
border-top-left-radius: 0;
|
|
3735
3735
|
border-bottom-left-radius: 0;
|
|
3736
|
-
border-top-right-radius:
|
|
3737
|
-
border-bottom-right-radius:
|
|
3736
|
+
border-top-right-radius: 8px;
|
|
3737
|
+
border-bottom-right-radius: 8px;
|
|
3738
3738
|
}
|
|
3739
3739
|
.semi-rtl .semi-button-group > .semi-button:not(:last-child) .semi-button-content,
|
|
3740
3740
|
.semi-portal-rtl .semi-button-group > .semi-button:not(:last-child) .semi-button-content {
|
|
@@ -3745,8 +3745,8 @@ body, :host {
|
|
|
3745
3745
|
.semi-portal-rtl .semi-button-group > .semi-button:last-child {
|
|
3746
3746
|
border-top-right-radius: 0;
|
|
3747
3747
|
border-bottom-right-radius: 0;
|
|
3748
|
-
border-top-left-radius:
|
|
3749
|
-
border-bottom-left-radius:
|
|
3748
|
+
border-top-left-radius: 8px;
|
|
3749
|
+
border-bottom-left-radius: 8px;
|
|
3750
3750
|
}
|
|
3751
3751
|
.semi-rtl .semi-button.semi-button-with-icon-only,
|
|
3752
3752
|
.semi-portal-rtl .semi-button.semi-button-with-icon-only {
|
|
@@ -7213,7 +7213,7 @@ body, :host {
|
|
|
7213
7213
|
display: flex;
|
|
7214
7214
|
align-items: center;
|
|
7215
7215
|
box-sizing: border-box;
|
|
7216
|
-
border-radius:
|
|
7216
|
+
border-radius: 8px;
|
|
7217
7217
|
height: 32px;
|
|
7218
7218
|
color: var(--semi-color-text-2);
|
|
7219
7219
|
background-color: var(--semi-color-fill-0);
|
|
@@ -7238,7 +7238,7 @@ body, :host {
|
|
|
7238
7238
|
height: 100%;
|
|
7239
7239
|
width: 100%;
|
|
7240
7240
|
border: 1px solid transparent;
|
|
7241
|
-
border-radius:
|
|
7241
|
+
border-radius: 8px;
|
|
7242
7242
|
display: flex;
|
|
7243
7243
|
align-items: center;
|
|
7244
7244
|
}
|
|
@@ -7256,7 +7256,7 @@ body, :host {
|
|
|
7256
7256
|
.semi-datepicker-range-input-wrapper-focus {
|
|
7257
7257
|
border-color: transparent;
|
|
7258
7258
|
background-color: var(--semi-color-fill-1);
|
|
7259
|
-
border-radius:
|
|
7259
|
+
border-radius: 8px;
|
|
7260
7260
|
transition: background-color 0.16s ease-in-out;
|
|
7261
7261
|
}
|
|
7262
7262
|
.semi-datepicker-range-input-wrapper-focus ~ .semi-datepicker-range-input-clearbtn {
|
|
@@ -15224,6 +15224,10 @@ img[src=""], img:not([src]) {
|
|
|
15224
15224
|
margin-right: 0;
|
|
15225
15225
|
}
|
|
15226
15226
|
|
|
15227
|
+
.semi-json-viewer {
|
|
15228
|
+
box-sizing: border-box;
|
|
15229
|
+
padding: 12px 0;
|
|
15230
|
+
}
|
|
15227
15231
|
.semi-json-viewer-background {
|
|
15228
15232
|
background-color: var(--semi-color-default);
|
|
15229
15233
|
}
|
|
@@ -19209,6 +19213,537 @@ img[src=""], img:not([src]) {
|
|
|
19209
19213
|
text-align: right;
|
|
19210
19214
|
}
|
|
19211
19215
|
|
|
19216
|
+
.semi-sidebar-main .semi-sidebar-container-content {
|
|
19217
|
+
overflow: hidden;
|
|
19218
|
+
}
|
|
19219
|
+
.semi-sidebar-main-content-wrapper {
|
|
19220
|
+
display: flex;
|
|
19221
|
+
flex-direction: column;
|
|
19222
|
+
height: 100%;
|
|
19223
|
+
}
|
|
19224
|
+
.semi-sidebar-main-content {
|
|
19225
|
+
padding: 12px;
|
|
19226
|
+
height: 100%;
|
|
19227
|
+
box-sizing: border-box;
|
|
19228
|
+
overflow: auto;
|
|
19229
|
+
}
|
|
19230
|
+
.semi-sidebar-container {
|
|
19231
|
+
height: 100%;
|
|
19232
|
+
border-left: 1px solid var(--semi-color-border);
|
|
19233
|
+
box-sizing: border-box;
|
|
19234
|
+
display: flex;
|
|
19235
|
+
flex-direction: column;
|
|
19236
|
+
overflow: hidden;
|
|
19237
|
+
position: relative;
|
|
19238
|
+
}
|
|
19239
|
+
.semi-sidebar-container-header {
|
|
19240
|
+
display: flex;
|
|
19241
|
+
align-items: center;
|
|
19242
|
+
padding: 12px 12px 12px 20px;
|
|
19243
|
+
border-bottom: 1px solid var(--semi-color-border);
|
|
19244
|
+
}
|
|
19245
|
+
.semi-sidebar-container-header-title {
|
|
19246
|
+
flex: 1;
|
|
19247
|
+
font-size: 16px;
|
|
19248
|
+
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
19249
|
+
line-height: 22px;
|
|
19250
|
+
font-weight: 600;
|
|
19251
|
+
}
|
|
19252
|
+
.semi-sidebar-container-header-closeBtn {
|
|
19253
|
+
flex-shrink: 0;
|
|
19254
|
+
}
|
|
19255
|
+
.semi-sidebar-container-content {
|
|
19256
|
+
flex: 1 1;
|
|
19257
|
+
overflow: hidden;
|
|
19258
|
+
}
|
|
19259
|
+
.semi-sidebar-container .semi-toast-wrapper {
|
|
19260
|
+
position: absolute;
|
|
19261
|
+
}
|
|
19262
|
+
@keyframes semi-sidebar-slideShow_right {
|
|
19263
|
+
from {
|
|
19264
|
+
transform: translateX(100%);
|
|
19265
|
+
}
|
|
19266
|
+
to {
|
|
19267
|
+
transform: translateX(0);
|
|
19268
|
+
}
|
|
19269
|
+
}
|
|
19270
|
+
@keyframes semi-sidebar-slideHide_right {
|
|
19271
|
+
from {
|
|
19272
|
+
transform: translateX(0);
|
|
19273
|
+
}
|
|
19274
|
+
to {
|
|
19275
|
+
transform: translateX(100%);
|
|
19276
|
+
}
|
|
19277
|
+
}
|
|
19278
|
+
.semi-sidebar-animation-content_show {
|
|
19279
|
+
animation: semi-sidebar-slideShow_right 180ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0ms;
|
|
19280
|
+
animation-fill-mode: forwards;
|
|
19281
|
+
}
|
|
19282
|
+
.semi-sidebar-animation-content_hide {
|
|
19283
|
+
animation: semi-sidebar-slideHide_right 180ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0ms;
|
|
19284
|
+
animation-fill-mode: forwards;
|
|
19285
|
+
}
|
|
19286
|
+
.semi-sidebar-mcp-configure-content {
|
|
19287
|
+
padding: 20px 16px;
|
|
19288
|
+
display: flex;
|
|
19289
|
+
flex-direction: column;
|
|
19290
|
+
height: 100%;
|
|
19291
|
+
box-sizing: border-box;
|
|
19292
|
+
}
|
|
19293
|
+
.semi-sidebar-mcp-configure-content-header {
|
|
19294
|
+
display: flex;
|
|
19295
|
+
align-items: center;
|
|
19296
|
+
justify-content: space-between;
|
|
19297
|
+
}
|
|
19298
|
+
.semi-sidebar-mcp-configure-content-header-count {
|
|
19299
|
+
font-size: 12px;
|
|
19300
|
+
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
19301
|
+
line-height: 16px;
|
|
19302
|
+
vertical-align: middle;
|
|
19303
|
+
color: var(--semi-color-text-2);
|
|
19304
|
+
}
|
|
19305
|
+
.semi-sidebar-mcp-configure-content-search {
|
|
19306
|
+
margin: 16px 0;
|
|
19307
|
+
}
|
|
19308
|
+
.semi-sidebar-mcp-configure-content-search-container {
|
|
19309
|
+
display: flex;
|
|
19310
|
+
column-gap: 8px;
|
|
19311
|
+
}
|
|
19312
|
+
.semi-sidebar-mcp-configure-content-item-container {
|
|
19313
|
+
overflow-y: auto;
|
|
19314
|
+
}
|
|
19315
|
+
.semi-sidebar-mcp-configure-content-item {
|
|
19316
|
+
padding: 8px 16px;
|
|
19317
|
+
display: flex;
|
|
19318
|
+
align-items: center;
|
|
19319
|
+
border-bottom: 1px solid var(--semi-color-border);
|
|
19320
|
+
}
|
|
19321
|
+
.semi-sidebar-mcp-configure-content-item-sign {
|
|
19322
|
+
width: 32px;
|
|
19323
|
+
height: 32px;
|
|
19324
|
+
margin-right: 12px;
|
|
19325
|
+
flex-shrink: 0;
|
|
19326
|
+
}
|
|
19327
|
+
.semi-sidebar-mcp-configure-content-item-sign .semi-icon {
|
|
19328
|
+
font-size: 32px;
|
|
19329
|
+
}
|
|
19330
|
+
.semi-sidebar-mcp-configure-content-item-content {
|
|
19331
|
+
justify-content: center;
|
|
19332
|
+
flex: 1;
|
|
19333
|
+
min-width: 0;
|
|
19334
|
+
margin-right: 24px;
|
|
19335
|
+
}
|
|
19336
|
+
.semi-sidebar-mcp-configure-content-item-content-label {
|
|
19337
|
+
font-size: 14px;
|
|
19338
|
+
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
19339
|
+
line-height: 20px;
|
|
19340
|
+
font-weight: 600;
|
|
19341
|
+
color: var(--semi-color-text-0);
|
|
19342
|
+
}
|
|
19343
|
+
.semi-sidebar-mcp-configure-content-item-content-desc {
|
|
19344
|
+
font-size: 12px;
|
|
19345
|
+
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
19346
|
+
line-height: 16px;
|
|
19347
|
+
color: var(--semi-color-text-0);
|
|
19348
|
+
overflow: hidden;
|
|
19349
|
+
text-overflow: ellipsis;
|
|
19350
|
+
white-space: nowrap;
|
|
19351
|
+
max-width: 100%;
|
|
19352
|
+
}
|
|
19353
|
+
.semi-sidebar-mcp-configure-content-item-button {
|
|
19354
|
+
flex-shrink: 0;
|
|
19355
|
+
}
|
|
19356
|
+
.semi-sidebar-mcp-configure-content-item-button-configure {
|
|
19357
|
+
margin-right: 12px;
|
|
19358
|
+
}
|
|
19359
|
+
.semi-sidebar-mcp-configure-content-item-button.semi-button.semi-button-with-icon-only {
|
|
19360
|
+
width: 24px;
|
|
19361
|
+
height: 24px;
|
|
19362
|
+
}
|
|
19363
|
+
.semi-sidebar-mcp-configure-content-custom-empty {
|
|
19364
|
+
margin-top: 64px;
|
|
19365
|
+
}
|
|
19366
|
+
.semi-sidebar-annotation .semi-sidebar-container-content {
|
|
19367
|
+
padding: 12px;
|
|
19368
|
+
overflow: auto;
|
|
19369
|
+
}
|
|
19370
|
+
.semi-sidebar-annotation-content {
|
|
19371
|
+
display: flex;
|
|
19372
|
+
flex-direction: row;
|
|
19373
|
+
flex-wrap: wrap;
|
|
19374
|
+
gap: 8px;
|
|
19375
|
+
width: 100%;
|
|
19376
|
+
}
|
|
19377
|
+
.semi-sidebar-annotation-item {
|
|
19378
|
+
cursor: pointer;
|
|
19379
|
+
}
|
|
19380
|
+
.semi-sidebar-annotation-item-title {
|
|
19381
|
+
overflow: hidden;
|
|
19382
|
+
text-overflow: ellipsis;
|
|
19383
|
+
white-space: normal;
|
|
19384
|
+
max-width: 100%;
|
|
19385
|
+
display: -webkit-box;
|
|
19386
|
+
line-clamp: 2;
|
|
19387
|
+
-webkit-line-clamp: 2;
|
|
19388
|
+
-webkit-box-orient: vertical;
|
|
19389
|
+
font-size: 14px;
|
|
19390
|
+
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
19391
|
+
line-height: 20px;
|
|
19392
|
+
color: var(--semi-color-text-0);
|
|
19393
|
+
font-weight: 600;
|
|
19394
|
+
}
|
|
19395
|
+
.semi-sidebar-annotation-item-footer {
|
|
19396
|
+
display: flex;
|
|
19397
|
+
column-gap: 4px;
|
|
19398
|
+
align-items: center;
|
|
19399
|
+
}
|
|
19400
|
+
.semi-sidebar-annotation-item-footer-logo {
|
|
19401
|
+
font-size: 14px;
|
|
19402
|
+
width: 14px;
|
|
19403
|
+
height: 14px;
|
|
19404
|
+
}
|
|
19405
|
+
.semi-sidebar-annotation-item-footer-text {
|
|
19406
|
+
font-size: 12px;
|
|
19407
|
+
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
19408
|
+
line-height: 16px;
|
|
19409
|
+
color: var(--semi-color-text-0);
|
|
19410
|
+
overflow: hidden;
|
|
19411
|
+
text-overflow: ellipsis;
|
|
19412
|
+
white-space: nowrap;
|
|
19413
|
+
flex-grow: 1;
|
|
19414
|
+
}
|
|
19415
|
+
.semi-sidebar-annotation-item-footer-order {
|
|
19416
|
+
box-sizing: border-box;
|
|
19417
|
+
min-width: 16px;
|
|
19418
|
+
padding: 0 2px;
|
|
19419
|
+
height: 16px;
|
|
19420
|
+
border-radius: 8px;
|
|
19421
|
+
background-color: var(--semi-color-fill-1);
|
|
19422
|
+
display: flex;
|
|
19423
|
+
align-items: center;
|
|
19424
|
+
justify-content: center;
|
|
19425
|
+
font-size: 12px;
|
|
19426
|
+
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
19427
|
+
line-height: 16px;
|
|
19428
|
+
color: var(--semi-color-text-2);
|
|
19429
|
+
}
|
|
19430
|
+
.semi-sidebar-annotation-item-text {
|
|
19431
|
+
padding: 3px 12px;
|
|
19432
|
+
width: 100%;
|
|
19433
|
+
row-gap: 8px;
|
|
19434
|
+
display: flex;
|
|
19435
|
+
flex-direction: column;
|
|
19436
|
+
}
|
|
19437
|
+
.semi-sidebar-annotation-item-text-detail {
|
|
19438
|
+
overflow: hidden;
|
|
19439
|
+
text-overflow: ellipsis;
|
|
19440
|
+
white-space: normal;
|
|
19441
|
+
max-width: 100%;
|
|
19442
|
+
display: -webkit-box;
|
|
19443
|
+
line-clamp: 4;
|
|
19444
|
+
-webkit-line-clamp: 4;
|
|
19445
|
+
-webkit-box-orient: vertical;
|
|
19446
|
+
font-size: 12px;
|
|
19447
|
+
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
19448
|
+
line-height: 16px;
|
|
19449
|
+
color: var(--semi-color-text-2);
|
|
19450
|
+
}
|
|
19451
|
+
.semi-sidebar-annotation-item-video {
|
|
19452
|
+
border-radius: 6px;
|
|
19453
|
+
border: 1px solid var(--semi-color-border);
|
|
19454
|
+
overflow: hidden;
|
|
19455
|
+
width: calc((100% - 8px) / 2);
|
|
19456
|
+
box-sizing: border-box;
|
|
19457
|
+
}
|
|
19458
|
+
.semi-sidebar-annotation-item-video-content {
|
|
19459
|
+
padding: 8px 8px 12px 8px;
|
|
19460
|
+
display: flex;
|
|
19461
|
+
flex-direction: column;
|
|
19462
|
+
row-gap: 8px;
|
|
19463
|
+
}
|
|
19464
|
+
.semi-sidebar-annotation-item-video .semi-sidebar-annotation-item-title {
|
|
19465
|
+
height: 40px;
|
|
19466
|
+
}
|
|
19467
|
+
.semi-sidebar-annotation-item-video-img {
|
|
19468
|
+
width: 100%;
|
|
19469
|
+
height: 100%;
|
|
19470
|
+
object-fit: cover;
|
|
19471
|
+
}
|
|
19472
|
+
.semi-sidebar-annotation-item-video-img-wrapper {
|
|
19473
|
+
position: relative;
|
|
19474
|
+
width: 100%;
|
|
19475
|
+
height: 107px;
|
|
19476
|
+
}
|
|
19477
|
+
.semi-sidebar-annotation-item-video-play {
|
|
19478
|
+
position: absolute;
|
|
19479
|
+
top: 6px;
|
|
19480
|
+
right: 6px;
|
|
19481
|
+
border: 1px solid var(--semi-color-bg-0);
|
|
19482
|
+
background: var(--semi-color-text-2);
|
|
19483
|
+
color: var(--semi-color-bg-0);
|
|
19484
|
+
border-radius: 50%;
|
|
19485
|
+
width: 20px;
|
|
19486
|
+
height: 20px;
|
|
19487
|
+
}
|
|
19488
|
+
.semi-sidebar-annotation-item-video-play.semi-icon {
|
|
19489
|
+
display: inline-flex;
|
|
19490
|
+
align-items: center;
|
|
19491
|
+
justify-content: center;
|
|
19492
|
+
font-size: 12px;
|
|
19493
|
+
}
|
|
19494
|
+
.semi-sidebar-annotation-item-video-duration {
|
|
19495
|
+
padding: 2px 4px;
|
|
19496
|
+
position: absolute;
|
|
19497
|
+
bottom: 6px;
|
|
19498
|
+
right: 6px;
|
|
19499
|
+
background-color: rgba(var(--semi-grey-7), 0.7);
|
|
19500
|
+
border-radius: 4px;
|
|
19501
|
+
font-size: 12px;
|
|
19502
|
+
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
19503
|
+
line-height: 16px;
|
|
19504
|
+
color: var(--semi-color-bg-0);
|
|
19505
|
+
}
|
|
19506
|
+
.semi-sidebar-annotation-item-video-title {
|
|
19507
|
+
font-size: 14px;
|
|
19508
|
+
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
19509
|
+
line-height: 20px;
|
|
19510
|
+
color: var(--semi-color-text-0);
|
|
19511
|
+
}
|
|
19512
|
+
.semi-sidebar-code-content {
|
|
19513
|
+
height: 100%;
|
|
19514
|
+
}
|
|
19515
|
+
.semi-sidebar-code-content .semi-codeHighlight-defaultTheme pre[class*=language-], .semi-sidebar-main-content .semi-codeHighlight-defaultTheme pre[class*=language-] {
|
|
19516
|
+
margin: 0px;
|
|
19517
|
+
padding-top: 0px;
|
|
19518
|
+
padding-bottom: 0px;
|
|
19519
|
+
background-color: transparent;
|
|
19520
|
+
overflow-y: hidden;
|
|
19521
|
+
overflow-x: auto;
|
|
19522
|
+
}
|
|
19523
|
+
.semi-sidebar-code-content .semi-codeHighlight .line-numbers .line-numbers-rows, .semi-sidebar-main-content .semi-codeHighlight .line-numbers .line-numbers-rows {
|
|
19524
|
+
border-right: none;
|
|
19525
|
+
}
|
|
19526
|
+
.semi-sidebar-code-content .semi-json-viewer, .semi-sidebar-main-content .semi-json-viewer {
|
|
19527
|
+
padding-top: 0px;
|
|
19528
|
+
padding-bottom: 0px;
|
|
19529
|
+
background-color: transparent;
|
|
19530
|
+
}
|
|
19531
|
+
.semi-sidebar-collapse .semi-collapse-item {
|
|
19532
|
+
border: 1px solid var(--semi-color-border);
|
|
19533
|
+
border-radius: 8px;
|
|
19534
|
+
}
|
|
19535
|
+
.semi-sidebar-collapse .semi-collapse-item:not(:last-child) {
|
|
19536
|
+
margin-bottom: 8px;
|
|
19537
|
+
}
|
|
19538
|
+
.semi-sidebar-collapse .semi-collapse-header {
|
|
19539
|
+
padding: 8px 16px;
|
|
19540
|
+
margin: 0px;
|
|
19541
|
+
font-weight: 400;
|
|
19542
|
+
}
|
|
19543
|
+
.semi-sidebar-collapse-header-content {
|
|
19544
|
+
display: flex;
|
|
19545
|
+
align-items: center;
|
|
19546
|
+
gap: 8px;
|
|
19547
|
+
width: 100%;
|
|
19548
|
+
padding-right: 8px;
|
|
19549
|
+
}
|
|
19550
|
+
.semi-sidebar-collapse-header-content .semi-icon {
|
|
19551
|
+
color: var(--semi-color-text-1);
|
|
19552
|
+
}
|
|
19553
|
+
.semi-sidebar-collapse-header-text {
|
|
19554
|
+
flex: 1;
|
|
19555
|
+
overflow: hidden;
|
|
19556
|
+
text-overflow: ellipsis;
|
|
19557
|
+
white-space: nowrap;
|
|
19558
|
+
}
|
|
19559
|
+
.semi-sidebar-collapse-header-expand-btn {
|
|
19560
|
+
flex-shrink: 0;
|
|
19561
|
+
}
|
|
19562
|
+
.semi-sidebar-collapse-header-expand-btn.semi-button.semi-button-with-icon-only {
|
|
19563
|
+
padding: 4px;
|
|
19564
|
+
width: 24px;
|
|
19565
|
+
height: 24px;
|
|
19566
|
+
}
|
|
19567
|
+
.semi-sidebar-collapse .semi-collapse-item-active .semi-collapsible-wrapper {
|
|
19568
|
+
border-top: 1px solid var(--semi-color-border);
|
|
19569
|
+
}
|
|
19570
|
+
.semi-sidebar-collapse-code .semi-collapse-content {
|
|
19571
|
+
padding: 12px 0px;
|
|
19572
|
+
}
|
|
19573
|
+
.semi-sidebar-options {
|
|
19574
|
+
display: flex;
|
|
19575
|
+
flex-direction: row;
|
|
19576
|
+
flex-wrap: wrap;
|
|
19577
|
+
gap: 8px;
|
|
19578
|
+
padding: 8px 12px;
|
|
19579
|
+
border-bottom: 1px solid var(--semi-color-border);
|
|
19580
|
+
}
|
|
19581
|
+
.semi-sidebar-options-button .semi-button-content-right {
|
|
19582
|
+
margin-left: 4px;
|
|
19583
|
+
}
|
|
19584
|
+
.semi-sidebar-options-normal.semi-button-primary.semi-button-light {
|
|
19585
|
+
color: var(--semi-color-text-2);
|
|
19586
|
+
font-weight: 400;
|
|
19587
|
+
}
|
|
19588
|
+
.semi-sidebar-file .tiptap {
|
|
19589
|
+
font-size: 14px;
|
|
19590
|
+
line-height: 24px;
|
|
19591
|
+
}
|
|
19592
|
+
.semi-sidebar-file .tiptap ::selection {
|
|
19593
|
+
background: rgba(var(--semi-light-blue-1), 1);
|
|
19594
|
+
}
|
|
19595
|
+
.semi-sidebar-file .tiptap ::-moz-selection {
|
|
19596
|
+
background: rgba(var(--semi-light-blue-1), 1);
|
|
19597
|
+
}
|
|
19598
|
+
.semi-sidebar-file .tiptap p.is-editor-empty:first-child::before {
|
|
19599
|
+
color: var(--semi-color-text-2);
|
|
19600
|
+
content: attr(data-placeholder);
|
|
19601
|
+
float: left;
|
|
19602
|
+
height: 0;
|
|
19603
|
+
pointer-events: none;
|
|
19604
|
+
}
|
|
19605
|
+
.semi-sidebar-file .tiptap p {
|
|
19606
|
+
margin: 0px;
|
|
19607
|
+
white-space: pre-wrap;
|
|
19608
|
+
color: var(--semi-color-text-0);
|
|
19609
|
+
}
|
|
19610
|
+
.semi-sidebar-file .tiptap blockquote {
|
|
19611
|
+
border-left: 3px solid var(--semi-color-border);
|
|
19612
|
+
margin: 24px 0;
|
|
19613
|
+
padding-left: 16px;
|
|
19614
|
+
}
|
|
19615
|
+
.semi-sidebar-file .tiptap:focus {
|
|
19616
|
+
outline: none;
|
|
19617
|
+
}
|
|
19618
|
+
.semi-sidebar-file .tiptap pre {
|
|
19619
|
+
background-color: var(--semi-color-fill-0);
|
|
19620
|
+
padding: 2px 4px;
|
|
19621
|
+
border-radius: 4px;
|
|
19622
|
+
overflow: auto;
|
|
19623
|
+
font-size: 14px;
|
|
19624
|
+
line-height: 24px;
|
|
19625
|
+
border: 1px solid var(--semi-color-border);
|
|
19626
|
+
}
|
|
19627
|
+
.semi-sidebar-file .tiptap pre code {
|
|
19628
|
+
background-color: transparent;
|
|
19629
|
+
}
|
|
19630
|
+
.semi-sidebar-file .tiptap code {
|
|
19631
|
+
background-color: var(--semi-color-border);
|
|
19632
|
+
padding: 2px 4px;
|
|
19633
|
+
}
|
|
19634
|
+
.semi-sidebar-file .tiptap hr {
|
|
19635
|
+
border: none;
|
|
19636
|
+
border-top: 1px solid var(--semi-color-border);
|
|
19637
|
+
}
|
|
19638
|
+
.semi-sidebar-file .tiptap span.select {
|
|
19639
|
+
display: inline-block;
|
|
19640
|
+
background-color: rgba(var(--semi-light-blue-1), 1);
|
|
19641
|
+
line-height: 24px;
|
|
19642
|
+
}
|
|
19643
|
+
.semi-sidebar-file .tiptap.ProseMirror img:not([data-type=emoji] img) {
|
|
19644
|
+
outline: 0.125rem solid transparent;
|
|
19645
|
+
margin: 12px 0;
|
|
19646
|
+
}
|
|
19647
|
+
.semi-sidebar-file .tiptap.ProseMirror img:not([data-type=emoji] img).ProseMirror-selectednode {
|
|
19648
|
+
outline-color: var(--semi-color-text-0);
|
|
19649
|
+
}
|
|
19650
|
+
.semi-sidebar-file .tiptap .tiptap-image-slot .uploadFail .semi-upload-drag-area, .semi-sidebar-file .tiptap .tiptap-image-slot .validateFail .semi-upload-drag-area, .semi-sidebar-file .tiptap .tiptap-image-slot .uploading .semi-upload-drag-area, .semi-sidebar-file .tiptap .tiptap-image-slot .success .semi-upload-drag-area {
|
|
19651
|
+
display: none;
|
|
19652
|
+
}
|
|
19653
|
+
.semi-sidebar-file-menu-bar {
|
|
19654
|
+
display: flex;
|
|
19655
|
+
flex-direction: row;
|
|
19656
|
+
align-items: center;
|
|
19657
|
+
justify-content: center;
|
|
19658
|
+
flex-wrap: wrap;
|
|
19659
|
+
gap: 2px;
|
|
19660
|
+
border-top: 1px solid var(--semi-color-border);
|
|
19661
|
+
border-bottom: 1px solid var(--semi-color-border);
|
|
19662
|
+
padding: 2px 12px;
|
|
19663
|
+
}
|
|
19664
|
+
.semi-sidebar-file-menu-bar-dropdown-item-active {
|
|
19665
|
+
color: var(--semi-color-primary);
|
|
19666
|
+
background: var(--semi-color-fill-0);
|
|
19667
|
+
}
|
|
19668
|
+
.semi-sidebar-file-menu-bar .semi-divider-vertical {
|
|
19669
|
+
margin: 0px;
|
|
19670
|
+
}
|
|
19671
|
+
.semi-sidebar-file-menu-bar-btn-active.semi-button-tertiary.semi-button-borderless {
|
|
19672
|
+
background: var(--semi-color-fill-0);
|
|
19673
|
+
}
|
|
19674
|
+
.semi-sidebar-file-menu-bar-btn-codeblock {
|
|
19675
|
+
font-size: 12px;
|
|
19676
|
+
line-height: 16px;
|
|
19677
|
+
padding: 8px;
|
|
19678
|
+
}
|
|
19679
|
+
.semi-sidebar-file-menu-bar-link-dropdown {
|
|
19680
|
+
padding: 8px;
|
|
19681
|
+
display: flex;
|
|
19682
|
+
align-items: center;
|
|
19683
|
+
justify-content: center;
|
|
19684
|
+
}
|
|
19685
|
+
.semi-sidebar-file-menu-bar-link-dropdown-btn-active.semi-button-tertiary.semi-button-borderless {
|
|
19686
|
+
color: var(--semi-color-primary);
|
|
19687
|
+
}
|
|
19688
|
+
.semi-sidebar-detail .semi-sidebar-file {
|
|
19689
|
+
height: 100%;
|
|
19690
|
+
display: flex;
|
|
19691
|
+
flex-direction: column;
|
|
19692
|
+
}
|
|
19693
|
+
.semi-sidebar-detail .semi-sidebar-file-content {
|
|
19694
|
+
height: 100%;
|
|
19695
|
+
}
|
|
19696
|
+
.semi-sidebar-detail .semi-sidebar-file-editor {
|
|
19697
|
+
overflow: auto;
|
|
19698
|
+
flex: 1;
|
|
19699
|
+
padding: 0 12px;
|
|
19700
|
+
}
|
|
19701
|
+
.semi-sidebar-detail .semi-sidebar-code-content {
|
|
19702
|
+
overflow: auto;
|
|
19703
|
+
}
|
|
19704
|
+
.semi-sidebar-main .semi-sidebar-code-content {
|
|
19705
|
+
height: 200px;
|
|
19706
|
+
overflow: auto;
|
|
19707
|
+
}
|
|
19708
|
+
.semi-sidebar-main .semi-sidebar-collapse-file .semi-collapse-content {
|
|
19709
|
+
max-height: 400px;
|
|
19710
|
+
overflow: auto;
|
|
19711
|
+
}
|
|
19712
|
+
.semi-sidebar-main .semi-sidebar-collapse-code .semi-collapse-content {
|
|
19713
|
+
max-height: 200px;
|
|
19714
|
+
overflow: auto;
|
|
19715
|
+
}
|
|
19716
|
+
.semi-sidebar-main .semi-codeHighlight {
|
|
19717
|
+
height: 200px;
|
|
19718
|
+
overflow: auto;
|
|
19719
|
+
}
|
|
19720
|
+
.semi-sidebar-detail-header {
|
|
19721
|
+
display: flex;
|
|
19722
|
+
flex-direction: row;
|
|
19723
|
+
justify-content: space-between;
|
|
19724
|
+
align-items: center;
|
|
19725
|
+
color: var(--semi-color-text-0);
|
|
19726
|
+
padding: 12px;
|
|
19727
|
+
}
|
|
19728
|
+
.semi-sidebar-detail-header-left {
|
|
19729
|
+
display: flex;
|
|
19730
|
+
flex-direction: row;
|
|
19731
|
+
column-gap: 8px;
|
|
19732
|
+
align-items: center;
|
|
19733
|
+
}
|
|
19734
|
+
.semi-sidebar-detail-header-title {
|
|
19735
|
+
font-size: 16px;
|
|
19736
|
+
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
19737
|
+
line-height: 22px;
|
|
19738
|
+
font-weight: 600;
|
|
19739
|
+
}
|
|
19740
|
+
.semi-sidebar-detail-header-right {
|
|
19741
|
+
display: flex;
|
|
19742
|
+
flex-direction: row;
|
|
19743
|
+
column-gap: 4px;
|
|
19744
|
+
align-items: center;
|
|
19745
|
+
}
|
|
19746
|
+
|
|
19212
19747
|
.semi-skeleton-avatar, .semi-skeleton-image, .semi-skeleton-title, .semi-skeleton-button {
|
|
19213
19748
|
background: var(--semi-color-fill-0);
|
|
19214
19749
|
border-radius: var(--semi-border-radius-small);
|
|
@@ -25194,7 +25729,7 @@ p.semi-typography-extended,
|
|
|
25194
25729
|
display: none;
|
|
25195
25730
|
}
|
|
25196
25731
|
.semi-upload-drag-area-icon {
|
|
25197
|
-
color: var(--semi-color-
|
|
25732
|
+
color: var(--semi-color-text-2);
|
|
25198
25733
|
}
|
|
25199
25734
|
.semi-upload-drag-area-text {
|
|
25200
25735
|
text-align: center;
|
|
@@ -25854,8 +26389,8 @@ p.semi-typography-extended,
|
|
|
25854
26389
|
.semi-portal-rtl .semi-button-group > .semi-button:first-child {
|
|
25855
26390
|
border-top-left-radius: 0;
|
|
25856
26391
|
border-bottom-left-radius: 0;
|
|
25857
|
-
border-top-right-radius:
|
|
25858
|
-
border-bottom-right-radius:
|
|
26392
|
+
border-top-right-radius: 8px;
|
|
26393
|
+
border-bottom-right-radius: 8px;
|
|
25859
26394
|
}
|
|
25860
26395
|
.semi-rtl .semi-button-group > .semi-button:not(:last-child) .semi-button-content,
|
|
25861
26396
|
.semi-portal-rtl .semi-button-group > .semi-button:not(:last-child) .semi-button-content {
|
|
@@ -25866,8 +26401,8 @@ p.semi-typography-extended,
|
|
|
25866
26401
|
.semi-portal-rtl .semi-button-group > .semi-button:last-child {
|
|
25867
26402
|
border-top-right-radius: 0;
|
|
25868
26403
|
border-bottom-right-radius: 0;
|
|
25869
|
-
border-top-left-radius:
|
|
25870
|
-
border-bottom-left-radius:
|
|
26404
|
+
border-top-left-radius: 8px;
|
|
26405
|
+
border-bottom-left-radius: 8px;
|
|
25871
26406
|
}
|
|
25872
26407
|
.semi-rtl .semi-button.semi-button-with-icon-only,
|
|
25873
26408
|
.semi-portal-rtl .semi-button.semi-button-with-icon-only {
|