@neo4j-ndl/base 4.1.5 → 4.2.0
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/lib/cjs/tokens/js/tokens-esm.js +1 -1
- package/lib/cjs/tokens/js/tokens-esm.js.map +1 -1
- package/lib/cjs/tokens/js/tokens.js +1 -1
- package/lib/cjs/tokens/js/tokens.js.map +1 -1
- package/lib/esm/tokens/js/tokens-esm.js +1 -1
- package/lib/esm/tokens/js/tokens-esm.js.map +1 -1
- package/lib/esm/tokens/js/tokens.js +1 -1
- package/lib/esm/tokens/js/tokens.js.map +1 -1
- package/lib/neo4j-ds-styles.css +851 -3
- package/package.json +1 -1
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -6439,7 +6439,7 @@ button.ndl-avatar:focus-visible {
|
|
|
6439
6439
|
transition:transform var(--motion-transition-quick);
|
|
6440
6440
|
}
|
|
6441
6441
|
.ndl-dropdown-btn .ndl-dropdown-button-icon.ndl-dropdown-button-icon-open{
|
|
6442
|
-
transform:
|
|
6442
|
+
transform:scaleY(-1);
|
|
6443
6443
|
}
|
|
6444
6444
|
.ndl-dropdown-btn .ndl-dropdown-btn-leading-wrapper {
|
|
6445
6445
|
display:flex;
|
|
@@ -6492,10 +6492,10 @@ button.ndl-avatar:focus-visible {
|
|
|
6492
6492
|
outline-offset:-2px;
|
|
6493
6493
|
outline-color:var(--theme-color-primary-focus);
|
|
6494
6494
|
}
|
|
6495
|
-
.ndl-code:hover:not(.ndl-disabled) {
|
|
6495
|
+
.ndl-code:is(button):hover:not(.ndl-disabled) {
|
|
6496
6496
|
background-color:var(--theme-color-neutral-hover);
|
|
6497
6497
|
}
|
|
6498
|
-
.ndl-code:active:not(.ndl-disabled) {
|
|
6498
|
+
.ndl-code:is(button):active:not(.ndl-disabled) {
|
|
6499
6499
|
background-color:var(--theme-color-neutral-pressed);
|
|
6500
6500
|
}
|
|
6501
6501
|
.ndl-code.ndl-disabled {
|
|
@@ -8924,6 +8924,799 @@ button.ndl-avatar:focus-visible {
|
|
|
8924
8924
|
)
|
|
8925
8925
|
);
|
|
8926
8926
|
}
|
|
8927
|
+
.ndl-ai-prompt {
|
|
8928
|
+
display:flex;
|
|
8929
|
+
width:100%;
|
|
8930
|
+
flex-direction:column;
|
|
8931
|
+
align-items:center;
|
|
8932
|
+
gap:4px;
|
|
8933
|
+
|
|
8934
|
+
max-width:var(--content-extra-light-max-width);
|
|
8935
|
+
}
|
|
8936
|
+
.ndl-ai-prompt .ndl-ai-prompt-wrapper {
|
|
8937
|
+
width:100%;
|
|
8938
|
+
border-radius:14px;
|
|
8939
|
+
border-width:1px;
|
|
8940
|
+
border-style:solid;
|
|
8941
|
+
border-color:var(--theme-color-neutral-border-weak);
|
|
8942
|
+
background-color:var(--theme-color-primary-bg-weak);
|
|
8943
|
+
padding:3px;
|
|
8944
|
+
}
|
|
8945
|
+
.ndl-ai-prompt .ndl-ai-prompt-wrapper-inner {
|
|
8946
|
+
position:relative;
|
|
8947
|
+
display:flex;
|
|
8948
|
+
flex-direction:column;
|
|
8949
|
+
gap:12px;
|
|
8950
|
+
border-radius:12px;
|
|
8951
|
+
padding:6px;
|
|
8952
|
+
|
|
8953
|
+
border:solid 1px transparent;
|
|
8954
|
+
background:conic-gradient(var(--theme-color-neutral-bg-weak) 0 0) padding-box, linear-gradient(
|
|
8955
|
+
var(--palette-baltic-40),
|
|
8956
|
+
var(--theme-color-neutral-bg-weak)
|
|
8957
|
+
) border-box;
|
|
8958
|
+
}
|
|
8959
|
+
.ndl-ai-prompt .ndl-ai-prompt-textarea {
|
|
8960
|
+
box-sizing:border-box;
|
|
8961
|
+
resize:none;
|
|
8962
|
+
background-color:transparent;
|
|
8963
|
+
padding-left:6px;
|
|
8964
|
+
padding-right:6px;
|
|
8965
|
+
padding-top:6px;
|
|
8966
|
+
font:var(--typography-body-medium);
|
|
8967
|
+
letter-spacing:var(--typography-body-medium-letter-spacing);
|
|
8968
|
+
font-family:var(--typography-body-medium-font-family), sans-serif;
|
|
8969
|
+
}
|
|
8970
|
+
.ndl-ai-prompt .ndl-ai-prompt-textarea:focus {
|
|
8971
|
+
outline:2px solid transparent;
|
|
8972
|
+
outline-offset:2px;
|
|
8973
|
+
}
|
|
8974
|
+
.ndl-ai-prompt:has(.ndl-ai-prompt-textarea-above) .ndl-ai-prompt-textarea{
|
|
8975
|
+
padding-top:0px;
|
|
8976
|
+
}
|
|
8977
|
+
.ndl-ai-prompt .ndl-ai-prompt-textarea-above {
|
|
8978
|
+
display:flex;
|
|
8979
|
+
flex-direction:row;
|
|
8980
|
+
flex-wrap:wrap;
|
|
8981
|
+
gap:6px;
|
|
8982
|
+
max-height:calc(2 * 56px + 2 * var(--space-6));
|
|
8983
|
+
overflow-y:hidden;
|
|
8984
|
+
align-content:flex-start;
|
|
8985
|
+
min-height:0;
|
|
8986
|
+
}
|
|
8987
|
+
.ndl-ai-prompt .ndl-ai-prompt-textarea-above.ndl-can-scroll{
|
|
8988
|
+
overflow-y:auto;
|
|
8989
|
+
}
|
|
8990
|
+
.ndl-ai-prompt .ndl-ai-prompt-textarea-below {
|
|
8991
|
+
display:flex;
|
|
8992
|
+
align-items:flex-end;
|
|
8993
|
+
justify-content:space-between;
|
|
8994
|
+
gap:4px;
|
|
8995
|
+
}
|
|
8996
|
+
.ndl-ai-prompt .ndl-ai-prompt-textarea-below .ndl-ai-prompt-textarea-below-leading {
|
|
8997
|
+
display:flex;
|
|
8998
|
+
flex-wrap:wrap;
|
|
8999
|
+
align-items:center;
|
|
9000
|
+
gap:8px;
|
|
9001
|
+
}
|
|
9002
|
+
.ndl-ai-prompt .ndl-ai-prompt-footer {
|
|
9003
|
+
color:var(--theme-color-neutral-text-weaker);
|
|
9004
|
+
}
|
|
9005
|
+
.ndl-ai-prompt .ndl-ai-prompt-submit-button {
|
|
9006
|
+
position:relative;
|
|
9007
|
+
margin-left:auto;
|
|
9008
|
+
}
|
|
9009
|
+
.ndl-ai-prompt .ndl-ai-prompt-submit-button:not(:disabled):not(.ndl-loading) {
|
|
9010
|
+
background-color:var(--theme-color-primary-bg-weak);
|
|
9011
|
+
}
|
|
9012
|
+
.ndl-ai-prompt .ndl-ai-prompt-submit-button:not(:disabled):not(.ndl-loading):hover:not(.ndl-floating) {
|
|
9013
|
+
background-color:var(--theme-color-primary-hover-weak);
|
|
9014
|
+
}
|
|
9015
|
+
.ndl-ai-prompt .ndl-ai-prompt-submit-button:not(:disabled):not(.ndl-loading):active:not(.ndl-floating) {
|
|
9016
|
+
background-color:var(--theme-color-primary-pressed-weak);
|
|
9017
|
+
}
|
|
9018
|
+
.ndl-ai-prompt .ndl-ai-prompt-submit-button:not(:disabled):not(.ndl-loading) .ndl-icon-svg {
|
|
9019
|
+
color:var(--theme-color-primary-text);
|
|
9020
|
+
}
|
|
9021
|
+
.ndl-ai-prompt .ndl-ai-prompt-submit-button .ndl-icon-svg {
|
|
9022
|
+
transition-duration:250ms;
|
|
9023
|
+
transition-timing-function:cubic-bezier(0.42, 0, 0.58, 1);
|
|
9024
|
+
transition-property:opacity, transform;
|
|
9025
|
+
}
|
|
9026
|
+
.ndl-ai-prompt .ndl-ai-prompt-dropdown-button {
|
|
9027
|
+
border-color:transparent;
|
|
9028
|
+
background-color:var(--theme-color-neutral-bg-on-bg-weak);
|
|
9029
|
+
}
|
|
9030
|
+
.ndl-ai-prompt .ndl-ai-prompt-dropdown-button:hover {
|
|
9031
|
+
background-color:var(--theme-color-neutral-hover);
|
|
9032
|
+
}
|
|
9033
|
+
.ndl-ai-prompt .ndl-ai-prompt-dropdown-button:active {
|
|
9034
|
+
background-color:var(--theme-color-neutral-pressed);
|
|
9035
|
+
}
|
|
9036
|
+
.ndl-ai-prompt .ndl-ai-prompt-file-tag {
|
|
9037
|
+
display:flex;
|
|
9038
|
+
height:56px;
|
|
9039
|
+
width:100%;
|
|
9040
|
+
max-width:240px;
|
|
9041
|
+
align-items:flex-start;
|
|
9042
|
+
border-radius:12px;
|
|
9043
|
+
border-width:1px;
|
|
9044
|
+
border-color:var(--theme-color-neutral-border-strong);
|
|
9045
|
+
}
|
|
9046
|
+
.ndl-ai-prompt .ndl-ai-prompt-file-tag .ndl-ai-prompt-file-tag-content {
|
|
9047
|
+
display:flex;
|
|
9048
|
+
min-width:0px;
|
|
9049
|
+
flex-direction:column;
|
|
9050
|
+
padding:8px;
|
|
9051
|
+
font:var(--typography-body-medium);
|
|
9052
|
+
letter-spacing:var(--typography-body-medium-letter-spacing);
|
|
9053
|
+
font-family:var(--typography-body-medium-font-family), sans-serif;
|
|
9054
|
+
}
|
|
9055
|
+
.ndl-ai-prompt .ndl-ai-prompt-file-tag .ndl-ai-prompt-file-tag-content .ndl-ai-prompt-file-tag-content-title {
|
|
9056
|
+
overflow:hidden;
|
|
9057
|
+
text-overflow:ellipsis;
|
|
9058
|
+
white-space:nowrap;
|
|
9059
|
+
color:var(--theme-color-neutral-text-default);
|
|
9060
|
+
}
|
|
9061
|
+
.ndl-ai-prompt .ndl-ai-prompt-file-tag .ndl-ai-prompt-file-tag-content .ndl-ai-prompt-file-tag-content-type {
|
|
9062
|
+
color:var(--theme-color-neutral-text-weaker);
|
|
9063
|
+
}
|
|
9064
|
+
.ndl-ai-prompt .ndl-ai-prompt-file-tag .ndl-ai-prompt-file-tag-remove {
|
|
9065
|
+
margin-left:auto;
|
|
9066
|
+
margin-right:2px;
|
|
9067
|
+
margin-top:2px;
|
|
9068
|
+
flex-shrink:0;
|
|
9069
|
+
}
|
|
9070
|
+
.ndl-ai-prompt .ndl-ai-prompt-file-tag .ndl-ai-prompt-file-tag-leading {
|
|
9071
|
+
margin-left:8px;
|
|
9072
|
+
display:flex;
|
|
9073
|
+
width:40px;
|
|
9074
|
+
height:40px;
|
|
9075
|
+
flex-shrink:0;
|
|
9076
|
+
align-items:center;
|
|
9077
|
+
justify-content:center;
|
|
9078
|
+
align-self:center;
|
|
9079
|
+
border-radius:10px;
|
|
9080
|
+
background-color:var(--theme-color-neutral-bg-strong);
|
|
9081
|
+
padding:10px;
|
|
9082
|
+
color:var(--theme-color-neutral-icon);
|
|
9083
|
+
}
|
|
9084
|
+
.ndl-ai-prompt .ndl-ai-prompt-image-tag {
|
|
9085
|
+
position:relative;
|
|
9086
|
+
width:56px;
|
|
9087
|
+
height:56px;
|
|
9088
|
+
overflow:hidden;
|
|
9089
|
+
border-radius:12px;
|
|
9090
|
+
}
|
|
9091
|
+
.ndl-ai-prompt .ndl-ai-prompt-image-tag img {
|
|
9092
|
+
height:100%;
|
|
9093
|
+
width:100%;
|
|
9094
|
+
-o-object-fit:cover;
|
|
9095
|
+
object-fit:cover;
|
|
9096
|
+
-o-object-position:center;
|
|
9097
|
+
object-position:center;
|
|
9098
|
+
}
|
|
9099
|
+
.ndl-ai-prompt .ndl-ai-prompt-image-tag .ndl-ai-prompt-image-tag-loading-overlay {
|
|
9100
|
+
position:absolute;
|
|
9101
|
+
inset:0px;
|
|
9102
|
+
z-index:10;
|
|
9103
|
+
display:flex;
|
|
9104
|
+
align-items:center;
|
|
9105
|
+
justify-content:center;
|
|
9106
|
+
background-color:var(--theme-color-neutral-bg-default);
|
|
9107
|
+
opacity:0.8;
|
|
9108
|
+
}
|
|
9109
|
+
.ndl-ai-prompt .ndl-ai-prompt-image-tag .ndl-ai-prompt-image-tag-remove {
|
|
9110
|
+
position:absolute;
|
|
9111
|
+
top:2px;
|
|
9112
|
+
right:2px;
|
|
9113
|
+
}
|
|
9114
|
+
.ndl-ai-prompt .ndl-ai-prompt-image-tag .ndl-ai-prompt-image-tag-remove-wrapper {
|
|
9115
|
+
position:absolute;
|
|
9116
|
+
top:2px;
|
|
9117
|
+
right:2px;
|
|
9118
|
+
width:28px;
|
|
9119
|
+
height:28px;
|
|
9120
|
+
border-radius:6px;
|
|
9121
|
+
background-color:var(--theme-color-neutral-bg-default);
|
|
9122
|
+
opacity:0.7;
|
|
9123
|
+
}
|
|
9124
|
+
.ndl-ai-code-preview {
|
|
9125
|
+
display:flex;
|
|
9126
|
+
flex-direction:column;
|
|
9127
|
+
overflow:hidden;
|
|
9128
|
+
border-radius:8px;
|
|
9129
|
+
border-width:2px;
|
|
9130
|
+
border-color:var(--theme-color-neutral-border-weak);
|
|
9131
|
+
background-color:var(--theme-color-neutral-bg-on-bg-weak);
|
|
9132
|
+
}
|
|
9133
|
+
.ndl-ai-code-preview .ndl-ai-code-preview-header {
|
|
9134
|
+
display:flex;
|
|
9135
|
+
min-height:44px;
|
|
9136
|
+
align-items:center;
|
|
9137
|
+
justify-content:space-between;
|
|
9138
|
+
padding:12px;
|
|
9139
|
+
}
|
|
9140
|
+
.ndl-ai-code-preview .ndl-ai-code-preview-header .ndl-ai-code-preview-title {
|
|
9141
|
+
display:flex;
|
|
9142
|
+
align-items:center;
|
|
9143
|
+
gap:8px;
|
|
9144
|
+
}
|
|
9145
|
+
.ndl-ai-code-preview .ndl-ai-code-preview-header .ndl-ai-code-preview-title span {
|
|
9146
|
+
text-transform:uppercase;
|
|
9147
|
+
}
|
|
9148
|
+
.ndl-ai-code-preview .ndl-ai-code-preview-header .ndl-ai-code-preview-title .ndl-status-label {
|
|
9149
|
+
height:auto !important;
|
|
9150
|
+
padding-top:2px !important;
|
|
9151
|
+
padding-bottom:2px !important;
|
|
9152
|
+
}
|
|
9153
|
+
.ndl-ai-code-preview .ndl-ai-code-preview-header .ndl-ai-code-preview-actions {
|
|
9154
|
+
display:flex;
|
|
9155
|
+
align-items:center;
|
|
9156
|
+
gap:4px;
|
|
9157
|
+
}
|
|
9158
|
+
.ndl-ai-code-preview .ndl-ai-code-preview-content {
|
|
9159
|
+
position:relative;
|
|
9160
|
+
border-top-width:1px;
|
|
9161
|
+
border-color:var(--theme-color-neutral-border-weak);
|
|
9162
|
+
}
|
|
9163
|
+
.ndl-ai-code-preview .ndl-ai-code-preview-content .ndl-code-content-container {
|
|
9164
|
+
display:flex;
|
|
9165
|
+
flex-shrink:0;
|
|
9166
|
+
flex-grow:1;
|
|
9167
|
+
width:calc(100% - 4px);
|
|
9168
|
+
}
|
|
9169
|
+
.ndl-ai-code-preview .ndl-ai-code-preview-footer {
|
|
9170
|
+
display:flex;
|
|
9171
|
+
align-items:center;
|
|
9172
|
+
justify-content:space-between;
|
|
9173
|
+
border-top-width:1px;
|
|
9174
|
+
border-color:var(--theme-color-neutral-border-weak);
|
|
9175
|
+
padding-left:16px;
|
|
9176
|
+
padding-right:16px;
|
|
9177
|
+
padding-top:8px;
|
|
9178
|
+
padding-bottom:8px;
|
|
9179
|
+
}
|
|
9180
|
+
.ndl-ai-code-preview .ndl-ai-code-preview-footer.ndl-executed {
|
|
9181
|
+
justify-content:flex-end;
|
|
9182
|
+
}
|
|
9183
|
+
.ndl-ai-code-preview .ndl-ai-code-preview-footer .ndl-text {
|
|
9184
|
+
font-size:0.875rem;
|
|
9185
|
+
line-height:1.25rem;
|
|
9186
|
+
color:var(--theme-color-neutral-text-default);
|
|
9187
|
+
}
|
|
9188
|
+
.ndl-ai-code-preview .ndl-ai-code-preview-footer .ndl-success {
|
|
9189
|
+
display:flex;
|
|
9190
|
+
align-items:center;
|
|
9191
|
+
gap:8px;
|
|
9192
|
+
color:var(--theme-color-success-text);
|
|
9193
|
+
}
|
|
9194
|
+
.ndl-ai-code-preview .ndl-ai-code-preview-footer .ndl-success span {
|
|
9195
|
+
font-size:0.875rem;
|
|
9196
|
+
line-height:1.25rem;
|
|
9197
|
+
font-weight:500;
|
|
9198
|
+
}
|
|
9199
|
+
.ndl-ai-code-preview .ndl-ai-code-preview-footer .ndl-actions {
|
|
9200
|
+
display:flex;
|
|
9201
|
+
align-items:center;
|
|
9202
|
+
gap:8px;
|
|
9203
|
+
}
|
|
9204
|
+
.ndl-ai-code-preview .ndl-ai-code-preview-footer .ndl-actions .ndl-run-query-btn {
|
|
9205
|
+
cursor:pointer;
|
|
9206
|
+
border-style:none;
|
|
9207
|
+
background-color:transparent;
|
|
9208
|
+
padding:0px;
|
|
9209
|
+
}
|
|
9210
|
+
.ndl-ai-code-preview .ndl-ai-code-preview-footer .ndl-actions .ndl-run-query-btn .ndl-status-label:hover {
|
|
9211
|
+
opacity:0.9;
|
|
9212
|
+
}
|
|
9213
|
+
.ndl-ai-response ul {
|
|
9214
|
+
margin-top:16px;
|
|
9215
|
+
margin-bottom:16px;
|
|
9216
|
+
list-style-type:none;
|
|
9217
|
+
padding-left:20px;
|
|
9218
|
+
}
|
|
9219
|
+
.ndl-ai-response ul > li {
|
|
9220
|
+
position:relative;
|
|
9221
|
+
padding-left:16px;
|
|
9222
|
+
}
|
|
9223
|
+
.ndl-ai-response ul > li::before{
|
|
9224
|
+
content:'';
|
|
9225
|
+
position:absolute;
|
|
9226
|
+
left:0px;
|
|
9227
|
+
top:0.6em;
|
|
9228
|
+
height:6px;
|
|
9229
|
+
width:6px;
|
|
9230
|
+
background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6' viewBox='0 0 6 6' fill='none'%3E%3Ccircle cx='3' cy='3' r='2' fill='%23212325' stroke='%235E636A' stroke-width='2'/%3E%3C/svg%3E");
|
|
9231
|
+
background-repeat:no-repeat;
|
|
9232
|
+
background-size:contain;
|
|
9233
|
+
}
|
|
9234
|
+
.ndl-ai-response ol {
|
|
9235
|
+
margin-top:16px;
|
|
9236
|
+
margin-bottom:16px;
|
|
9237
|
+
list-style-type:none;
|
|
9238
|
+
padding-left:20px;
|
|
9239
|
+
}
|
|
9240
|
+
.ndl-ai-response ol > :not([hidden]) ~ :not([hidden]) {
|
|
9241
|
+
--tw-space-y-reverse:0;
|
|
9242
|
+
margin-top:calc(24px * calc(1 - var(--tw-space-y-reverse)));
|
|
9243
|
+
margin-bottom:calc(24px * var(--tw-space-y-reverse));
|
|
9244
|
+
}
|
|
9245
|
+
.ndl-ai-response ol{
|
|
9246
|
+
counter-reset:item;
|
|
9247
|
+
}
|
|
9248
|
+
.ndl-ai-response ol > li {
|
|
9249
|
+
position:relative;
|
|
9250
|
+
padding-left:32px;
|
|
9251
|
+
line-height:1.75rem;
|
|
9252
|
+
counter-increment:item;
|
|
9253
|
+
}
|
|
9254
|
+
.ndl-ai-response ol > li::before{
|
|
9255
|
+
content:counter(item);
|
|
9256
|
+
position:absolute;
|
|
9257
|
+
left:0px;
|
|
9258
|
+
top:0px;
|
|
9259
|
+
display:flex;
|
|
9260
|
+
align-items:center;
|
|
9261
|
+
justify-content:center;
|
|
9262
|
+
height:28px;
|
|
9263
|
+
padding-left:8px;
|
|
9264
|
+
padding-right:8px;
|
|
9265
|
+
border-radius:4px;
|
|
9266
|
+
border-width:1px;
|
|
9267
|
+
border-style:solid;
|
|
9268
|
+
border-color:var(--theme-color-neutral-border-weak);
|
|
9269
|
+
background-color:#81879014;
|
|
9270
|
+
font:var(--typography-body-medium);
|
|
9271
|
+
letter-spacing:var(--typography-body-medium-letter-spacing);
|
|
9272
|
+
font-family:var(--typography-body-medium-font-family), sans-serif;
|
|
9273
|
+
}
|
|
9274
|
+
.ndl-ai-response .ndl-ai-code-block {
|
|
9275
|
+
margin-top:16px;
|
|
9276
|
+
margin-bottom:16px;
|
|
9277
|
+
}
|
|
9278
|
+
.ndl-ai-response table {
|
|
9279
|
+
margin-top:16px;
|
|
9280
|
+
margin-bottom:16px;
|
|
9281
|
+
border-collapse:separate;
|
|
9282
|
+
--tw-border-spacing-x:0px;
|
|
9283
|
+
--tw-border-spacing-y:0px;
|
|
9284
|
+
border-spacing:var(--tw-border-spacing-x) var(--tw-border-spacing-y);
|
|
9285
|
+
}
|
|
9286
|
+
.ndl-ai-response table th {
|
|
9287
|
+
border-top-width:1px;
|
|
9288
|
+
border-bottom-width:1px;
|
|
9289
|
+
border-style:solid;
|
|
9290
|
+
border-color:var(--theme-color-neutral-border-weak);
|
|
9291
|
+
background-color:var(--theme-color-neutral-bg-default);
|
|
9292
|
+
padding-left:16px;
|
|
9293
|
+
padding-right:16px;
|
|
9294
|
+
padding-top:10px;
|
|
9295
|
+
padding-bottom:10px;
|
|
9296
|
+
color:var(--theme-color-neutral-text-weaker);
|
|
9297
|
+
}
|
|
9298
|
+
.ndl-ai-response table th:first-child {
|
|
9299
|
+
border-top-left-radius:8px;
|
|
9300
|
+
border-width:1px;
|
|
9301
|
+
border-style:solid;
|
|
9302
|
+
border-color:var(--theme-color-neutral-border-weak);
|
|
9303
|
+
}
|
|
9304
|
+
.ndl-ai-response table th:last-child {
|
|
9305
|
+
border-top-right-radius:8px;
|
|
9306
|
+
border-width:1px;
|
|
9307
|
+
border-style:solid;
|
|
9308
|
+
border-color:var(--theme-color-neutral-border-weak);
|
|
9309
|
+
}
|
|
9310
|
+
.ndl-ai-response table tr td {
|
|
9311
|
+
border-left-width:1px;
|
|
9312
|
+
border-top-width:1px;
|
|
9313
|
+
border-bottom-width:1px;
|
|
9314
|
+
border-style:solid;
|
|
9315
|
+
border-color:var(--theme-color-neutral-border-weak);
|
|
9316
|
+
background-color:var(--theme-color-neutral-bg-weak);
|
|
9317
|
+
padding-left:16px;
|
|
9318
|
+
padding-right:16px;
|
|
9319
|
+
padding-top:10px;
|
|
9320
|
+
padding-bottom:10px;
|
|
9321
|
+
color:var(--theme-color-neutral-text-default);
|
|
9322
|
+
}
|
|
9323
|
+
.ndl-ai-response table tr td:last-child {
|
|
9324
|
+
border-right-width:1px;
|
|
9325
|
+
border-style:solid;
|
|
9326
|
+
border-color:var(--theme-color-neutral-border-weak);
|
|
9327
|
+
}
|
|
9328
|
+
.ndl-ai-response table tr:last-child td:first-child {
|
|
9329
|
+
border-bottom-left-radius:8px;
|
|
9330
|
+
border-width:1px;
|
|
9331
|
+
border-style:solid;
|
|
9332
|
+
border-color:var(--theme-color-neutral-border-weak);
|
|
9333
|
+
}
|
|
9334
|
+
.ndl-ai-response table tr:last-child td:last-child {
|
|
9335
|
+
border-bottom-right-radius:8px;
|
|
9336
|
+
border-width:1px;
|
|
9337
|
+
border-style:solid;
|
|
9338
|
+
border-color:var(--theme-color-neutral-border-weak);
|
|
9339
|
+
}
|
|
9340
|
+
.ndl-ai-user-bubble {
|
|
9341
|
+
margin-left:auto;
|
|
9342
|
+
display:flex;
|
|
9343
|
+
width:-moz-fit-content;
|
|
9344
|
+
width:fit-content;
|
|
9345
|
+
flex-direction:row;
|
|
9346
|
+
align-items:flex-start;
|
|
9347
|
+
gap:12px;
|
|
9348
|
+
border-radius:12px;
|
|
9349
|
+
border-top-right-radius:4px;
|
|
9350
|
+
background-color:var(--theme-color-neutral-bg-strong);
|
|
9351
|
+
padding-top:8px;
|
|
9352
|
+
padding-bottom:8px;
|
|
9353
|
+
padding-left:12px;
|
|
9354
|
+
padding-right:8px;
|
|
9355
|
+
color:var(--theme-color-neutral-text-default);
|
|
9356
|
+
max-width:540px;
|
|
9357
|
+
}
|
|
9358
|
+
.ndl-ai-user-bubble .ndl-ai-user-bubble-avatar {
|
|
9359
|
+
margin-top:2px;
|
|
9360
|
+
margin-bottom:2px;
|
|
9361
|
+
flex-shrink:0;
|
|
9362
|
+
align-self:flex-start;
|
|
9363
|
+
}
|
|
9364
|
+
.ndl-ai-user-bubble .ndl-ai-user-bubble-content {
|
|
9365
|
+
margin-top:4px;
|
|
9366
|
+
margin-bottom:4px;
|
|
9367
|
+
}
|
|
9368
|
+
.ndl-ai-user-bubble .ndl-ai-user-bubble-trailing {
|
|
9369
|
+
margin-left:auto;
|
|
9370
|
+
display:flex;
|
|
9371
|
+
flex-shrink:0;
|
|
9372
|
+
align-items:center;
|
|
9373
|
+
justify-content:center;
|
|
9374
|
+
align-self:flex-start;
|
|
9375
|
+
}
|
|
9376
|
+
.ndl-ai-user-bubble .ndl-ai-user-bubble-trailing .ndl-icon-btn{
|
|
9377
|
+
--icon-button-size:28px;
|
|
9378
|
+
--icon-button-icon-size:var(--space-16);
|
|
9379
|
+
--icon-button-border-radius:6px;
|
|
9380
|
+
}
|
|
9381
|
+
.ndl-ai-more-files {
|
|
9382
|
+
display:flex;
|
|
9383
|
+
width:-moz-fit-content;
|
|
9384
|
+
width:fit-content;
|
|
9385
|
+
align-items:center;
|
|
9386
|
+
justify-content:center;
|
|
9387
|
+
border-radius:8px;
|
|
9388
|
+
border-width:1px;
|
|
9389
|
+
border-color:var(--theme-color-neutral-border-weak);
|
|
9390
|
+
background-color:var(--theme-color-neutral-bg-weak);
|
|
9391
|
+
padding-left:8px;
|
|
9392
|
+
padding-right:8px;
|
|
9393
|
+
padding-top:6px;
|
|
9394
|
+
padding-bottom:6px;
|
|
9395
|
+
color:var(--theme-color-neutral-text-default);
|
|
9396
|
+
font:var(--typography-body-medium);
|
|
9397
|
+
letter-spacing:var(--typography-body-medium-letter-spacing);
|
|
9398
|
+
font-family:var(--typography-body-medium-font-family), sans-serif;
|
|
9399
|
+
}
|
|
9400
|
+
.ndl-ai-more-files:hover {
|
|
9401
|
+
background-color:var(--theme-color-neutral-hover);
|
|
9402
|
+
}
|
|
9403
|
+
.ndl-ai-more-files:active {
|
|
9404
|
+
background-color:var(--theme-color-neutral-pressed);
|
|
9405
|
+
}
|
|
9406
|
+
.ndl-ai-more-files{
|
|
9407
|
+
min-width:var(--space-32);
|
|
9408
|
+
}
|
|
9409
|
+
.ndl-ai-more-files.ndl-active {
|
|
9410
|
+
background-color:var(--theme-color-neutral-pressed);
|
|
9411
|
+
}
|
|
9412
|
+
.ndl-ai-file-tag {
|
|
9413
|
+
display:flex;
|
|
9414
|
+
height:56px;
|
|
9415
|
+
width:100%;
|
|
9416
|
+
max-width:240px;
|
|
9417
|
+
align-items:flex-start;
|
|
9418
|
+
border-radius:12px;
|
|
9419
|
+
border-width:1px;
|
|
9420
|
+
border-color:var(--theme-color-neutral-border-strong);
|
|
9421
|
+
text-align:start;
|
|
9422
|
+
}
|
|
9423
|
+
.ndl-ai-file-tag .ndl-ai-file-tag-content {
|
|
9424
|
+
display:flex;
|
|
9425
|
+
min-width:0px;
|
|
9426
|
+
flex-direction:column;
|
|
9427
|
+
align-self:center;
|
|
9428
|
+
padding-left:8px;
|
|
9429
|
+
padding-right:8px;
|
|
9430
|
+
font:var(--typography-body-medium);
|
|
9431
|
+
letter-spacing:var(--typography-body-medium-letter-spacing);
|
|
9432
|
+
font-family:var(--typography-body-medium-font-family), sans-serif;
|
|
9433
|
+
}
|
|
9434
|
+
.ndl-ai-file-tag .ndl-ai-file-tag-content .ndl-ai-file-tag-content-title {
|
|
9435
|
+
overflow:hidden;
|
|
9436
|
+
text-overflow:ellipsis;
|
|
9437
|
+
white-space:nowrap;
|
|
9438
|
+
color:var(--theme-color-neutral-text-default);
|
|
9439
|
+
}
|
|
9440
|
+
.ndl-ai-file-tag .ndl-ai-file-tag-content .ndl-ai-file-tag-content-type {
|
|
9441
|
+
color:var(--theme-color-neutral-text-weaker);
|
|
9442
|
+
}
|
|
9443
|
+
.ndl-ai-file-tag .ndl-ai-file-tag-remove {
|
|
9444
|
+
margin-left:auto;
|
|
9445
|
+
margin-right:2px;
|
|
9446
|
+
margin-top:2px;
|
|
9447
|
+
flex-shrink:0;
|
|
9448
|
+
}
|
|
9449
|
+
.ndl-ai-file-tag .ndl-ai-file-tag-leading {
|
|
9450
|
+
margin-left:8px;
|
|
9451
|
+
display:flex;
|
|
9452
|
+
width:40px;
|
|
9453
|
+
height:40px;
|
|
9454
|
+
flex-shrink:0;
|
|
9455
|
+
align-items:center;
|
|
9456
|
+
justify-content:center;
|
|
9457
|
+
align-self:center;
|
|
9458
|
+
border-radius:10px;
|
|
9459
|
+
background-color:var(--theme-color-neutral-bg-strong);
|
|
9460
|
+
padding:10px;
|
|
9461
|
+
color:var(--theme-color-neutral-icon);
|
|
9462
|
+
}
|
|
9463
|
+
.ndl-ai-file-tag .ndl-ai-file-tag-leading .ndl-icon-svg {
|
|
9464
|
+
width:20px;
|
|
9465
|
+
height:20px;
|
|
9466
|
+
}
|
|
9467
|
+
.ndl-ai-image-tag {
|
|
9468
|
+
position:relative;
|
|
9469
|
+
width:56px;
|
|
9470
|
+
height:56px;
|
|
9471
|
+
overflow:hidden;
|
|
9472
|
+
border-radius:12px;
|
|
9473
|
+
}
|
|
9474
|
+
.ndl-ai-image-tag img {
|
|
9475
|
+
height:100%;
|
|
9476
|
+
width:100%;
|
|
9477
|
+
-o-object-fit:cover;
|
|
9478
|
+
object-fit:cover;
|
|
9479
|
+
-o-object-position:center;
|
|
9480
|
+
object-position:center;
|
|
9481
|
+
}
|
|
9482
|
+
.ndl-ai-image-tag .ndl-ai-image-tag-loading-overlay {
|
|
9483
|
+
position:absolute;
|
|
9484
|
+
inset:0px;
|
|
9485
|
+
z-index:10;
|
|
9486
|
+
display:flex;
|
|
9487
|
+
align-items:center;
|
|
9488
|
+
justify-content:center;
|
|
9489
|
+
background-color:var(--theme-color-neutral-bg-default);
|
|
9490
|
+
opacity:0.6;
|
|
9491
|
+
}
|
|
9492
|
+
.ndl-ai-image-tag .ndl-ai-image-tag-remove {
|
|
9493
|
+
position:absolute;
|
|
9494
|
+
top:2px;
|
|
9495
|
+
right:2px;
|
|
9496
|
+
z-index:20;
|
|
9497
|
+
}
|
|
9498
|
+
.ndl-ai-image-tag .ndl-ai-image-tag-remove-wrapper {
|
|
9499
|
+
position:absolute;
|
|
9500
|
+
top:2px;
|
|
9501
|
+
right:2px;
|
|
9502
|
+
z-index:20;
|
|
9503
|
+
width:28px;
|
|
9504
|
+
height:28px;
|
|
9505
|
+
border-radius:6px;
|
|
9506
|
+
background-color:var(--theme-color-neutral-bg-default);
|
|
9507
|
+
opacity:0.8;
|
|
9508
|
+
}
|
|
9509
|
+
@property --ndl-ai-suggestion-angle{
|
|
9510
|
+
syntax:'<angle>';
|
|
9511
|
+
initial-value:0deg;
|
|
9512
|
+
inherits:false;
|
|
9513
|
+
}
|
|
9514
|
+
.ndl-ai-suggestion {
|
|
9515
|
+
position:relative;
|
|
9516
|
+
height:-moz-fit-content;
|
|
9517
|
+
height:fit-content;
|
|
9518
|
+
width:-moz-fit-content;
|
|
9519
|
+
width:fit-content;
|
|
9520
|
+
overflow:hidden;
|
|
9521
|
+
border-radius:6px;
|
|
9522
|
+
border-width:1px;
|
|
9523
|
+
border-color:var(--theme-color-neutral-border-weak);
|
|
9524
|
+
background-color:var(--theme-color-neutral-bg-weak);
|
|
9525
|
+
text-align:start;
|
|
9526
|
+
color:var(--theme-color-neutral-text-default);
|
|
9527
|
+
font:var(--typography-body-medium);
|
|
9528
|
+
letter-spacing:var(--typography-body-medium-letter-spacing);
|
|
9529
|
+
font-family:var(--typography-body-medium-font-family), sans-serif;
|
|
9530
|
+
|
|
9531
|
+
--ndl-ai-suggestion-background:var(--theme-color-neutral-bg-weak);
|
|
9532
|
+
--ndl-ai-suggestion-padding-x:var(--space-8);
|
|
9533
|
+
--ndl-ai-suggestion-padding-y:var(--space-4);
|
|
9534
|
+
background:var(theme-color-neutral-bg-weak);
|
|
9535
|
+
}
|
|
9536
|
+
.ndl-ai-suggestion:not(.ndl-disabled):hover{
|
|
9537
|
+
--ndl-ai-suggestion-background:var(--theme-color-neutral-hover);
|
|
9538
|
+
}
|
|
9539
|
+
.ndl-ai-suggestion:not(.ndl-disabled):active{
|
|
9540
|
+
--ndl-ai-suggestion-background:var(--theme-color-neutral-pressed);
|
|
9541
|
+
}
|
|
9542
|
+
.ndl-ai-suggestion .ndl-ai-suggestion-inner {
|
|
9543
|
+
display:flex;
|
|
9544
|
+
align-items:center;
|
|
9545
|
+
gap:6px;
|
|
9546
|
+
padding-left:var(--ndl-ai-suggestion-padding-x);
|
|
9547
|
+
padding-right:var(--ndl-ai-suggestion-padding-x);
|
|
9548
|
+
padding-top:var(--ndl-ai-suggestion-padding-y);
|
|
9549
|
+
padding-bottom:var(--ndl-ai-suggestion-padding-y);
|
|
9550
|
+
background:var(--ndl-ai-suggestion-background);
|
|
9551
|
+
}
|
|
9552
|
+
.ndl-ai-suggestion.ndl-disabled {
|
|
9553
|
+
cursor:not-allowed;
|
|
9554
|
+
color:var(--theme-color-neutral-text-weakest);
|
|
9555
|
+
}
|
|
9556
|
+
.ndl-ai-suggestion.ndl-large{
|
|
9557
|
+
--ndl-ai-suggestion-padding-x:var(--space-12);
|
|
9558
|
+
--ndl-ai-suggestion-padding-y:var(--space-6);
|
|
9559
|
+
}
|
|
9560
|
+
.ndl-ai-suggestion.ndl-small{
|
|
9561
|
+
--ndl-ai-suggestion-padding-x:var(--space-8);
|
|
9562
|
+
--ndl-ai-suggestion-padding-y:var(--space-4);
|
|
9563
|
+
}
|
|
9564
|
+
.ndl-ai-suggestion .ndl-ai-suggestion-leading {
|
|
9565
|
+
width:16px;
|
|
9566
|
+
height:16px;
|
|
9567
|
+
flex-shrink:0;
|
|
9568
|
+
-webkit-user-select:none;
|
|
9569
|
+
-moz-user-select:none;
|
|
9570
|
+
user-select:none;
|
|
9571
|
+
color:var(--theme-color-neutral-icon);
|
|
9572
|
+
}
|
|
9573
|
+
.ndl-ai-suggestion.ndl-ai-suggestion-special{
|
|
9574
|
+
border-color:transparent;
|
|
9575
|
+
|
|
9576
|
+
background:linear-gradient(var(--theme-color-neutral-bg-weak)) padding-box, conic-gradient(
|
|
9577
|
+
from var(--ndl-ai-suggestion-angle),
|
|
9578
|
+
var(--theme-color-neutral-border-weak) 0%,
|
|
9579
|
+
var(--theme-color-primary-border-strong) 15%,
|
|
9580
|
+
var(--theme-color-primary-border-strong) 45%,
|
|
9581
|
+
var(--theme-color-neutral-border-weak) 60%
|
|
9582
|
+
) border-box;
|
|
9583
|
+
animation:ndl-ai-suggestion-border-rotate 3.5s linear infinite;
|
|
9584
|
+
}
|
|
9585
|
+
@keyframes ndl-ai-suggestion-border-rotate{
|
|
9586
|
+
0%{
|
|
9587
|
+
--ndl-ai-suggestion-angle:0deg;
|
|
9588
|
+
}
|
|
9589
|
+
100%{
|
|
9590
|
+
--ndl-ai-suggestion-angle:360deg;
|
|
9591
|
+
}
|
|
9592
|
+
}
|
|
9593
|
+
@keyframes ndl-ai-reasoning-text-wave{
|
|
9594
|
+
0%{
|
|
9595
|
+
background-position:100% 0;
|
|
9596
|
+
}
|
|
9597
|
+
100%{
|
|
9598
|
+
background-position:-100% 0;
|
|
9599
|
+
}
|
|
9600
|
+
}
|
|
9601
|
+
.ndl-ai-reasoning {
|
|
9602
|
+
overflow:hidden;
|
|
9603
|
+
border-radius:8px;
|
|
9604
|
+
border-width:1px;
|
|
9605
|
+
border-color:var(--theme-color-neutral-border-weak);
|
|
9606
|
+
background-color:var(--theme-color-neutral-bg-weak);
|
|
9607
|
+
color:var(--theme-color-neutral-text-default);
|
|
9608
|
+
}
|
|
9609
|
+
.ndl-ai-reasoning .ndl-ai-reasoning-header {
|
|
9610
|
+
display:flex;
|
|
9611
|
+
min-height:52px;
|
|
9612
|
+
align-items:center;
|
|
9613
|
+
gap:12px;
|
|
9614
|
+
padding:12px;
|
|
9615
|
+
}
|
|
9616
|
+
.ndl-ai-reasoning .ndl-ai-reasoning-header:focus-visible {
|
|
9617
|
+
outline-width:2px;
|
|
9618
|
+
outline-offset:0px;
|
|
9619
|
+
outline-color:var(--theme-color-primary-focus);
|
|
9620
|
+
}
|
|
9621
|
+
.ndl-ai-reasoning .ndl-ai-reasoning-header .ndl-ai-reasoning-header-text {
|
|
9622
|
+
color:var(--theme-color-neutral-text-default);
|
|
9623
|
+
|
|
9624
|
+
background:linear-gradient(
|
|
9625
|
+
90deg,
|
|
9626
|
+
var(--theme-color-neutral-text-default) 0%,
|
|
9627
|
+
var(--theme-color-neutral-text-default) 37%,
|
|
9628
|
+
var(--theme-color-neutral-bg-stronger) 50%,
|
|
9629
|
+
var(--theme-color-neutral-text-default) 63%,
|
|
9630
|
+
var(--theme-color-neutral-text-default) 100%
|
|
9631
|
+
);
|
|
9632
|
+
background-size:200% 100%;
|
|
9633
|
+
background-clip:text;
|
|
9634
|
+
-webkit-background-clip:text;
|
|
9635
|
+
color:transparent;
|
|
9636
|
+
animation:ndl-ai-reasoning-text-wave 2s linear infinite;
|
|
9637
|
+
}
|
|
9638
|
+
.ndl-ai-reasoning .ndl-ai-reasoning-expand-button {
|
|
9639
|
+
margin-left:auto;
|
|
9640
|
+
}
|
|
9641
|
+
.ndl-ai-reasoning .ndl-ai-reasoning-expand-button.ndl-expanded .ndl-icon-svg{
|
|
9642
|
+
transform:scaleY(-1);
|
|
9643
|
+
transition:transform var(--motion-transition-quick);
|
|
9644
|
+
}
|
|
9645
|
+
.ndl-ai-reasoning .ndl-ai-reasoning-content {
|
|
9646
|
+
display:grid;
|
|
9647
|
+
grid-template-rows:0fr;
|
|
9648
|
+
transition:grid-template-rows var(--motion-transition-quick);
|
|
9649
|
+
}
|
|
9650
|
+
.ndl-ai-reasoning .ndl-ai-reasoning-content.ndl-expanded{
|
|
9651
|
+
grid-template-rows:1fr;
|
|
9652
|
+
border-top-width:1px;
|
|
9653
|
+
border-style:solid;
|
|
9654
|
+
border-color:var(--theme-color-neutral-border-weak);
|
|
9655
|
+
}
|
|
9656
|
+
.ndl-ai-reasoning .ndl-ai-reasoning-content .ndl-ai-reasoning-content-inner {
|
|
9657
|
+
overflow:hidden;
|
|
9658
|
+
}
|
|
9659
|
+
.ndl-ai-reasoning .ndl-ai-reasoning-content .ndl-ai-reasoning-content-inner .ndl-ai-reasoning-content-inner-2 {
|
|
9660
|
+
display:flex;
|
|
9661
|
+
flex-direction:column;
|
|
9662
|
+
gap:12px;
|
|
9663
|
+
padding:12px;
|
|
9664
|
+
}
|
|
9665
|
+
.ndl-ai-reasoning .ndl-ai-reasoning-section {
|
|
9666
|
+
width:100%;
|
|
9667
|
+
}
|
|
9668
|
+
.ndl-ai-reasoning .ndl-ai-reasoning-section .ndl-ai-reasoning-section-header {
|
|
9669
|
+
display:flex;
|
|
9670
|
+
width:100%;
|
|
9671
|
+
align-items:center;
|
|
9672
|
+
gap:12px;
|
|
9673
|
+
}
|
|
9674
|
+
.ndl-ai-reasoning .ndl-ai-reasoning-section .ndl-ai-reasoning-section-header .ndl-ai-reasoning-section-leading {
|
|
9675
|
+
width:16px;
|
|
9676
|
+
height:16px;
|
|
9677
|
+
flex-shrink:0;
|
|
9678
|
+
color:var(--theme-color-neutral-icon);
|
|
9679
|
+
}
|
|
9680
|
+
.ndl-ai-reasoning .ndl-ai-reasoning-section .ndl-ai-reasoning-section-header .ndl-ai-reasoning-section-icon {
|
|
9681
|
+
margin-left:auto;
|
|
9682
|
+
flex-shrink:0;
|
|
9683
|
+
}
|
|
9684
|
+
.ndl-ai-reasoning .ndl-ai-reasoning-section .ndl-ai-reasoning-section-content {
|
|
9685
|
+
display:grid;
|
|
9686
|
+
grid-template-rows:0fr;
|
|
9687
|
+
transition:grid-template-rows var(--motion-transition-quick);
|
|
9688
|
+
}
|
|
9689
|
+
.ndl-ai-reasoning .ndl-ai-reasoning-section .ndl-ai-reasoning-section-content.ndl-expanded{
|
|
9690
|
+
grid-template-rows:1fr;
|
|
9691
|
+
}
|
|
9692
|
+
.ndl-ai-reasoning .ndl-ai-reasoning-section .ndl-ai-reasoning-section-content .ndl-ai-reasoning-section-content-inner {
|
|
9693
|
+
overflow:hidden;
|
|
9694
|
+
}
|
|
9695
|
+
.ndl-ai-reasoning .ndl-ai-reasoning-section .ndl-ai-reasoning-section-content .ndl-ai-reasoning-section-content-inner .ndl-ai-reasoning-section-content-inner-2 {
|
|
9696
|
+
display:flex;
|
|
9697
|
+
gap:12px;
|
|
9698
|
+
}
|
|
9699
|
+
.ndl-ai-reasoning .ndl-ai-reasoning-section .ndl-ai-reasoning-section-content .ndl-ai-reasoning-section-content-inner .ndl-ai-reasoning-section-content-inner-2 .ndl-ai-reasoning-section-content-line-container {
|
|
9700
|
+
display:flex;
|
|
9701
|
+
width:16px;
|
|
9702
|
+
flex-shrink:0;
|
|
9703
|
+
align-items:center;
|
|
9704
|
+
justify-content:center;
|
|
9705
|
+
}
|
|
9706
|
+
.ndl-ai-reasoning .ndl-ai-reasoning-section .ndl-ai-reasoning-section-content .ndl-ai-reasoning-section-content-inner .ndl-ai-reasoning-section-content-inner-2 .ndl-ai-reasoning-section-content-line-container .ndl-ai-reasoning-section-content-line {
|
|
9707
|
+
height:100%;
|
|
9708
|
+
width:1px;
|
|
9709
|
+
background-color:var(--theme-color-neutral-border-weak);
|
|
9710
|
+
}
|
|
9711
|
+
.ndl-ai-reasoning .ndl-ai-reasoning-section .ndl-ai-reasoning-section-content .ndl-ai-reasoning-section-content-inner .ndl-ai-reasoning-section-content-inner-2 .ndl-ai-reasoning-section-content-children {
|
|
9712
|
+
flex:1 1 0%;
|
|
9713
|
+
padding-top:12px;
|
|
9714
|
+
padding-bottom:12px;
|
|
9715
|
+
color:var(--theme-color-neutral-text-weak);
|
|
9716
|
+
font:var(--typography-body-small);
|
|
9717
|
+
letter-spacing:var(--typography-body-small-letter-spacing);
|
|
9718
|
+
font-family:var(--typography-body-small-font-family), sans-serif;
|
|
9719
|
+
}
|
|
8927
9720
|
.n-fixed {
|
|
8928
9721
|
position:fixed;
|
|
8929
9722
|
}
|
|
@@ -9005,12 +9798,18 @@ button.ndl-avatar:focus-visible {
|
|
|
9005
9798
|
.n-ml-7 {
|
|
9006
9799
|
margin-left:28px;
|
|
9007
9800
|
}
|
|
9801
|
+
.n-ml-auto {
|
|
9802
|
+
margin-left:auto;
|
|
9803
|
+
}
|
|
9008
9804
|
.n-mr-token-8 {
|
|
9009
9805
|
margin-right:8px;
|
|
9010
9806
|
}
|
|
9011
9807
|
.n-mt-5 {
|
|
9012
9808
|
margin-top:20px;
|
|
9013
9809
|
}
|
|
9810
|
+
.n-mt-auto {
|
|
9811
|
+
margin-top:auto;
|
|
9812
|
+
}
|
|
9014
9813
|
.n-mt-token-16 {
|
|
9015
9814
|
margin-top:16px;
|
|
9016
9815
|
}
|
|
@@ -9026,6 +9825,9 @@ button.ndl-avatar:focus-visible {
|
|
|
9026
9825
|
.n-flex {
|
|
9027
9826
|
display:flex;
|
|
9028
9827
|
}
|
|
9828
|
+
.n-inline-flex {
|
|
9829
|
+
display:inline-flex;
|
|
9830
|
+
}
|
|
9029
9831
|
.n-table {
|
|
9030
9832
|
display:table;
|
|
9031
9833
|
}
|
|
@@ -9054,6 +9856,10 @@ button.ndl-avatar:focus-visible {
|
|
|
9054
9856
|
width:100%;
|
|
9055
9857
|
height:100%;
|
|
9056
9858
|
}
|
|
9859
|
+
.n-size-token-16 {
|
|
9860
|
+
width:16px;
|
|
9861
|
+
height:16px;
|
|
9862
|
+
}
|
|
9057
9863
|
.n-size-token-24 {
|
|
9058
9864
|
width:24px;
|
|
9059
9865
|
height:24px;
|
|
@@ -9113,6 +9919,9 @@ button.ndl-avatar:focus-visible {
|
|
|
9113
9919
|
.n-h-full {
|
|
9114
9920
|
height:100%;
|
|
9115
9921
|
}
|
|
9922
|
+
.n-h-screen {
|
|
9923
|
+
height:100vh;
|
|
9924
|
+
}
|
|
9116
9925
|
.n-h-token-12 {
|
|
9117
9926
|
height:12px;
|
|
9118
9927
|
}
|
|
@@ -9152,6 +9961,9 @@ button.ndl-avatar:focus-visible {
|
|
|
9152
9961
|
.n-w-\[300px\] {
|
|
9153
9962
|
width:300px;
|
|
9154
9963
|
}
|
|
9964
|
+
.n-w-\[440px\] {
|
|
9965
|
+
width:440px;
|
|
9966
|
+
}
|
|
9155
9967
|
.n-w-fit {
|
|
9156
9968
|
width:-moz-fit-content;
|
|
9157
9969
|
width:fit-content;
|
|
@@ -9187,6 +9999,9 @@ button.ndl-avatar:focus-visible {
|
|
|
9187
9999
|
.n-max-w-\[600px\] {
|
|
9188
10000
|
max-width:600px;
|
|
9189
10001
|
}
|
|
10002
|
+
.n-max-w-\[85\%\] {
|
|
10003
|
+
max-width:85%;
|
|
10004
|
+
}
|
|
9190
10005
|
.n-max-w-max {
|
|
9191
10006
|
max-width:-moz-max-content;
|
|
9192
10007
|
max-width:max-content;
|
|
@@ -9200,6 +10015,9 @@ button.ndl-avatar:focus-visible {
|
|
|
9200
10015
|
.n-shrink-0 {
|
|
9201
10016
|
flex-shrink:0;
|
|
9202
10017
|
}
|
|
10018
|
+
.n-grow {
|
|
10019
|
+
flex-grow:1;
|
|
10020
|
+
}
|
|
9203
10021
|
.n-table-auto {
|
|
9204
10022
|
table-layout:auto;
|
|
9205
10023
|
}
|
|
@@ -9262,6 +10080,12 @@ button.ndl-avatar:focus-visible {
|
|
|
9262
10080
|
.n-items-center {
|
|
9263
10081
|
align-items:center;
|
|
9264
10082
|
}
|
|
10083
|
+
.n-justify-start {
|
|
10084
|
+
justify-content:flex-start;
|
|
10085
|
+
}
|
|
10086
|
+
.n-justify-end {
|
|
10087
|
+
justify-content:flex-end;
|
|
10088
|
+
}
|
|
9265
10089
|
.n-justify-center {
|
|
9266
10090
|
justify-content:center;
|
|
9267
10091
|
}
|
|
@@ -9274,6 +10098,12 @@ button.ndl-avatar:focus-visible {
|
|
|
9274
10098
|
.n-gap-1 {
|
|
9275
10099
|
gap:4px;
|
|
9276
10100
|
}
|
|
10101
|
+
.n-gap-1\.5 {
|
|
10102
|
+
gap:6px;
|
|
10103
|
+
}
|
|
10104
|
+
.n-gap-12 {
|
|
10105
|
+
gap:48px;
|
|
10106
|
+
}
|
|
9277
10107
|
.n-gap-2 {
|
|
9278
10108
|
gap:8px;
|
|
9279
10109
|
}
|
|
@@ -9304,6 +10134,9 @@ button.ndl-avatar:focus-visible {
|
|
|
9304
10134
|
.n-gap-token-48 {
|
|
9305
10135
|
gap:48px;
|
|
9306
10136
|
}
|
|
10137
|
+
.n-gap-token-6 {
|
|
10138
|
+
gap:6px;
|
|
10139
|
+
}
|
|
9307
10140
|
.n-gap-token-64 {
|
|
9308
10141
|
gap:64px;
|
|
9309
10142
|
}
|
|
@@ -9342,6 +10175,9 @@ button.ndl-avatar:focus-visible {
|
|
|
9342
10175
|
.n-overflow-hidden {
|
|
9343
10176
|
overflow:hidden;
|
|
9344
10177
|
}
|
|
10178
|
+
.n-overflow-y-auto {
|
|
10179
|
+
overflow-y:auto;
|
|
10180
|
+
}
|
|
9345
10181
|
.n-overflow-x-scroll {
|
|
9346
10182
|
overflow-x:scroll;
|
|
9347
10183
|
}
|
|
@@ -28416,6 +29252,12 @@ button.ndl-avatar:focus-visible {
|
|
|
28416
29252
|
.n-p-2 {
|
|
28417
29253
|
padding:8px;
|
|
28418
29254
|
}
|
|
29255
|
+
.n-p-3 {
|
|
29256
|
+
padding:12px;
|
|
29257
|
+
}
|
|
29258
|
+
.n-p-4 {
|
|
29259
|
+
padding:16px;
|
|
29260
|
+
}
|
|
28419
29261
|
.n-p-8 {
|
|
28420
29262
|
padding:32px;
|
|
28421
29263
|
}
|
|
@@ -28474,6 +29316,9 @@ button.ndl-avatar:focus-visible {
|
|
|
28474
29316
|
padding-top:8px;
|
|
28475
29317
|
padding-bottom:8px;
|
|
28476
29318
|
}
|
|
29319
|
+
.n-pb-4 {
|
|
29320
|
+
padding-bottom:16px;
|
|
29321
|
+
}
|
|
28477
29322
|
.n-pb-token-16 {
|
|
28478
29323
|
padding-bottom:16px;
|
|
28479
29324
|
}
|
|
@@ -28514,6 +29359,9 @@ button.ndl-avatar:focus-visible {
|
|
|
28514
29359
|
.n-font-light {
|
|
28515
29360
|
font-weight:300;
|
|
28516
29361
|
}
|
|
29362
|
+
.n-font-normal {
|
|
29363
|
+
font-weight:400;
|
|
29364
|
+
}
|
|
28517
29365
|
.n-font-semibold {
|
|
28518
29366
|
font-weight:600;
|
|
28519
29367
|
}
|