@semi-bot/semi-theme-fnos 1.1.21 → 1.1.22
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 +4 -2
- package/scss/local.scss +4 -2
- package/semi.css +60 -6
- package/semi.min.css +1 -1
package/README.md
CHANGED
package/package.json
CHANGED
package/raw.json
CHANGED
|
@@ -1147,11 +1147,13 @@
|
|
|
1147
1147
|
"dropdown": {
|
|
1148
1148
|
"color": {
|
|
1149
1149
|
"$color-dropdown-bg-default": "var(--semi-color-bg-dropdown)",
|
|
1150
|
-
"$color-
|
|
1150
|
+
"$color-dropdown_item-bg-hover": "var(--semi-color-fill-1)",
|
|
1151
|
+
"$color-dropdown_item-bg-active": "var(--semi-color-fill-2)",
|
|
1152
|
+
"$color-dropdown_seperator-bg-default": "var(--semi-color-divider-2)",
|
|
1151
1153
|
"$color-dropdown_item_disabled-text-default": "var(--semi-color-disabled-text)"
|
|
1152
1154
|
},
|
|
1153
1155
|
"radius": {
|
|
1154
|
-
"$radius-dropdown": "
|
|
1156
|
+
"$radius-dropdown": "14px"
|
|
1155
1157
|
},
|
|
1156
1158
|
"spacing": {
|
|
1157
1159
|
"$spacing-dropdown_menu-paddingX": "0px",
|
package/scss/local.scss
CHANGED
|
@@ -168,9 +168,11 @@ $color-checkbox_disabled-border-default: var(--semi-color-disabled-border);
|
|
|
168
168
|
$color-checkbox_cardType_inner-bg-active: var(--semi-color-white);
|
|
169
169
|
$radius-checkbox_inner: 4px;
|
|
170
170
|
$color-dropdown-bg-default: var(--semi-color-bg-dropdown);
|
|
171
|
-
$color-
|
|
171
|
+
$color-dropdown_item-bg-hover: var(--semi-color-fill-1);
|
|
172
|
+
$color-dropdown_item-bg-active: var(--semi-color-fill-2);
|
|
173
|
+
$color-dropdown_seperator-bg-default: var(--semi-color-divider-2);
|
|
172
174
|
$color-dropdown_item_disabled-text-default: var(--semi-color-disabled-text);
|
|
173
|
-
$radius-dropdown:
|
|
175
|
+
$radius-dropdown: 14px;
|
|
174
176
|
$spacing-dropdown_menu-paddingX: 0px;
|
|
175
177
|
$spacing-dropdown_seperator-marginX: 0px;
|
|
176
178
|
$color-progress_default-bg: rgba(204,214,224,0.3);
|
package/semi.css
CHANGED
|
@@ -1881,6 +1881,17 @@ body, :host {
|
|
|
1881
1881
|
height: 0;
|
|
1882
1882
|
pointer-events: none;
|
|
1883
1883
|
}
|
|
1884
|
+
.semi-aiChatInput-editor-content .tiptap p.has-skill-slot.is-editor-empty:first-child::before {
|
|
1885
|
+
content: none;
|
|
1886
|
+
}
|
|
1887
|
+
.semi-aiChatInput-editor-content .tiptap p.has-skill-slot.is-editor-empty:first-child::after {
|
|
1888
|
+
color: var(--semi-color-text-2);
|
|
1889
|
+
content: attr(data-placeholder);
|
|
1890
|
+
display: inline;
|
|
1891
|
+
height: 0;
|
|
1892
|
+
margin-left: 8px;
|
|
1893
|
+
pointer-events: none;
|
|
1894
|
+
}
|
|
1884
1895
|
.semi-aiChatInput-editor-content .tiptap p {
|
|
1885
1896
|
margin: 0px;
|
|
1886
1897
|
white-space: pre-wrap;
|
|
@@ -8399,7 +8410,7 @@ body, :host {
|
|
|
8399
8410
|
box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.08), 0px 10px 40px 0px rgba(0, 0, 0, 0.12);
|
|
8400
8411
|
position: relative;
|
|
8401
8412
|
z-index: 1050;
|
|
8402
|
-
border-radius:
|
|
8413
|
+
border-radius: 14px;
|
|
8403
8414
|
background: var(--semi-color-bg-dropdown);
|
|
8404
8415
|
backdrop-filter: none;
|
|
8405
8416
|
opacity: 0;
|
|
@@ -8439,17 +8450,17 @@ body, :host {
|
|
|
8439
8450
|
border-radius: 0px;
|
|
8440
8451
|
}
|
|
8441
8452
|
.semi-dropdown-item-hover {
|
|
8442
|
-
background-color: var(--semi-color-fill-
|
|
8453
|
+
background-color: var(--semi-color-fill-1);
|
|
8443
8454
|
}
|
|
8444
8455
|
.semi-dropdown-item:not(.semi-dropdown-item-active):hover {
|
|
8445
|
-
background-color: var(--semi-color-fill-
|
|
8456
|
+
background-color: var(--semi-color-fill-1);
|
|
8446
8457
|
cursor: pointer;
|
|
8447
8458
|
}
|
|
8448
8459
|
.semi-dropdown-item:not(.semi-dropdown-item-active):active {
|
|
8449
|
-
background-color: var(--semi-color-fill-
|
|
8460
|
+
background-color: var(--semi-color-fill-2);
|
|
8450
8461
|
}
|
|
8451
8462
|
.semi-dropdown-item:focus-visible {
|
|
8452
|
-
background-color: var(--semi-color-fill-
|
|
8463
|
+
background-color: var(--semi-color-fill-1);
|
|
8453
8464
|
outline: 0;
|
|
8454
8465
|
}
|
|
8455
8466
|
.semi-dropdown-item-icon {
|
|
@@ -8497,7 +8508,7 @@ body, :host {
|
|
|
8497
8508
|
width: 100%;
|
|
8498
8509
|
min-width: 100%;
|
|
8499
8510
|
clear: both;
|
|
8500
|
-
background: var(--semi-color-divider-
|
|
8511
|
+
background: var(--semi-color-divider-2);
|
|
8501
8512
|
margin: 4px 0px;
|
|
8502
8513
|
}
|
|
8503
8514
|
|
|
@@ -26809,6 +26820,49 @@ p.semi-typography-extended,
|
|
|
26809
26820
|
color: var(--semi-color-warning);
|
|
26810
26821
|
}
|
|
26811
26822
|
|
|
26823
|
+
.semi-input-textarea-wrapper-withLineNumber {
|
|
26824
|
+
display: flex;
|
|
26825
|
+
padding: 0;
|
|
26826
|
+
align-items: flex-start;
|
|
26827
|
+
}
|
|
26828
|
+
.semi-input-textarea-wrapper-withLineNumber .semi-input-textarea-lineNumber {
|
|
26829
|
+
flex-shrink: 0;
|
|
26830
|
+
padding: 5px 12px;
|
|
26831
|
+
background-color: var(--semi-color-fill-1);
|
|
26832
|
+
border-right: 1px solid var(--semi-color-border);
|
|
26833
|
+
color: var(--semi-color-text-2);
|
|
26834
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
26835
|
+
font-size: inherit;
|
|
26836
|
+
line-height: 1.5;
|
|
26837
|
+
text-align: right;
|
|
26838
|
+
user-select: none;
|
|
26839
|
+
min-width: 36px;
|
|
26840
|
+
border-radius: 6px 0 0 6px;
|
|
26841
|
+
overflow-y: auto;
|
|
26842
|
+
overflow-x: hidden;
|
|
26843
|
+
scrollbar-width: none;
|
|
26844
|
+
-ms-overflow-style: none;
|
|
26845
|
+
}
|
|
26846
|
+
.semi-input-textarea-wrapper-withLineNumber .semi-input-textarea-lineNumber::-webkit-scrollbar {
|
|
26847
|
+
display: none;
|
|
26848
|
+
}
|
|
26849
|
+
.semi-input-textarea-wrapper-withLineNumber .semi-input-textarea-content {
|
|
26850
|
+
display: flex;
|
|
26851
|
+
flex: 1;
|
|
26852
|
+
min-width: 0;
|
|
26853
|
+
}
|
|
26854
|
+
.semi-input-textarea-wrapper-withLineNumber .semi-input-textarea-lineNumber-item {
|
|
26855
|
+
display: flex;
|
|
26856
|
+
align-items: flex-start;
|
|
26857
|
+
justify-content: flex-end;
|
|
26858
|
+
box-sizing: border-box;
|
|
26859
|
+
}
|
|
26860
|
+
.semi-input-textarea-wrapper-withLineNumber .semi-input-textarea {
|
|
26861
|
+
border-radius: 0 6px 6px 0;
|
|
26862
|
+
line-height: 1.5;
|
|
26863
|
+
flex: 1;
|
|
26864
|
+
}
|
|
26865
|
+
|
|
26812
26866
|
.semi-rtl .semi-input-wrapper,
|
|
26813
26867
|
.semi-portal-rtl .semi-input-wrapper {
|
|
26814
26868
|
direction: rtl;
|