@semi-bot/semi-theme-xba 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
- package/raw.json +12 -12
- package/scss/_font.scss +10 -10
- package/scss/variables.scss +5 -5
- package/semi.css +68 -68
- package/semi.min.css +1 -1
package/README.md
CHANGED
package/package.json
CHANGED
package/raw.json
CHANGED
|
@@ -837,34 +837,34 @@
|
|
|
837
837
|
"typography": {
|
|
838
838
|
"Header": {
|
|
839
839
|
"header-1": {
|
|
840
|
-
"fontSize": "
|
|
840
|
+
"fontSize": "20px",
|
|
841
841
|
"fontFamily": "'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI','PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue',Helvetica, Arial, sans-serif",
|
|
842
|
-
"lineHeight": "
|
|
842
|
+
"lineHeight": "30px"
|
|
843
843
|
},
|
|
844
844
|
"header-2": {
|
|
845
|
-
"fontSize": "
|
|
845
|
+
"fontSize": "18px",
|
|
846
846
|
"fontFamily": "'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI','PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue',Helvetica, Arial, sans-serif",
|
|
847
|
-
"lineHeight": "
|
|
847
|
+
"lineHeight": "28px"
|
|
848
848
|
},
|
|
849
849
|
"header-3": {
|
|
850
|
-
"fontSize": "
|
|
850
|
+
"fontSize": "16px",
|
|
851
851
|
"fontFamily": "'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI','PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue',Helvetica, Arial, sans-serif",
|
|
852
|
-
"lineHeight": "
|
|
852
|
+
"lineHeight": "24px"
|
|
853
853
|
},
|
|
854
854
|
"header-4": {
|
|
855
855
|
"fontSize": "16px",
|
|
856
856
|
"fontFamily": "'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI','PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue',Helvetica, Arial, sans-serif",
|
|
857
|
-
"lineHeight": "
|
|
857
|
+
"lineHeight": "24px"
|
|
858
858
|
},
|
|
859
859
|
"header-5": {
|
|
860
|
-
"fontSize": "
|
|
860
|
+
"fontSize": "16px",
|
|
861
861
|
"fontFamily": "'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI','PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue',Helvetica, Arial, sans-serif",
|
|
862
862
|
"lineHeight": "24px"
|
|
863
863
|
},
|
|
864
864
|
"header-6": {
|
|
865
|
-
"fontSize": "
|
|
865
|
+
"fontSize": "16px",
|
|
866
866
|
"fontFamily": "'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI','PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue',Helvetica, Arial, sans-serif",
|
|
867
|
-
"lineHeight": "
|
|
867
|
+
"lineHeight": "24px"
|
|
868
868
|
}
|
|
869
869
|
},
|
|
870
870
|
"Paragraph": {
|
|
@@ -912,8 +912,8 @@
|
|
|
912
912
|
"wordSpace": 0,
|
|
913
913
|
"fontFamily": "'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI','PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue',Helvetica, Arial, sans-serif",
|
|
914
914
|
"letterSpace": 0,
|
|
915
|
-
"baseFontSize": "
|
|
916
|
-
"lineHeightMultiplier": 1.
|
|
915
|
+
"baseFontSize": "16px",
|
|
916
|
+
"lineHeightMultiplier": 1.5
|
|
917
917
|
},
|
|
918
918
|
"globalScssVariables": {}
|
|
919
919
|
}
|
package/scss/_font.scss
CHANGED
|
@@ -1,42 +1,42 @@
|
|
|
1
1
|
@mixin font-size-header-1 {
|
|
2
|
-
font-size:
|
|
2
|
+
font-size: 20px;
|
|
3
3
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI','PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue',Helvetica, Arial, sans-serif;
|
|
4
|
-
line-height:
|
|
4
|
+
line-height: 30px;
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
}
|
|
8
8
|
@mixin font-size-header-2 {
|
|
9
|
-
font-size:
|
|
9
|
+
font-size: 18px;
|
|
10
10
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI','PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue',Helvetica, Arial, sans-serif;
|
|
11
|
-
line-height:
|
|
11
|
+
line-height: 28px;
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
}
|
|
15
15
|
@mixin font-size-header-3 {
|
|
16
|
-
font-size:
|
|
16
|
+
font-size: 16px;
|
|
17
17
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI','PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue',Helvetica, Arial, sans-serif;
|
|
18
|
-
line-height:
|
|
18
|
+
line-height: 24px;
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
}
|
|
22
22
|
@mixin font-size-header-4 {
|
|
23
23
|
font-size: 16px;
|
|
24
24
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI','PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue',Helvetica, Arial, sans-serif;
|
|
25
|
-
line-height:
|
|
25
|
+
line-height: 24px;
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
}
|
|
29
29
|
@mixin font-size-header-5 {
|
|
30
|
-
font-size:
|
|
30
|
+
font-size: 16px;
|
|
31
31
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI','PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue',Helvetica, Arial, sans-serif;
|
|
32
32
|
line-height: 24px;
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
}
|
|
36
36
|
@mixin font-size-header-6 {
|
|
37
|
-
font-size:
|
|
37
|
+
font-size: 16px;
|
|
38
38
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI','PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue',Helvetica, Arial, sans-serif;
|
|
39
|
-
line-height:
|
|
39
|
+
line-height: 24px;
|
|
40
40
|
|
|
41
41
|
|
|
42
42
|
}
|
package/scss/variables.scss
CHANGED
|
@@ -59,12 +59,12 @@ $font-family-regular: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI','Pi
|
|
|
59
59
|
$font-size-small: 12px; // 小文本字号
|
|
60
60
|
$font-size-regular: 14px; // 常规文本字号
|
|
61
61
|
|
|
62
|
-
$font-size-header-6:
|
|
63
|
-
$font-size-header-5:
|
|
62
|
+
$font-size-header-6: 16px; // 六级标题字号
|
|
63
|
+
$font-size-header-5: 16px; // 五级标题字号
|
|
64
64
|
$font-size-header-4: 16px; // 四级标题字号
|
|
65
|
-
$font-size-header-3:
|
|
66
|
-
$font-size-header-2:
|
|
67
|
-
$font-size-header-1:
|
|
65
|
+
$font-size-header-3: 16px; // 三级标题字号
|
|
66
|
+
$font-size-header-2: 18px; // 二级标题字号
|
|
67
|
+
$font-size-header-1: 20px; // 一级标题字号
|
|
68
68
|
|
|
69
69
|
|
|
70
70
|
$font-weight-light: 200; // 字重 - 轻
|
package/semi.css
CHANGED
|
@@ -699,7 +699,7 @@ body, :host {
|
|
|
699
699
|
}
|
|
700
700
|
.semi-ai-chat-dialogue-title {
|
|
701
701
|
line-height: 20px;
|
|
702
|
-
font-size:
|
|
702
|
+
font-size: 16px;
|
|
703
703
|
font-weight: 400;
|
|
704
704
|
}
|
|
705
705
|
.semi-ai-chat-dialogue-inner {
|
|
@@ -892,7 +892,7 @@ body, :host {
|
|
|
892
892
|
flex-shrink: 1;
|
|
893
893
|
}
|
|
894
894
|
.semi-ai-chat-dialogue-content-file-title {
|
|
895
|
-
font-size:
|
|
895
|
+
font-size: 16px;
|
|
896
896
|
color: var(--semi-color-text-0);
|
|
897
897
|
max-width: 180px;
|
|
898
898
|
white-space: nowrap;
|
|
@@ -943,7 +943,7 @@ body, :host {
|
|
|
943
943
|
color: var(--semi-color-danger);
|
|
944
944
|
}
|
|
945
945
|
.semi-ai-chat-dialogue-action-dropdown .semi-icon {
|
|
946
|
-
font-size:
|
|
946
|
+
font-size: 16px;
|
|
947
947
|
}
|
|
948
948
|
.semi-ai-chat-dialogue-reasoning {
|
|
949
949
|
width: 100%;
|
|
@@ -1095,7 +1095,7 @@ body, :host {
|
|
|
1095
1095
|
display: flex;
|
|
1096
1096
|
flex-wrap: wrap;
|
|
1097
1097
|
font-size: 12px;
|
|
1098
|
-
line-height:
|
|
1098
|
+
line-height: 16px;
|
|
1099
1099
|
color: var(--semi-color-text-2);
|
|
1100
1100
|
margin-top: 8px;
|
|
1101
1101
|
column-gap: 4px;
|
|
@@ -2266,7 +2266,7 @@ body, :host {
|
|
|
2266
2266
|
border-radius: 3px;
|
|
2267
2267
|
}
|
|
2268
2268
|
.semi-avatar-default .semi-avatar-label {
|
|
2269
|
-
font-size:
|
|
2269
|
+
font-size: 16px;
|
|
2270
2270
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
2271
2271
|
line-height: 24px;
|
|
2272
2272
|
}
|
|
@@ -2278,7 +2278,7 @@ body, :host {
|
|
|
2278
2278
|
.semi-avatar-medium .semi-avatar-label {
|
|
2279
2279
|
font-size: 16px;
|
|
2280
2280
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
2281
|
-
line-height:
|
|
2281
|
+
line-height: 24px;
|
|
2282
2282
|
}
|
|
2283
2283
|
.semi-avatar-large {
|
|
2284
2284
|
width: 72px;
|
|
@@ -2286,9 +2286,9 @@ body, :host {
|
|
|
2286
2286
|
border-radius: 6px;
|
|
2287
2287
|
}
|
|
2288
2288
|
.semi-avatar-large .semi-avatar-label {
|
|
2289
|
-
font-size:
|
|
2289
|
+
font-size: 20px;
|
|
2290
2290
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
2291
|
-
line-height:
|
|
2291
|
+
line-height: 30px;
|
|
2292
2292
|
}
|
|
2293
2293
|
.semi-avatar-extra-large {
|
|
2294
2294
|
width: 128px;
|
|
@@ -4233,7 +4233,7 @@ body, :host {
|
|
|
4233
4233
|
.semi-calendar-month-event-card-header-info-date {
|
|
4234
4234
|
font-size: 16px;
|
|
4235
4235
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
4236
|
-
line-height:
|
|
4236
|
+
line-height: 24px;
|
|
4237
4237
|
margin-top: 4px;
|
|
4238
4238
|
}
|
|
4239
4239
|
.semi-calendar-month-event-card-body {
|
|
@@ -4412,7 +4412,7 @@ body, :host {
|
|
|
4412
4412
|
}
|
|
4413
4413
|
.semi-card-header-wrapper-extra {
|
|
4414
4414
|
flex-shrink: 0;
|
|
4415
|
-
font-size:
|
|
4415
|
+
font-size: 16px;
|
|
4416
4416
|
font-style: normal;
|
|
4417
4417
|
font-weight: 700;
|
|
4418
4418
|
letter-spacing: 0em;
|
|
@@ -4451,7 +4451,7 @@ body, :host {
|
|
|
4451
4451
|
margin-right: 12px;
|
|
4452
4452
|
}
|
|
4453
4453
|
.semi-card-meta-wrapper-title {
|
|
4454
|
-
font-size:
|
|
4454
|
+
font-size: 16px;
|
|
4455
4455
|
font-style: normal;
|
|
4456
4456
|
font-weight: 700;
|
|
4457
4457
|
line-height: 22px;
|
|
@@ -4903,9 +4903,9 @@ body, :host {
|
|
|
4903
4903
|
line-height: 40px;
|
|
4904
4904
|
}
|
|
4905
4905
|
.semi-cascader-large .semi-cascader-selection {
|
|
4906
|
-
font-size:
|
|
4906
|
+
font-size: 16px;
|
|
4907
4907
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
4908
|
-
line-height:
|
|
4908
|
+
line-height: 24px;
|
|
4909
4909
|
}
|
|
4910
4910
|
.semi-cascader-large .semi-cascader-selection {
|
|
4911
4911
|
padding-left: 12px;
|
|
@@ -5509,7 +5509,7 @@ body, :host {
|
|
|
5509
5509
|
}
|
|
5510
5510
|
.semi-chat-chatBox-title {
|
|
5511
5511
|
line-height: 20px;
|
|
5512
|
-
font-size:
|
|
5512
|
+
font-size: 16px;
|
|
5513
5513
|
color: var(--semi-color-text-0);
|
|
5514
5514
|
font-weight: 400;
|
|
5515
5515
|
text-overflow: ellipsis;
|
|
@@ -5814,7 +5814,7 @@ body, :host {
|
|
|
5814
5814
|
flex-direction: column;
|
|
5815
5815
|
}
|
|
5816
5816
|
.semi-chat-attachment-file-title {
|
|
5817
|
-
font-size:
|
|
5817
|
+
font-size: 16px;
|
|
5818
5818
|
color: var(--semi-color-text-0);
|
|
5819
5819
|
max-width: 90px;
|
|
5820
5820
|
text-overflow: ellipsis;
|
|
@@ -6820,9 +6820,9 @@ body, :host {
|
|
|
6820
6820
|
min-width: 32px;
|
|
6821
6821
|
}
|
|
6822
6822
|
.semi-datepicker-navigation-month {
|
|
6823
|
-
font-size:
|
|
6823
|
+
font-size: 16px;
|
|
6824
6824
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
6825
|
-
line-height:
|
|
6825
|
+
line-height: 24px;
|
|
6826
6826
|
flex-grow: 1;
|
|
6827
6827
|
text-align: center;
|
|
6828
6828
|
font-weight: 600;
|
|
@@ -8006,10 +8006,10 @@ body, :host {
|
|
|
8006
8006
|
font-size: 12px;
|
|
8007
8007
|
}
|
|
8008
8008
|
.semi-descriptions-double-small .semi-descriptions-value {
|
|
8009
|
-
font-size:
|
|
8009
|
+
font-size: 16px;
|
|
8010
8010
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
8011
|
-
line-height:
|
|
8012
|
-
font-size:
|
|
8011
|
+
line-height: 24px;
|
|
8012
|
+
font-size: 16px;
|
|
8013
8013
|
}
|
|
8014
8014
|
.semi-descriptions-double-medium .semi-descriptions-item {
|
|
8015
8015
|
padding-right: 60px;
|
|
@@ -8021,7 +8021,7 @@ body, :host {
|
|
|
8021
8021
|
.semi-descriptions-double-medium .semi-descriptions-value {
|
|
8022
8022
|
font-size: 16px;
|
|
8023
8023
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
8024
|
-
line-height:
|
|
8024
|
+
line-height: 24px;
|
|
8025
8025
|
font-size: 16px;
|
|
8026
8026
|
}
|
|
8027
8027
|
.semi-descriptions-double-large .semi-descriptions-item {
|
|
@@ -8032,10 +8032,10 @@ body, :host {
|
|
|
8032
8032
|
font-size: 14px;
|
|
8033
8033
|
}
|
|
8034
8034
|
.semi-descriptions-double-large .semi-descriptions-value {
|
|
8035
|
-
font-size:
|
|
8035
|
+
font-size: 18px;
|
|
8036
8036
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
8037
|
-
line-height:
|
|
8038
|
-
font-size:
|
|
8037
|
+
line-height: 28px;
|
|
8038
|
+
font-size: 18px;
|
|
8039
8039
|
}
|
|
8040
8040
|
.semi-descriptions-horizontal table {
|
|
8041
8041
|
table-layout: fixed;
|
|
@@ -8769,7 +8769,7 @@ body, :host {
|
|
|
8769
8769
|
.semi-form-section-text {
|
|
8770
8770
|
margin-block-start: 0;
|
|
8771
8771
|
margin-block-end: 0;
|
|
8772
|
-
font-size:
|
|
8772
|
+
font-size: 16px;
|
|
8773
8773
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
8774
8774
|
line-height: 24px;
|
|
8775
8775
|
font-weight: 600;
|
|
@@ -14362,9 +14362,9 @@ body, :host {
|
|
|
14362
14362
|
.semi-image-preview-footer-page {
|
|
14363
14363
|
user-select: none;
|
|
14364
14364
|
color: var(--semi-color-white);
|
|
14365
|
-
font-size:
|
|
14365
|
+
font-size: 16px;
|
|
14366
14366
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
14367
|
-
line-height:
|
|
14367
|
+
line-height: 24px;
|
|
14368
14368
|
margin: 0 12px;
|
|
14369
14369
|
}
|
|
14370
14370
|
.semi-image-preview-footer .semi-icon {
|
|
@@ -14527,9 +14527,9 @@ img[src=""], img:not([src]) {
|
|
|
14527
14527
|
}
|
|
14528
14528
|
.semi-input-wrapper-large {
|
|
14529
14529
|
height: 40px;
|
|
14530
|
-
font-size:
|
|
14530
|
+
font-size: 16px;
|
|
14531
14531
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
14532
|
-
line-height:
|
|
14532
|
+
line-height: 24px;
|
|
14533
14533
|
line-height: 38px;
|
|
14534
14534
|
}
|
|
14535
14535
|
.semi-input-wrapper:hover {
|
|
@@ -14825,9 +14825,9 @@ img[src=""], img:not([src]) {
|
|
|
14825
14825
|
}
|
|
14826
14826
|
.semi-input-large {
|
|
14827
14827
|
height: 38px;
|
|
14828
|
-
font-size:
|
|
14828
|
+
font-size: 16px;
|
|
14829
14829
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
14830
|
-
line-height:
|
|
14830
|
+
line-height: 24px;
|
|
14831
14831
|
line-height: 38px;
|
|
14832
14832
|
}
|
|
14833
14833
|
.semi-input-small {
|
|
@@ -16210,7 +16210,7 @@ img[src=""], img:not([src]) {
|
|
|
16210
16210
|
object-fit: scale-down;
|
|
16211
16211
|
}
|
|
16212
16212
|
.semi-navigation-header-text {
|
|
16213
|
-
font-size:
|
|
16213
|
+
font-size: 16px;
|
|
16214
16214
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
16215
16215
|
line-height: 24px;
|
|
16216
16216
|
font-weight: 600;
|
|
@@ -16736,9 +16736,9 @@ img[src=""], img:not([src]) {
|
|
|
16736
16736
|
}
|
|
16737
16737
|
.semi-notification-notice-icon {
|
|
16738
16738
|
width: 24px;
|
|
16739
|
-
font-size:
|
|
16739
|
+
font-size: 16px;
|
|
16740
16740
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
16741
|
-
line-height:
|
|
16741
|
+
line-height: 24px;
|
|
16742
16742
|
display: flex;
|
|
16743
16743
|
align-items: flex-start;
|
|
16744
16744
|
justify-content: flex-start;
|
|
@@ -16778,9 +16778,9 @@ img[src=""], img:not([src]) {
|
|
|
16778
16778
|
border: 1px solid var(--semi-color-danger);
|
|
16779
16779
|
}
|
|
16780
16780
|
.semi-notification-notice-title {
|
|
16781
|
-
font-size:
|
|
16781
|
+
font-size: 16px;
|
|
16782
16782
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
16783
|
-
line-height:
|
|
16783
|
+
line-height: 24px;
|
|
16784
16784
|
font-weight: 600;
|
|
16785
16785
|
color: var(--semi-color-text-0);
|
|
16786
16786
|
margin-bottom: 4px;
|
|
@@ -17253,9 +17253,9 @@ img[src=""], img:not([src]) {
|
|
|
17253
17253
|
justify-content: flex-start;
|
|
17254
17254
|
}
|
|
17255
17255
|
.semi-popconfirm-header-title {
|
|
17256
|
-
font-size:
|
|
17256
|
+
font-size: 16px;
|
|
17257
17257
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
17258
|
-
line-height:
|
|
17258
|
+
line-height: 24px;
|
|
17259
17259
|
font-weight: 600;
|
|
17260
17260
|
margin-bottom: 8px;
|
|
17261
17261
|
color: var(--semi-color-text-0);
|
|
@@ -18473,9 +18473,9 @@ img[src=""], img:not([src]) {
|
|
|
18473
18473
|
line-height: 40px;
|
|
18474
18474
|
}
|
|
18475
18475
|
.semi-select-large .semi-select-selection {
|
|
18476
|
-
font-size:
|
|
18476
|
+
font-size: 16px;
|
|
18477
18477
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
18478
|
-
line-height:
|
|
18478
|
+
line-height: 24px;
|
|
18479
18479
|
}
|
|
18480
18480
|
.semi-select-open, .semi-select-focus {
|
|
18481
18481
|
border: 1px solid var(--semi-color-focus-border);
|
|
@@ -18983,11 +18983,11 @@ img[src=""], img:not([src]) {
|
|
|
18983
18983
|
.semi-sidesheet-title {
|
|
18984
18984
|
flex: 1 0 auto;
|
|
18985
18985
|
margin: 0;
|
|
18986
|
-
font-size:
|
|
18986
|
+
font-size: 16px;
|
|
18987
18987
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
18988
18988
|
line-height: 24px;
|
|
18989
18989
|
font-weight: 600;
|
|
18990
|
-
font-size:
|
|
18990
|
+
font-size: 16px;
|
|
18991
18991
|
color: var(--semi-color-text-0);
|
|
18992
18992
|
text-align: left;
|
|
18993
18993
|
}
|
|
@@ -19244,9 +19244,9 @@ img[src=""], img:not([src]) {
|
|
|
19244
19244
|
}
|
|
19245
19245
|
.semi-sidebar-container-header-title {
|
|
19246
19246
|
flex: 1;
|
|
19247
|
-
font-size:
|
|
19247
|
+
font-size: 16px;
|
|
19248
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:
|
|
19249
|
+
line-height: 24px;
|
|
19250
19250
|
font-weight: 600;
|
|
19251
19251
|
}
|
|
19252
19252
|
.semi-sidebar-container-header-closeBtn {
|
|
@@ -19732,9 +19732,9 @@ img[src=""], img:not([src]) {
|
|
|
19732
19732
|
align-items: center;
|
|
19733
19733
|
}
|
|
19734
19734
|
.semi-sidebar-detail-header-title {
|
|
19735
|
-
font-size:
|
|
19735
|
+
font-size: 16px;
|
|
19736
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:
|
|
19737
|
+
line-height: 24px;
|
|
19738
19738
|
font-weight: 600;
|
|
19739
19739
|
}
|
|
19740
19740
|
.semi-sidebar-detail-header-right {
|
|
@@ -20215,7 +20215,7 @@ img[src=""], img:not([src]) {
|
|
|
20215
20215
|
}
|
|
20216
20216
|
.semi-steps .semi-steps-item .semi-steps-item-title {
|
|
20217
20217
|
position: relative;
|
|
20218
|
-
font-size:
|
|
20218
|
+
font-size: 16px;
|
|
20219
20219
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
20220
20220
|
line-height: 24px;
|
|
20221
20221
|
font-weight: 600;
|
|
@@ -20320,7 +20320,7 @@ img[src=""], img:not([src]) {
|
|
|
20320
20320
|
justify-content: center;
|
|
20321
20321
|
font-size: 16px;
|
|
20322
20322
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
20323
|
-
line-height:
|
|
20323
|
+
line-height: 24px;
|
|
20324
20324
|
font-weight: 600;
|
|
20325
20325
|
flex-grow: 0;
|
|
20326
20326
|
}
|
|
@@ -20488,9 +20488,9 @@ img[src=""], img:not([src]) {
|
|
|
20488
20488
|
justify-content: center;
|
|
20489
20489
|
width: 24px;
|
|
20490
20490
|
height: 24px;
|
|
20491
|
-
font-size:
|
|
20491
|
+
font-size: 16px;
|
|
20492
20492
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
20493
|
-
line-height:
|
|
20493
|
+
line-height: 24px;
|
|
20494
20494
|
font-weight: 600;
|
|
20495
20495
|
background: var(--semi-color-primary);
|
|
20496
20496
|
border-radius: var(--semi-border-radius-circle);
|
|
@@ -20500,9 +20500,9 @@ img[src=""], img:not([src]) {
|
|
|
20500
20500
|
.semi-steps-basic .semi-steps-item .semi-steps-item-title {
|
|
20501
20501
|
position: relative;
|
|
20502
20502
|
display: inline-block;
|
|
20503
|
-
font-size:
|
|
20503
|
+
font-size: 16px;
|
|
20504
20504
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
20505
|
-
line-height:
|
|
20505
|
+
line-height: 24px;
|
|
20506
20506
|
line-height: 24px;
|
|
20507
20507
|
font-weight: 600;
|
|
20508
20508
|
color: var(--semi-color-text-0);
|
|
@@ -20595,9 +20595,9 @@ img[src=""], img:not([src]) {
|
|
|
20595
20595
|
display: inline-block;
|
|
20596
20596
|
}
|
|
20597
20597
|
.semi-steps-nav .semi-steps-item .semi-steps-item-title {
|
|
20598
|
-
font-size:
|
|
20598
|
+
font-size: 16px;
|
|
20599
20599
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
20600
|
-
line-height:
|
|
20600
|
+
line-height: 24px;
|
|
20601
20601
|
max-width: 17em;
|
|
20602
20602
|
overflow: hidden;
|
|
20603
20603
|
text-overflow: ellipsis;
|
|
@@ -24760,9 +24760,9 @@ img[src=""], img:not([src]) {
|
|
|
24760
24760
|
line-height: 40px;
|
|
24761
24761
|
}
|
|
24762
24762
|
.semi-tree-select-large .semi-tree-select-selection {
|
|
24763
|
-
font-size:
|
|
24763
|
+
font-size: 16px;
|
|
24764
24764
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
24765
|
-
line-height:
|
|
24765
|
+
line-height: 24px;
|
|
24766
24766
|
}
|
|
24767
24767
|
.semi-tree-select-arrow {
|
|
24768
24768
|
display: inline-flex;
|
|
@@ -25063,9 +25063,9 @@ img[src=""], img:not([src]) {
|
|
|
25063
25063
|
|
|
25064
25064
|
h1.semi-typography,
|
|
25065
25065
|
.semi-typography-h1.semi-typography {
|
|
25066
|
-
font-size:
|
|
25066
|
+
font-size: 20px;
|
|
25067
25067
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
25068
|
-
line-height:
|
|
25068
|
+
line-height: 30px;
|
|
25069
25069
|
font-weight: 600;
|
|
25070
25070
|
margin: 0;
|
|
25071
25071
|
}
|
|
@@ -25092,9 +25092,9 @@ h1.semi-typography.semi-typography-h1-weight-bold,
|
|
|
25092
25092
|
|
|
25093
25093
|
h2.semi-typography,
|
|
25094
25094
|
.semi-typography-h2.semi-typography {
|
|
25095
|
-
font-size:
|
|
25095
|
+
font-size: 18px;
|
|
25096
25096
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
25097
|
-
line-height:
|
|
25097
|
+
line-height: 28px;
|
|
25098
25098
|
font-weight: 600;
|
|
25099
25099
|
margin: 0;
|
|
25100
25100
|
}
|
|
@@ -25121,9 +25121,9 @@ h2.semi-typography.semi-typography-h2-weight-bold,
|
|
|
25121
25121
|
|
|
25122
25122
|
h3.semi-typography,
|
|
25123
25123
|
.semi-typography-h3.semi-typography {
|
|
25124
|
-
font-size:
|
|
25124
|
+
font-size: 16px;
|
|
25125
25125
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
25126
|
-
line-height:
|
|
25126
|
+
line-height: 24px;
|
|
25127
25127
|
font-weight: 600;
|
|
25128
25128
|
margin: 0;
|
|
25129
25129
|
}
|
|
@@ -25152,7 +25152,7 @@ h4.semi-typography,
|
|
|
25152
25152
|
.semi-typography-h4.semi-typography {
|
|
25153
25153
|
font-size: 16px;
|
|
25154
25154
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
25155
|
-
line-height:
|
|
25155
|
+
line-height: 24px;
|
|
25156
25156
|
font-weight: 600;
|
|
25157
25157
|
margin: 0;
|
|
25158
25158
|
}
|
|
@@ -25179,7 +25179,7 @@ h4.semi-typography.semi-typography-h4-weight-bold,
|
|
|
25179
25179
|
|
|
25180
25180
|
h5.semi-typography,
|
|
25181
25181
|
.semi-typography-h5.semi-typography {
|
|
25182
|
-
font-size:
|
|
25182
|
+
font-size: 16px;
|
|
25183
25183
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
25184
25184
|
line-height: 24px;
|
|
25185
25185
|
font-weight: 600;
|
|
@@ -25208,9 +25208,9 @@ h5.semi-typography.semi-typography-h5-weight-bold,
|
|
|
25208
25208
|
|
|
25209
25209
|
h6.semi-typography,
|
|
25210
25210
|
.semi-typography-h6.semi-typography {
|
|
25211
|
-
font-size:
|
|
25211
|
+
font-size: 16px;
|
|
25212
25212
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
25213
|
-
line-height:
|
|
25213
|
+
line-height: 24px;
|
|
25214
25214
|
font-weight: 600;
|
|
25215
25215
|
margin: 0;
|
|
25216
25216
|
}
|
|
@@ -25865,7 +25865,7 @@ p.semi-typography-extended,
|
|
|
25865
25865
|
padding: 24px;
|
|
25866
25866
|
}
|
|
25867
25867
|
.semi-userGuide-popup-content-title {
|
|
25868
|
-
font-size:
|
|
25868
|
+
font-size: 16px;
|
|
25869
25869
|
font-weight: 600;
|
|
25870
25870
|
line-height: 24px;
|
|
25871
25871
|
margin-bottom: 8px;
|
|
@@ -25924,7 +25924,7 @@ p.semi-typography-extended,
|
|
|
25924
25924
|
padding: 24px 48px;
|
|
25925
25925
|
}
|
|
25926
25926
|
.semi-userGuide-modal-body-title {
|
|
25927
|
-
font-size:
|
|
25927
|
+
font-size: 16px;
|
|
25928
25928
|
font-weight: 600;
|
|
25929
25929
|
line-height: 24px;
|
|
25930
25930
|
margin-bottom: 8px;
|