@fusioni/client-sdk 1.1.22 → 1.1.24
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 +3 -1
- package/dist/components/Message.d.ts.map +1 -1
- package/dist/components/MessageList.d.ts.map +1 -1
- package/dist/fusioni-sdk.umd.js +32 -6
- package/dist/fusioni-sdk.umd.js.map +1 -1
- package/dist/i18n/el.d.ts +3 -0
- package/dist/i18n/el.d.ts.map +1 -1
- package/dist/i18n/en.d.ts +3 -0
- package/dist/i18n/en.d.ts.map +1 -1
- package/dist/i18n/index.d.ts +6 -0
- package/dist/i18n/index.d.ts.map +1 -1
- package/dist/index.css +384 -338
- package/dist/index.d.ts +5 -1
- package/dist/index.esm.js +31 -5
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +31 -5
- package/dist/index.js.map +1 -1
- package/dist/services/SDKClientService.d.ts +1 -0
- package/dist/services/SDKClientService.d.ts.map +1 -1
- package/dist/test.d.ts.map +1 -1
- package/dist/types/index.d.ts +2 -1
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -46,14 +46,18 @@
|
|
|
46
46
|
--fusioni-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
|
47
47
|
--fusioni-shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
|
|
48
48
|
|
|
49
|
-
--fusioni-radius:
|
|
50
|
-
--fusioni-radius-md:
|
|
51
|
-
--fusioni-radius-lg:
|
|
52
|
-
--fusioni-radius-xl:
|
|
53
|
-
--fusioni-radius-2xl:
|
|
49
|
+
--fusioni-radius: 5.25px;
|
|
50
|
+
--fusioni-radius-md: 7px;
|
|
51
|
+
--fusioni-radius-lg: 10.5px;
|
|
52
|
+
--fusioni-radius-xl: 14px;
|
|
53
|
+
--fusioni-radius-2xl: 21px;
|
|
54
54
|
|
|
55
55
|
--fusioni-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
56
56
|
--fusioni-transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
|
|
57
|
+
|
|
58
|
+
/* Local rem base (14px). At build time all `rem` units in this file are converted
|
|
59
|
+
to fixed `px` values so host-page html font-size cannot shrink SDK typography. */
|
|
60
|
+
--fusioni-rem: 14px;
|
|
57
61
|
}
|
|
58
62
|
|
|
59
63
|
/* Fusioni Chat Widget - Override with custom primary color */
|
|
@@ -411,23 +415,23 @@
|
|
|
411
415
|
|
|
412
416
|
/* Floating button positioning */
|
|
413
417
|
.fusioni-floating-button-bottom-right {
|
|
414
|
-
bottom:
|
|
415
|
-
right:
|
|
418
|
+
bottom: 14px;
|
|
419
|
+
right: 14px;
|
|
416
420
|
}
|
|
417
421
|
|
|
418
422
|
.fusioni-floating-button-bottom-left {
|
|
419
|
-
bottom:
|
|
420
|
-
left:
|
|
423
|
+
bottom: 14px;
|
|
424
|
+
left: 14px;
|
|
421
425
|
}
|
|
422
426
|
|
|
423
427
|
.fusioni-floating-button-top-right {
|
|
424
|
-
top:
|
|
425
|
-
right:
|
|
428
|
+
top: 14px;
|
|
429
|
+
right: 14px;
|
|
426
430
|
}
|
|
427
431
|
|
|
428
432
|
.fusioni-floating-button-top-left {
|
|
429
|
-
top:
|
|
430
|
-
left:
|
|
433
|
+
top: 14px;
|
|
434
|
+
left: 14px;
|
|
431
435
|
}
|
|
432
436
|
|
|
433
437
|
/* Chat Panel */
|
|
@@ -435,8 +439,8 @@
|
|
|
435
439
|
position: fixed;
|
|
436
440
|
width: 480px;
|
|
437
441
|
height: 640px;
|
|
438
|
-
max-width: calc(100vw -
|
|
439
|
-
max-height: calc(100vh -
|
|
442
|
+
max-width: calc(100vw - 28px);
|
|
443
|
+
max-height: calc(100vh - 28px);
|
|
440
444
|
background: var(--fusioni-bg-primary);
|
|
441
445
|
border-radius: var(--fusioni-radius-2xl);
|
|
442
446
|
box-shadow: var(--fusioni-shadow-2xl);
|
|
@@ -468,23 +472,23 @@
|
|
|
468
472
|
|
|
469
473
|
/* Chat panel positioning */
|
|
470
474
|
.fusioni-chat-panel-bottom-right {
|
|
471
|
-
bottom:
|
|
472
|
-
right:
|
|
475
|
+
bottom: 70px;
|
|
476
|
+
right: 14px;
|
|
473
477
|
}
|
|
474
478
|
|
|
475
479
|
.fusioni-chat-panel-bottom-left {
|
|
476
|
-
bottom:
|
|
477
|
-
left:
|
|
480
|
+
bottom: 70px;
|
|
481
|
+
left: 14px;
|
|
478
482
|
}
|
|
479
483
|
|
|
480
484
|
.fusioni-chat-panel-top-right {
|
|
481
|
-
top:
|
|
482
|
-
right:
|
|
485
|
+
top: 70px;
|
|
486
|
+
right: 14px;
|
|
483
487
|
}
|
|
484
488
|
|
|
485
489
|
.fusioni-chat-panel-top-left {
|
|
486
|
-
top:
|
|
487
|
-
left:
|
|
490
|
+
top: 70px;
|
|
491
|
+
left: 14px;
|
|
488
492
|
}
|
|
489
493
|
|
|
490
494
|
/* Fullscreen mode */
|
|
@@ -582,7 +586,7 @@
|
|
|
582
586
|
}
|
|
583
587
|
|
|
584
588
|
.fusioni-conversation-header {
|
|
585
|
-
padding:
|
|
589
|
+
padding: 17.5px 14px;
|
|
586
590
|
border-bottom: 1px solid var(--fusioni-border-light);
|
|
587
591
|
display: flex;
|
|
588
592
|
align-items: center;
|
|
@@ -598,7 +602,7 @@
|
|
|
598
602
|
.fusioni-conversation-title {
|
|
599
603
|
display: flex;
|
|
600
604
|
align-items: center;
|
|
601
|
-
gap:
|
|
605
|
+
gap: 10.5px;
|
|
602
606
|
}
|
|
603
607
|
|
|
604
608
|
.fusioni-conversation-logo {
|
|
@@ -615,19 +619,19 @@
|
|
|
615
619
|
|
|
616
620
|
.fusioni-conversation-info h3 {
|
|
617
621
|
margin: 0;
|
|
618
|
-
font-size:
|
|
622
|
+
font-size: 14px;
|
|
619
623
|
font-weight: 600;
|
|
620
624
|
color: var(--fusioni-text-primary);
|
|
621
625
|
}
|
|
622
626
|
|
|
623
627
|
.fusioni-conversation-info p {
|
|
624
628
|
margin: 0;
|
|
625
|
-
font-size:
|
|
629
|
+
font-size: 10.5px;
|
|
626
630
|
color: var(--fusioni-text-secondary);
|
|
627
631
|
}
|
|
628
632
|
|
|
629
633
|
.fusioni-conversation-search {
|
|
630
|
-
padding:
|
|
634
|
+
padding: 14px;
|
|
631
635
|
}
|
|
632
636
|
|
|
633
637
|
.fusioni-search-input {
|
|
@@ -636,12 +640,12 @@
|
|
|
636
640
|
|
|
637
641
|
.fusioni-input {
|
|
638
642
|
width: 100%;
|
|
639
|
-
padding:
|
|
643
|
+
padding: 10.5px 35px 10.5px 14px;
|
|
640
644
|
border: 1px solid var(--fusioni-border-light);
|
|
641
645
|
border-radius: var(--fusioni-radius-lg);
|
|
642
646
|
background: var(--fusioni-bg-secondary);
|
|
643
647
|
color: var(--fusioni-text-primary);
|
|
644
|
-
font-size:
|
|
648
|
+
font-size: 12.25px;
|
|
645
649
|
transition: var(--fusioni-transition);
|
|
646
650
|
box-shadow: var(--fusioni-shadow);
|
|
647
651
|
}
|
|
@@ -664,7 +668,7 @@
|
|
|
664
668
|
|
|
665
669
|
.fusioni-search-icon {
|
|
666
670
|
position: absolute;
|
|
667
|
-
right:
|
|
671
|
+
right: 10.5px;
|
|
668
672
|
top: 50%;
|
|
669
673
|
transform: translateY(-50%);
|
|
670
674
|
color: var(--fusioni-text-muted);
|
|
@@ -674,23 +678,23 @@
|
|
|
674
678
|
.fusioni-divider {
|
|
675
679
|
height: 1px;
|
|
676
680
|
background: var(--fusioni-border);
|
|
677
|
-
margin: 0
|
|
681
|
+
margin: 0 14px;
|
|
678
682
|
}
|
|
679
683
|
|
|
680
684
|
.fusioni-conversations {
|
|
681
685
|
flex: 1;
|
|
682
686
|
overflow-y: auto;
|
|
683
|
-
padding:
|
|
687
|
+
padding: 7px;
|
|
684
688
|
}
|
|
685
689
|
|
|
686
690
|
.fusioni-conversation-item {
|
|
687
691
|
position: relative;
|
|
688
|
-
padding:
|
|
689
|
-
padding-right:
|
|
692
|
+
padding: 14px;
|
|
693
|
+
padding-right: 7px;
|
|
690
694
|
border-radius: var(--fusioni-radius-lg);
|
|
691
695
|
cursor: pointer;
|
|
692
696
|
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
|
|
693
|
-
margin-bottom:
|
|
697
|
+
margin-bottom: 7px;
|
|
694
698
|
background: var(--fusioni-bg-primary);
|
|
695
699
|
border: 1px solid var(--fusioni-border-light);
|
|
696
700
|
box-shadow: var(--fusioni-shadow);
|
|
@@ -845,14 +849,14 @@
|
|
|
845
849
|
z-index: 2;
|
|
846
850
|
display: flex;
|
|
847
851
|
flex-direction: column;
|
|
848
|
-
gap:
|
|
852
|
+
gap: 7px;
|
|
849
853
|
}
|
|
850
854
|
|
|
851
855
|
.fusioni-conversation-main {
|
|
852
856
|
display: flex;
|
|
853
857
|
align-items: flex-start;
|
|
854
858
|
justify-content: space-between;
|
|
855
|
-
gap:
|
|
859
|
+
gap: 14px;
|
|
856
860
|
}
|
|
857
861
|
|
|
858
862
|
.fusioni-conversation-title-section {
|
|
@@ -860,18 +864,18 @@
|
|
|
860
864
|
min-width: 0;
|
|
861
865
|
display: flex;
|
|
862
866
|
flex-direction: column;
|
|
863
|
-
gap:
|
|
867
|
+
gap: 7px;
|
|
864
868
|
}
|
|
865
869
|
|
|
866
870
|
.fusioni-conversation-title-text {
|
|
867
871
|
margin: 0;
|
|
868
|
-
font-size:
|
|
872
|
+
font-size: 13.299999999999999px;
|
|
869
873
|
font-weight: 600;
|
|
870
874
|
line-height: 1.3;
|
|
871
875
|
color: var(--fusioni-text-primary);
|
|
872
876
|
display: flex;
|
|
873
877
|
align-items: center;
|
|
874
|
-
gap:
|
|
878
|
+
gap: 7px;
|
|
875
879
|
flex-wrap: wrap;
|
|
876
880
|
word-break: break-word;
|
|
877
881
|
}
|
|
@@ -884,15 +888,15 @@
|
|
|
884
888
|
display: flex;
|
|
885
889
|
align-items: center;
|
|
886
890
|
justify-content: space-between;
|
|
887
|
-
gap:
|
|
888
|
-
margin-top:
|
|
891
|
+
gap: 10.5px;
|
|
892
|
+
margin-top: 3.5px;
|
|
889
893
|
}
|
|
890
894
|
|
|
891
895
|
.fusioni-conversation-status {
|
|
892
896
|
display: flex;
|
|
893
897
|
align-items: center;
|
|
894
|
-
gap:
|
|
895
|
-
font-size:
|
|
898
|
+
gap: 5.25px;
|
|
899
|
+
font-size: 10.5px;
|
|
896
900
|
color: var(--fusioni-text-muted);
|
|
897
901
|
font-weight: 500;
|
|
898
902
|
}
|
|
@@ -920,9 +924,9 @@
|
|
|
920
924
|
align-items: center;
|
|
921
925
|
background: linear-gradient(135deg, var(--fusioni-warning) 0%, #f59e0b 100%);
|
|
922
926
|
color: white;
|
|
923
|
-
padding:
|
|
927
|
+
padding: 3.5px 7px;
|
|
924
928
|
border-radius: var(--fusioni-radius);
|
|
925
|
-
font-size:
|
|
929
|
+
font-size: 8.75px;
|
|
926
930
|
font-weight: 700;
|
|
927
931
|
text-transform: uppercase;
|
|
928
932
|
letter-spacing: 0.05em;
|
|
@@ -949,9 +953,9 @@
|
|
|
949
953
|
|
|
950
954
|
.fusioni-conversation-actions {
|
|
951
955
|
display: flex;
|
|
952
|
-
gap:
|
|
956
|
+
gap: 3.5px;
|
|
953
957
|
align-items: flex-start;
|
|
954
|
-
margin-top:
|
|
958
|
+
margin-top: 3.5px;
|
|
955
959
|
}
|
|
956
960
|
|
|
957
961
|
.fusioni-delete-btn {
|
|
@@ -979,7 +983,7 @@
|
|
|
979
983
|
|
|
980
984
|
.fusioni-conversation-date {
|
|
981
985
|
margin: 0;
|
|
982
|
-
font-size:
|
|
986
|
+
font-size: 10.5px;
|
|
983
987
|
color: var(--fusioni-text-muted);
|
|
984
988
|
font-weight: 500;
|
|
985
989
|
}
|
|
@@ -1033,7 +1037,7 @@
|
|
|
1033
1037
|
}
|
|
1034
1038
|
|
|
1035
1039
|
.fusioni-empty-state {
|
|
1036
|
-
padding:
|
|
1040
|
+
padding: 28px;
|
|
1037
1041
|
text-align: center;
|
|
1038
1042
|
color: var(--fusioni-text-muted);
|
|
1039
1043
|
}
|
|
@@ -1042,7 +1046,7 @@
|
|
|
1042
1046
|
.fusioni-message-list {
|
|
1043
1047
|
flex: 1;
|
|
1044
1048
|
overflow-y: auto;
|
|
1045
|
-
padding:
|
|
1049
|
+
padding: 14px;
|
|
1046
1050
|
background: var(--fusioni-bg-primary);
|
|
1047
1051
|
display: flex;
|
|
1048
1052
|
flex-direction: column;
|
|
@@ -1051,7 +1055,7 @@
|
|
|
1051
1055
|
.fusioni-messages-container {
|
|
1052
1056
|
display: flex;
|
|
1053
1057
|
flex-direction: column;
|
|
1054
|
-
gap:
|
|
1058
|
+
gap: 14px;
|
|
1055
1059
|
height: 100%;
|
|
1056
1060
|
}
|
|
1057
1061
|
|
|
@@ -1075,14 +1079,14 @@
|
|
|
1075
1079
|
.fusioni-empty-icon {
|
|
1076
1080
|
width: 64px;
|
|
1077
1081
|
height: 64px;
|
|
1078
|
-
margin: 0 auto
|
|
1082
|
+
margin: 0 auto 14px;
|
|
1079
1083
|
color: var(--fusioni-text-muted);
|
|
1080
1084
|
}
|
|
1081
1085
|
|
|
1082
1086
|
.fusioni-messages {
|
|
1083
1087
|
display: flex;
|
|
1084
1088
|
flex-direction: column;
|
|
1085
|
-
gap:
|
|
1089
|
+
gap: 14px;
|
|
1086
1090
|
}
|
|
1087
1091
|
|
|
1088
1092
|
.fusioni-message-wrapper {
|
|
@@ -1125,26 +1129,26 @@
|
|
|
1125
1129
|
.fusioni-message-header {
|
|
1126
1130
|
display: flex;
|
|
1127
1131
|
align-items: center;
|
|
1128
|
-
gap:
|
|
1129
|
-
margin-bottom:
|
|
1132
|
+
gap: 7px;
|
|
1133
|
+
margin-bottom: 3.5px;
|
|
1130
1134
|
}
|
|
1131
1135
|
|
|
1132
1136
|
.fusioni-message-footer {
|
|
1133
1137
|
display: flex;
|
|
1134
1138
|
align-items: center;
|
|
1135
|
-
gap:
|
|
1136
|
-
margin-bottom:
|
|
1139
|
+
gap: 7px;
|
|
1140
|
+
margin-bottom: 3.5px;
|
|
1137
1141
|
}
|
|
1138
1142
|
|
|
1139
1143
|
.fusioni-message-role {
|
|
1140
|
-
font-size:
|
|
1144
|
+
font-size: 10.5px;
|
|
1141
1145
|
font-weight: 500;
|
|
1142
1146
|
margin-left: 5px;
|
|
1143
1147
|
color: var(--fusioni-text-secondary);
|
|
1144
1148
|
}
|
|
1145
1149
|
|
|
1146
1150
|
.fusioni-message-time {
|
|
1147
|
-
font-size:
|
|
1151
|
+
font-size: 10.5px;
|
|
1148
1152
|
color: var(--fusioni-text-muted);
|
|
1149
1153
|
}
|
|
1150
1154
|
|
|
@@ -1153,7 +1157,7 @@
|
|
|
1153
1157
|
}
|
|
1154
1158
|
|
|
1155
1159
|
.fusioni-message-bubble {
|
|
1156
|
-
padding:
|
|
1160
|
+
padding: 10.5px 14px;
|
|
1157
1161
|
border-radius: var(--fusioni-radius-lg);
|
|
1158
1162
|
max-width: 100%;
|
|
1159
1163
|
word-wrap: break-word;
|
|
@@ -1169,13 +1173,13 @@
|
|
|
1169
1173
|
.fusioni-message-user {
|
|
1170
1174
|
background: var(--fusioni-primary);
|
|
1171
1175
|
color: white;
|
|
1172
|
-
border-bottom-right-radius:
|
|
1176
|
+
border-bottom-right-radius: 3.5px;
|
|
1173
1177
|
}
|
|
1174
1178
|
|
|
1175
1179
|
.fusioni-message-assistant {
|
|
1176
1180
|
background: var(--fusioni-bg-secondary);
|
|
1177
1181
|
color: var(--fusioni-text-primary);
|
|
1178
|
-
border-bottom-left-radius:
|
|
1182
|
+
border-bottom-left-radius: 3.5px;
|
|
1179
1183
|
}
|
|
1180
1184
|
|
|
1181
1185
|
/* Bubble shell is a no-op while streaming UI lives in MessageList (MessageStreamLoading sibling). */
|
|
@@ -1208,25 +1212,25 @@
|
|
|
1208
1212
|
.fusioni-message-text h1,
|
|
1209
1213
|
.fusioni-message-text h2,
|
|
1210
1214
|
.fusioni-message-text h3 {
|
|
1211
|
-
margin:
|
|
1215
|
+
margin: 7px 0 3.5px;
|
|
1212
1216
|
line-height: 1.25;
|
|
1213
1217
|
}
|
|
1214
1218
|
|
|
1215
1219
|
.fusioni-message-text p {
|
|
1216
|
-
margin:
|
|
1220
|
+
margin: 7px 0;
|
|
1217
1221
|
}
|
|
1218
1222
|
|
|
1219
1223
|
.fusioni-message-text ul,
|
|
1220
1224
|
.fusioni-message-text ol {
|
|
1221
|
-
margin:
|
|
1222
|
-
padding-left:
|
|
1225
|
+
margin: 7px 0;
|
|
1226
|
+
padding-left: 14px;
|
|
1223
1227
|
list-style-position: outside;
|
|
1224
1228
|
}
|
|
1225
1229
|
|
|
1226
1230
|
.fusioni-message-text code {
|
|
1227
1231
|
background: var(--fusioni-bg-tertiary);
|
|
1228
|
-
padding:
|
|
1229
|
-
border-radius:
|
|
1232
|
+
padding: 1.75px 3.5px;
|
|
1233
|
+
border-radius: 3.5px;
|
|
1230
1234
|
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
|
|
1231
1235
|
font-size: 0.875em;
|
|
1232
1236
|
}
|
|
@@ -1234,10 +1238,10 @@
|
|
|
1234
1238
|
.fusioni-message-text pre {
|
|
1235
1239
|
background: var(--fusioni-bg-dark);
|
|
1236
1240
|
color: var(--fusioni-text-light);
|
|
1237
|
-
padding:
|
|
1241
|
+
padding: 10.5px;
|
|
1238
1242
|
border-radius: var(--fusioni-radius);
|
|
1239
1243
|
overflow-x: auto;
|
|
1240
|
-
margin:
|
|
1244
|
+
margin: 7px 0;
|
|
1241
1245
|
}
|
|
1242
1246
|
|
|
1243
1247
|
.fusioni-message-text a {
|
|
@@ -1251,15 +1255,15 @@
|
|
|
1251
1255
|
overflow: hidden;
|
|
1252
1256
|
border-collapse: separate;
|
|
1253
1257
|
border-spacing: 0;
|
|
1254
|
-
font-size:
|
|
1255
|
-
line-height:
|
|
1258
|
+
font-size: 12.25px;
|
|
1259
|
+
line-height: 17.5px;
|
|
1256
1260
|
text-align: left;
|
|
1257
1261
|
color: #374151;
|
|
1258
1262
|
background-color: #ffffff;
|
|
1259
1263
|
border: 1px solid #e5e7eb;
|
|
1260
|
-
border-radius:
|
|
1264
|
+
border-radius: 7px;
|
|
1261
1265
|
box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
1262
|
-
margin:
|
|
1266
|
+
margin: 17.5px 0;
|
|
1263
1267
|
}
|
|
1264
1268
|
|
|
1265
1269
|
[dir="rtl"] .fusioni-message-text table {
|
|
@@ -1267,9 +1271,9 @@
|
|
|
1267
1271
|
}
|
|
1268
1272
|
|
|
1269
1273
|
.fusioni-message-text table th {
|
|
1270
|
-
padding:
|
|
1271
|
-
font-size:
|
|
1272
|
-
line-height:
|
|
1274
|
+
padding: 14px;
|
|
1275
|
+
font-size: 10.5px;
|
|
1276
|
+
line-height: 14px;
|
|
1273
1277
|
font-weight: 600;
|
|
1274
1278
|
letter-spacing: 0.05em;
|
|
1275
1279
|
text-transform: uppercase;
|
|
@@ -1279,7 +1283,7 @@
|
|
|
1279
1283
|
}
|
|
1280
1284
|
|
|
1281
1285
|
.fusioni-message-text table td {
|
|
1282
|
-
padding:
|
|
1286
|
+
padding: 14px;
|
|
1283
1287
|
vertical-align: top;
|
|
1284
1288
|
border-bottom: 1px solid #f3f4f6;
|
|
1285
1289
|
}
|
|
@@ -1317,11 +1321,11 @@
|
|
|
1317
1321
|
}
|
|
1318
1322
|
|
|
1319
1323
|
.fusioni-message-extra {
|
|
1320
|
-
margin-top:
|
|
1324
|
+
margin-top: 7px;
|
|
1321
1325
|
}
|
|
1322
1326
|
|
|
1323
1327
|
.fusioni-message-image {
|
|
1324
|
-
margin-top:
|
|
1328
|
+
margin-top: 7px;
|
|
1325
1329
|
}
|
|
1326
1330
|
|
|
1327
1331
|
.fusioni-image {
|
|
@@ -1332,8 +1336,8 @@
|
|
|
1332
1336
|
}
|
|
1333
1337
|
|
|
1334
1338
|
.fusioni-message-audio {
|
|
1335
|
-
margin-top:
|
|
1336
|
-
padding:
|
|
1339
|
+
margin-top: 7px;
|
|
1340
|
+
padding: 10.5px;
|
|
1337
1341
|
background: var(--fusioni-bg-tertiary);
|
|
1338
1342
|
border-radius: var(--fusioni-radius);
|
|
1339
1343
|
}
|
|
@@ -1341,14 +1345,14 @@
|
|
|
1341
1345
|
.fusioni-audio-header {
|
|
1342
1346
|
display: flex;
|
|
1343
1347
|
align-items: center;
|
|
1344
|
-
gap:
|
|
1345
|
-
margin-bottom:
|
|
1346
|
-
font-size:
|
|
1348
|
+
gap: 7px;
|
|
1349
|
+
margin-bottom: 7px;
|
|
1350
|
+
font-size: 12.25px;
|
|
1347
1351
|
color: var(--fusioni-text-secondary);
|
|
1348
1352
|
}
|
|
1349
1353
|
|
|
1350
1354
|
.fusioni-audio-duration {
|
|
1351
|
-
font-size:
|
|
1355
|
+
font-size: 10.5px;
|
|
1352
1356
|
color: var(--fusioni-text-muted);
|
|
1353
1357
|
}
|
|
1354
1358
|
|
|
@@ -1358,11 +1362,11 @@
|
|
|
1358
1362
|
}
|
|
1359
1363
|
|
|
1360
1364
|
.fusioni-message-map {
|
|
1361
|
-
margin-top:
|
|
1365
|
+
margin-top: 7px;
|
|
1362
1366
|
}
|
|
1363
1367
|
|
|
1364
1368
|
.fusioni-map-placeholder {
|
|
1365
|
-
padding:
|
|
1369
|
+
padding: 14px;
|
|
1366
1370
|
background: var(--fusioni-bg-tertiary);
|
|
1367
1371
|
border-radius: var(--fusioni-radius);
|
|
1368
1372
|
text-align: center;
|
|
@@ -1371,7 +1375,7 @@
|
|
|
1371
1375
|
|
|
1372
1376
|
/* Map Component Styles */
|
|
1373
1377
|
.fusioni-map-container {
|
|
1374
|
-
margin-top:
|
|
1378
|
+
margin-top: 7px;
|
|
1375
1379
|
border-radius: var(--fusioni-radius);
|
|
1376
1380
|
overflow: hidden;
|
|
1377
1381
|
box-shadow: var(--fusioni-shadow);
|
|
@@ -1403,7 +1407,7 @@
|
|
|
1403
1407
|
display: flex;
|
|
1404
1408
|
align-items: center;
|
|
1405
1409
|
justify-content: center;
|
|
1406
|
-
padding:
|
|
1410
|
+
padding: 28px;
|
|
1407
1411
|
background: var(--fusioni-bg-tertiary);
|
|
1408
1412
|
border-radius: var(--fusioni-radius);
|
|
1409
1413
|
border: 1px solid var(--fusioni-border);
|
|
@@ -1413,7 +1417,7 @@
|
|
|
1413
1417
|
display: flex;
|
|
1414
1418
|
flex-direction: column;
|
|
1415
1419
|
align-items: center;
|
|
1416
|
-
gap:
|
|
1420
|
+
gap: 10.5px;
|
|
1417
1421
|
color: var(--fusioni-text-secondary);
|
|
1418
1422
|
}
|
|
1419
1423
|
|
|
@@ -1430,7 +1434,7 @@
|
|
|
1430
1434
|
display: flex;
|
|
1431
1435
|
align-items: center;
|
|
1432
1436
|
justify-content: center;
|
|
1433
|
-
padding:
|
|
1437
|
+
padding: 14px;
|
|
1434
1438
|
background: rgba(220, 38, 38, 0.05);
|
|
1435
1439
|
border: 1px solid rgba(220, 38, 38, 0.2);
|
|
1436
1440
|
border-radius: var(--fusioni-radius);
|
|
@@ -1440,8 +1444,8 @@
|
|
|
1440
1444
|
.fusioni-map-error-content {
|
|
1441
1445
|
display: flex;
|
|
1442
1446
|
align-items: center;
|
|
1443
|
-
gap:
|
|
1444
|
-
font-size:
|
|
1447
|
+
gap: 7px;
|
|
1448
|
+
font-size: 12.25px;
|
|
1445
1449
|
}
|
|
1446
1450
|
|
|
1447
1451
|
/* Dark theme adjustments for map */
|
|
@@ -1460,17 +1464,59 @@
|
|
|
1460
1464
|
}
|
|
1461
1465
|
|
|
1462
1466
|
.fusioni-message-thoughts {
|
|
1463
|
-
margin-top:
|
|
1464
|
-
|
|
1467
|
+
margin-top: 8.75px;
|
|
1468
|
+
color: var(--fusioni-text-secondary);
|
|
1469
|
+
}
|
|
1470
|
+
|
|
1471
|
+
.fusioni-message-thoughts-panel {
|
|
1472
|
+
display: flex;
|
|
1473
|
+
align-items: flex-start;
|
|
1474
|
+
gap: 7px;
|
|
1475
|
+
border: 1px solid var(--fusioni-border-light);
|
|
1476
|
+
border-radius: 8px;
|
|
1477
|
+
padding: 7.700000000000001px 9.1px;
|
|
1478
|
+
background: color-mix(in srgb, var(--fusioni-bg-primary) 92%, var(--fusioni-bg-tertiary));
|
|
1479
|
+
}
|
|
1480
|
+
|
|
1481
|
+
.fusioni-message-thoughts-icon {
|
|
1482
|
+
display: inline-flex;
|
|
1483
|
+
align-items: center;
|
|
1484
|
+
justify-content: center;
|
|
1485
|
+
flex: 0 0 auto;
|
|
1486
|
+
width: 18px;
|
|
1487
|
+
height: 18px;
|
|
1465
1488
|
color: var(--fusioni-text-muted);
|
|
1489
|
+
transform: translateY(0.7000000000000001px);
|
|
1466
1490
|
}
|
|
1467
1491
|
|
|
1468
|
-
.fusioni-message-thoughts
|
|
1469
|
-
|
|
1492
|
+
.fusioni-message-thoughts-icon svg {
|
|
1493
|
+
width: 16px;
|
|
1494
|
+
height: 16px;
|
|
1470
1495
|
}
|
|
1471
1496
|
|
|
1472
|
-
.fusioni-message-thoughts
|
|
1473
|
-
|
|
1497
|
+
.fusioni-message-thoughts-content {
|
|
1498
|
+
min-width: 0;
|
|
1499
|
+
margin: 0;
|
|
1500
|
+
color: var(--fusioni-text-secondary);
|
|
1501
|
+
font-size: 10.5px;
|
|
1502
|
+
line-height: 1.5;
|
|
1503
|
+
white-space: pre-wrap;
|
|
1504
|
+
overflow-wrap: anywhere;
|
|
1505
|
+
}
|
|
1506
|
+
|
|
1507
|
+
.fusioni-message-user .fusioni-message-thoughts-panel {
|
|
1508
|
+
border-color: rgba(255, 255, 255, 0.2);
|
|
1509
|
+
background: rgba(255, 255, 255, 0.08);
|
|
1510
|
+
}
|
|
1511
|
+
|
|
1512
|
+
.fusioni-message-user .fusioni-message-thoughts-icon,
|
|
1513
|
+
.fusioni-message-user .fusioni-message-thoughts-content {
|
|
1514
|
+
color: #fff;
|
|
1515
|
+
}
|
|
1516
|
+
|
|
1517
|
+
.fusioni-chat-widget.dark .fusioni-message-thoughts-panel {
|
|
1518
|
+
border-color: var(--fusioni-border);
|
|
1519
|
+
background: color-mix(in srgb, var(--fusioni-bg-secondary) 88%, var(--fusioni-bg-primary));
|
|
1474
1520
|
}
|
|
1475
1521
|
|
|
1476
1522
|
.fusioni-message-actions {
|
|
@@ -1478,7 +1524,7 @@
|
|
|
1478
1524
|
flex-direction: row;
|
|
1479
1525
|
align-items: center;
|
|
1480
1526
|
margin-left: auto;
|
|
1481
|
-
gap:
|
|
1527
|
+
gap: 1.4000000000000001px;
|
|
1482
1528
|
opacity: 0;
|
|
1483
1529
|
transition: var(--fusioni-transition);
|
|
1484
1530
|
}
|
|
@@ -1494,10 +1540,10 @@
|
|
|
1494
1540
|
.fusioni-message-error-indicator {
|
|
1495
1541
|
display: flex;
|
|
1496
1542
|
align-items: center;
|
|
1497
|
-
gap:
|
|
1498
|
-
font-size:
|
|
1543
|
+
gap: 3.5px;
|
|
1544
|
+
font-size: 10.5px;
|
|
1499
1545
|
color: var(--fusioni-error);
|
|
1500
|
-
margin-top:
|
|
1546
|
+
margin-top: 3.5px;
|
|
1501
1547
|
}
|
|
1502
1548
|
|
|
1503
1549
|
|
|
@@ -1505,8 +1551,8 @@
|
|
|
1505
1551
|
.fusioni-stream-message {
|
|
1506
1552
|
display: flex;
|
|
1507
1553
|
align-items: center;
|
|
1508
|
-
gap:
|
|
1509
|
-
margin-bottom:
|
|
1554
|
+
gap: 10.5px;
|
|
1555
|
+
margin-bottom: 7px;
|
|
1510
1556
|
}
|
|
1511
1557
|
|
|
1512
1558
|
.fusioni-stream-message:last-child {
|
|
@@ -1529,20 +1575,20 @@
|
|
|
1529
1575
|
}
|
|
1530
1576
|
|
|
1531
1577
|
.fusioni-stream-text {
|
|
1532
|
-
font-size:
|
|
1578
|
+
font-size: 12.25px;
|
|
1533
1579
|
color: var(--fusioni-text-secondary);
|
|
1534
1580
|
line-height: 1.4;
|
|
1535
1581
|
}
|
|
1536
1582
|
|
|
1537
1583
|
/* Chat Input */
|
|
1538
1584
|
.fusioni-chat-input {
|
|
1539
|
-
padding:
|
|
1585
|
+
padding: 14px;
|
|
1540
1586
|
background: var(--fusioni-bg-primary);
|
|
1541
1587
|
border-top: 1px solid var(--fusioni-border);
|
|
1542
1588
|
}
|
|
1543
1589
|
|
|
1544
1590
|
.fusioni-image-preview {
|
|
1545
|
-
margin-bottom:
|
|
1591
|
+
margin-bottom: 10.5px;
|
|
1546
1592
|
}
|
|
1547
1593
|
|
|
1548
1594
|
.fusioni-image-preview-content {
|
|
@@ -1559,13 +1605,13 @@
|
|
|
1559
1605
|
|
|
1560
1606
|
.fusioni-image-preview-content .fusioni-btn {
|
|
1561
1607
|
position: absolute;
|
|
1562
|
-
top:
|
|
1563
|
-
right:
|
|
1608
|
+
top: 7px;
|
|
1609
|
+
right: 7px;
|
|
1564
1610
|
}
|
|
1565
1611
|
|
|
1566
1612
|
.fusioni-audio-preview {
|
|
1567
|
-
margin-bottom:
|
|
1568
|
-
padding:
|
|
1613
|
+
margin-bottom: 10.5px;
|
|
1614
|
+
padding: 10.5px;
|
|
1569
1615
|
background: var(--fusioni-bg-secondary);
|
|
1570
1616
|
border-radius: var(--fusioni-radius);
|
|
1571
1617
|
border: 1px solid var(--fusioni-border);
|
|
@@ -1574,14 +1620,14 @@
|
|
|
1574
1620
|
.fusioni-audio-preview-content {
|
|
1575
1621
|
display: flex;
|
|
1576
1622
|
flex-direction: column;
|
|
1577
|
-
gap:
|
|
1623
|
+
gap: 7px;
|
|
1578
1624
|
}
|
|
1579
1625
|
|
|
1580
1626
|
.fusioni-audio-preview-header {
|
|
1581
1627
|
display: flex;
|
|
1582
1628
|
align-items: center;
|
|
1583
1629
|
justify-content: space-between;
|
|
1584
|
-
font-size:
|
|
1630
|
+
font-size: 12.25px;
|
|
1585
1631
|
color: var(--fusioni-text-secondary);
|
|
1586
1632
|
}
|
|
1587
1633
|
|
|
@@ -1591,7 +1637,7 @@
|
|
|
1591
1637
|
}
|
|
1592
1638
|
|
|
1593
1639
|
.fusioni-audio-preview-text {
|
|
1594
|
-
font-size:
|
|
1640
|
+
font-size: 10.5px;
|
|
1595
1641
|
color: var(--fusioni-text-muted);
|
|
1596
1642
|
text-align: center;
|
|
1597
1643
|
margin: 0;
|
|
@@ -1604,11 +1650,11 @@
|
|
|
1604
1650
|
.fusioni-input-wrapper {
|
|
1605
1651
|
display: flex;
|
|
1606
1652
|
align-items: flex-end;
|
|
1607
|
-
gap:
|
|
1653
|
+
gap: 7px;
|
|
1608
1654
|
background: var(--fusioni-bg-secondary);
|
|
1609
1655
|
border: 2px solid var(--fusioni-border);
|
|
1610
1656
|
border-radius: var(--fusioni-radius-xl);
|
|
1611
|
-
padding:
|
|
1657
|
+
padding: 7px;
|
|
1612
1658
|
transition: var(--fusioni-transition);
|
|
1613
1659
|
}
|
|
1614
1660
|
|
|
@@ -1624,12 +1670,12 @@
|
|
|
1624
1670
|
outline: none;
|
|
1625
1671
|
resize: none;
|
|
1626
1672
|
font-family: inherit;
|
|
1627
|
-
font-size:
|
|
1673
|
+
font-size: 12.25px;
|
|
1628
1674
|
line-height: 1.5;
|
|
1629
1675
|
color: var(--fusioni-text-primary);
|
|
1630
1676
|
min-height: 20px;
|
|
1631
1677
|
max-height: 120px;
|
|
1632
|
-
padding:
|
|
1678
|
+
padding: 7px;
|
|
1633
1679
|
}
|
|
1634
1680
|
|
|
1635
1681
|
.fusioni-textarea::placeholder {
|
|
@@ -1639,7 +1685,7 @@
|
|
|
1639
1685
|
.fusioni-input-actions {
|
|
1640
1686
|
display: flex;
|
|
1641
1687
|
align-items: center;
|
|
1642
|
-
gap:
|
|
1688
|
+
gap: 3.5px;
|
|
1643
1689
|
}
|
|
1644
1690
|
|
|
1645
1691
|
/* Buttons */
|
|
@@ -1647,10 +1693,10 @@
|
|
|
1647
1693
|
display: inline-flex;
|
|
1648
1694
|
align-items: center;
|
|
1649
1695
|
justify-content: center;
|
|
1650
|
-
padding:
|
|
1696
|
+
padding: 7px;
|
|
1651
1697
|
border: none;
|
|
1652
1698
|
border-radius: var(--fusioni-radius);
|
|
1653
|
-
font-size:
|
|
1699
|
+
font-size: 12.25px;
|
|
1654
1700
|
font-weight: 500;
|
|
1655
1701
|
cursor: pointer;
|
|
1656
1702
|
transition: var(--fusioni-transition);
|
|
@@ -1705,7 +1751,7 @@
|
|
|
1705
1751
|
border: none;
|
|
1706
1752
|
box-shadow: var(--fusioni-shadow-md);
|
|
1707
1753
|
font-weight: 600;
|
|
1708
|
-
padding:
|
|
1754
|
+
padding: 10.5px 21px;
|
|
1709
1755
|
border-radius: var(--fusioni-radius-lg);
|
|
1710
1756
|
transition: var(--fusioni-transition);
|
|
1711
1757
|
}
|
|
@@ -1729,7 +1775,7 @@
|
|
|
1729
1775
|
.fusioni-btn-text {
|
|
1730
1776
|
background: transparent;
|
|
1731
1777
|
color: var(--fusioni-primary);
|
|
1732
|
-
padding:
|
|
1778
|
+
padding: 3.5px 7px;
|
|
1733
1779
|
}
|
|
1734
1780
|
|
|
1735
1781
|
.fusioni-btn-text:hover {
|
|
@@ -1774,9 +1820,9 @@
|
|
|
1774
1820
|
/* Confirmation Widget */
|
|
1775
1821
|
.fusioni-confirmation-widget {
|
|
1776
1822
|
display: flex;
|
|
1777
|
-
gap:
|
|
1823
|
+
gap: 10.5px;
|
|
1778
1824
|
/* margin-top: 1.25rem; */
|
|
1779
|
-
padding-top:
|
|
1825
|
+
padding-top: 17.5px;
|
|
1780
1826
|
}
|
|
1781
1827
|
|
|
1782
1828
|
.fusioni-btn-confirm {
|
|
@@ -1785,10 +1831,10 @@
|
|
|
1785
1831
|
border: none;
|
|
1786
1832
|
box-shadow: var(--fusioni-shadow-md);
|
|
1787
1833
|
font-weight: 600;
|
|
1788
|
-
padding:
|
|
1834
|
+
padding: 10.5px 21px;
|
|
1789
1835
|
border-radius: var(--fusioni-radius-lg);
|
|
1790
1836
|
transition: var(--fusioni-transition);
|
|
1791
|
-
font-size:
|
|
1837
|
+
font-size: 12.25px;
|
|
1792
1838
|
}
|
|
1793
1839
|
|
|
1794
1840
|
.fusioni-btn-confirm:hover:not(:disabled) {
|
|
@@ -1815,10 +1861,10 @@
|
|
|
1815
1861
|
border: none;
|
|
1816
1862
|
box-shadow: var(--fusioni-shadow-md);
|
|
1817
1863
|
font-weight: 600;
|
|
1818
|
-
padding:
|
|
1864
|
+
padding: 10.5px 21px;
|
|
1819
1865
|
border-radius: var(--fusioni-radius-lg);
|
|
1820
1866
|
transition: var(--fusioni-transition);
|
|
1821
|
-
font-size:
|
|
1867
|
+
font-size: 12.25px;
|
|
1822
1868
|
}
|
|
1823
1869
|
|
|
1824
1870
|
.fusioni-btn-cancel:hover:not(:disabled) {
|
|
@@ -1851,7 +1897,7 @@
|
|
|
1851
1897
|
.fusioni-audio-recorder {
|
|
1852
1898
|
display: flex;
|
|
1853
1899
|
align-items: center;
|
|
1854
|
-
gap:
|
|
1900
|
+
gap: 7px;
|
|
1855
1901
|
}
|
|
1856
1902
|
|
|
1857
1903
|
.fusioni-recording-indicator {
|
|
@@ -1869,10 +1915,10 @@
|
|
|
1869
1915
|
}
|
|
1870
1916
|
|
|
1871
1917
|
.fusioni-recording-timer {
|
|
1872
|
-
font-size:
|
|
1918
|
+
font-size: 10.5px;
|
|
1873
1919
|
color: var(--fusioni-error);
|
|
1874
1920
|
font-weight: 500;
|
|
1875
|
-
min-width:
|
|
1921
|
+
min-width: 42px;
|
|
1876
1922
|
text-align: center;
|
|
1877
1923
|
}
|
|
1878
1924
|
|
|
@@ -1883,29 +1929,29 @@
|
|
|
1883
1929
|
right: 0;
|
|
1884
1930
|
background: var(--fusioni-error);
|
|
1885
1931
|
color: white;
|
|
1886
|
-
padding:
|
|
1932
|
+
padding: 7px;
|
|
1887
1933
|
border-radius: var(--fusioni-radius);
|
|
1888
|
-
font-size:
|
|
1889
|
-
margin-bottom:
|
|
1934
|
+
font-size: 10.5px;
|
|
1935
|
+
margin-bottom: 7px;
|
|
1890
1936
|
}
|
|
1891
1937
|
|
|
1892
1938
|
.fusioni-audio-error p {
|
|
1893
|
-
margin: 0 0
|
|
1939
|
+
margin: 0 0 3.5px;
|
|
1894
1940
|
}
|
|
1895
1941
|
|
|
1896
1942
|
.fusioni-audio-error button {
|
|
1897
1943
|
background: transparent;
|
|
1898
1944
|
color: white;
|
|
1899
1945
|
border: 1px solid white;
|
|
1900
|
-
padding:
|
|
1946
|
+
padding: 3.5px 7px;
|
|
1901
1947
|
border-radius: var(--fusioni-radius);
|
|
1902
|
-
font-size:
|
|
1948
|
+
font-size: 10.5px;
|
|
1903
1949
|
cursor: pointer;
|
|
1904
1950
|
}
|
|
1905
1951
|
|
|
1906
1952
|
/* Chat Loader */
|
|
1907
1953
|
.fusioni-chat-loader {
|
|
1908
|
-
padding:
|
|
1954
|
+
padding: 14px;
|
|
1909
1955
|
text-align: center;
|
|
1910
1956
|
}
|
|
1911
1957
|
|
|
@@ -1913,12 +1959,12 @@
|
|
|
1913
1959
|
display: flex;
|
|
1914
1960
|
align-items: center;
|
|
1915
1961
|
justify-content: center;
|
|
1916
|
-
gap:
|
|
1962
|
+
gap: 10.5px;
|
|
1917
1963
|
}
|
|
1918
1964
|
|
|
1919
1965
|
.fusioni-loader-dots {
|
|
1920
1966
|
display: flex;
|
|
1921
|
-
gap:
|
|
1967
|
+
gap: 3.5px;
|
|
1922
1968
|
}
|
|
1923
1969
|
|
|
1924
1970
|
.fusioni-loader-dot {
|
|
@@ -1938,7 +1984,7 @@
|
|
|
1938
1984
|
}
|
|
1939
1985
|
|
|
1940
1986
|
.fusioni-loader-text {
|
|
1941
|
-
font-size:
|
|
1987
|
+
font-size: 12.25px;
|
|
1942
1988
|
color: var(--fusioni-text-secondary);
|
|
1943
1989
|
}
|
|
1944
1990
|
|
|
@@ -1947,7 +1993,7 @@
|
|
|
1947
1993
|
display: flex;
|
|
1948
1994
|
align-items: center;
|
|
1949
1995
|
justify-content: space-between;
|
|
1950
|
-
padding:
|
|
1996
|
+
padding: 14px;
|
|
1951
1997
|
border-bottom: 1px solid var(--fusioni-border-light);
|
|
1952
1998
|
background: var(--fusioni-bg-tertiary);
|
|
1953
1999
|
backdrop-filter: blur(10px);
|
|
@@ -1960,7 +2006,7 @@
|
|
|
1960
2006
|
}
|
|
1961
2007
|
|
|
1962
2008
|
.fusioni-chat-main-header-title {
|
|
1963
|
-
font-size:
|
|
2009
|
+
font-size: 13.125px;
|
|
1964
2010
|
font-weight: 600;
|
|
1965
2011
|
color: var(--fusioni-text-primary);
|
|
1966
2012
|
min-width: 0;
|
|
@@ -1972,7 +2018,7 @@
|
|
|
1972
2018
|
.fusioni-header-actions {
|
|
1973
2019
|
display: flex;
|
|
1974
2020
|
align-items: center;
|
|
1975
|
-
gap:
|
|
2021
|
+
gap: 10.5px;
|
|
1976
2022
|
margin-left: auto;
|
|
1977
2023
|
}
|
|
1978
2024
|
|
|
@@ -1985,14 +2031,14 @@
|
|
|
1985
2031
|
.fusioni-conversation-toggle {
|
|
1986
2032
|
display: flex;
|
|
1987
2033
|
align-items: center;
|
|
1988
|
-
gap:
|
|
1989
|
-
padding:
|
|
2034
|
+
gap: 7px;
|
|
2035
|
+
padding: 7px 10.5px;
|
|
1990
2036
|
background: var(--fusioni-bg-primary);
|
|
1991
2037
|
border: 1px solid var(--fusioni-border);
|
|
1992
2038
|
border-radius: var(--fusioni-radius-lg);
|
|
1993
2039
|
cursor: pointer;
|
|
1994
2040
|
transition: var(--fusioni-transition);
|
|
1995
|
-
font-size:
|
|
2041
|
+
font-size: 12.25px;
|
|
1996
2042
|
color: var(--fusioni-text-secondary);
|
|
1997
2043
|
}
|
|
1998
2044
|
|
|
@@ -2020,7 +2066,7 @@
|
|
|
2020
2066
|
.fusioni-connection-indicator {
|
|
2021
2067
|
display: flex;
|
|
2022
2068
|
align-items: center;
|
|
2023
|
-
padding:
|
|
2069
|
+
padding: 3.5px;
|
|
2024
2070
|
border-radius: var(--fusioni-radius);
|
|
2025
2071
|
transition: var(--fusioni-transition);
|
|
2026
2072
|
}
|
|
@@ -2051,14 +2097,14 @@
|
|
|
2051
2097
|
.fusioni-language-button {
|
|
2052
2098
|
display: flex;
|
|
2053
2099
|
align-items: center;
|
|
2054
|
-
gap:
|
|
2055
|
-
padding:
|
|
2100
|
+
gap: 7px;
|
|
2101
|
+
padding: 7px 10.5px;
|
|
2056
2102
|
background: var(--fusioni-bg-primary);
|
|
2057
2103
|
border: 1px solid var(--fusioni-border);
|
|
2058
2104
|
border-radius: var(--fusioni-radius-lg);
|
|
2059
2105
|
cursor: pointer;
|
|
2060
2106
|
transition: var(--fusioni-transition);
|
|
2061
|
-
font-size:
|
|
2107
|
+
font-size: 12.25px;
|
|
2062
2108
|
color: var(--fusioni-text-primary);
|
|
2063
2109
|
min-width: 120px;
|
|
2064
2110
|
}
|
|
@@ -2069,7 +2115,7 @@
|
|
|
2069
2115
|
}
|
|
2070
2116
|
|
|
2071
2117
|
.fusioni-language-flag {
|
|
2072
|
-
font-size:
|
|
2118
|
+
font-size: 14px;
|
|
2073
2119
|
line-height: 1;
|
|
2074
2120
|
}
|
|
2075
2121
|
|
|
@@ -2098,20 +2144,20 @@
|
|
|
2098
2144
|
box-shadow: var(--fusioni-shadow-lg);
|
|
2099
2145
|
z-index: 1000;
|
|
2100
2146
|
overflow: hidden;
|
|
2101
|
-
margin-top:
|
|
2147
|
+
margin-top: 3.5px;
|
|
2102
2148
|
}
|
|
2103
2149
|
|
|
2104
2150
|
.fusioni-language-option {
|
|
2105
2151
|
display: flex;
|
|
2106
2152
|
align-items: center;
|
|
2107
|
-
gap:
|
|
2153
|
+
gap: 7px;
|
|
2108
2154
|
width: 100%;
|
|
2109
|
-
padding:
|
|
2155
|
+
padding: 10.5px;
|
|
2110
2156
|
background: transparent;
|
|
2111
2157
|
border: none;
|
|
2112
2158
|
cursor: pointer;
|
|
2113
2159
|
transition: var(--fusioni-transition);
|
|
2114
|
-
font-size:
|
|
2160
|
+
font-size: 12.25px;
|
|
2115
2161
|
color: var(--fusioni-text-primary);
|
|
2116
2162
|
text-align: left;
|
|
2117
2163
|
}
|
|
@@ -2137,7 +2183,7 @@
|
|
|
2137
2183
|
justify-content: center;
|
|
2138
2184
|
height: 100%;
|
|
2139
2185
|
width: 100%;
|
|
2140
|
-
padding:
|
|
2186
|
+
padding: 42px 28px;
|
|
2141
2187
|
background: var(--fusioni-bg-primary);
|
|
2142
2188
|
box-sizing: border-box;
|
|
2143
2189
|
overflow: hidden;
|
|
@@ -2161,8 +2207,8 @@
|
|
|
2161
2207
|
}
|
|
2162
2208
|
|
|
2163
2209
|
.fusioni-chat-welcome-content h3 {
|
|
2164
|
-
margin: 0 0
|
|
2165
|
-
font-size:
|
|
2210
|
+
margin: 0 0 14px;
|
|
2211
|
+
font-size: 21px;
|
|
2166
2212
|
font-weight: 700;
|
|
2167
2213
|
color: var(--fusioni-text-primary);
|
|
2168
2214
|
background: linear-gradient(135deg, var(--fusioni-primary) 0%, var(--fusioni-primary-light) 100%);
|
|
@@ -2172,30 +2218,30 @@
|
|
|
2172
2218
|
}
|
|
2173
2219
|
|
|
2174
2220
|
.fusioni-chat-welcome-content p {
|
|
2175
|
-
margin: 0 0
|
|
2221
|
+
margin: 0 0 28px;
|
|
2176
2222
|
color: var(--fusioni-text-secondary);
|
|
2177
2223
|
line-height: 1.6;
|
|
2178
|
-
font-size:
|
|
2224
|
+
font-size: 14px;
|
|
2179
2225
|
}
|
|
2180
2226
|
|
|
2181
2227
|
/* Error State */
|
|
2182
2228
|
.fusioni-chat-error {
|
|
2183
|
-
padding:
|
|
2229
|
+
padding: 14px;
|
|
2184
2230
|
background: var(--fusioni-error);
|
|
2185
2231
|
color: white;
|
|
2186
2232
|
border-radius: var(--fusioni-radius);
|
|
2187
|
-
margin:
|
|
2233
|
+
margin: 14px;
|
|
2188
2234
|
}
|
|
2189
2235
|
|
|
2190
2236
|
.fusioni-chat-error p {
|
|
2191
|
-
margin: 0 0
|
|
2237
|
+
margin: 0 0 7px;
|
|
2192
2238
|
}
|
|
2193
2239
|
|
|
2194
2240
|
.fusioni-chat-error button {
|
|
2195
2241
|
background: transparent;
|
|
2196
2242
|
color: white;
|
|
2197
2243
|
border: 1px solid white;
|
|
2198
|
-
padding:
|
|
2244
|
+
padding: 3.5px 7px;
|
|
2199
2245
|
border-radius: var(--fusioni-radius);
|
|
2200
2246
|
cursor: pointer;
|
|
2201
2247
|
}
|
|
@@ -2380,22 +2426,22 @@
|
|
|
2380
2426
|
@media (max-width: 768px) {
|
|
2381
2427
|
.fusioni-floating-button-bottom-right,
|
|
2382
2428
|
.fusioni-floating-button-bottom-left {
|
|
2383
|
-
bottom: max(
|
|
2429
|
+
bottom: max(14px, calc(env(safe-area-inset-bottom, 0px) + 14px));
|
|
2384
2430
|
}
|
|
2385
2431
|
|
|
2386
2432
|
.fusioni-floating-button-bottom-right,
|
|
2387
2433
|
.fusioni-floating-button-top-right {
|
|
2388
|
-
right: max(
|
|
2434
|
+
right: max(10.5px, calc(env(safe-area-inset-right, 0px) + 10.5px));
|
|
2389
2435
|
}
|
|
2390
2436
|
|
|
2391
2437
|
.fusioni-floating-button-bottom-left,
|
|
2392
2438
|
.fusioni-floating-button-top-left {
|
|
2393
|
-
left: max(
|
|
2439
|
+
left: max(10.5px, calc(env(safe-area-inset-left, 0px) + 10.5px));
|
|
2394
2440
|
}
|
|
2395
2441
|
|
|
2396
2442
|
.fusioni-floating-button-top-right,
|
|
2397
2443
|
.fusioni-floating-button-top-left {
|
|
2398
|
-
top: max(
|
|
2444
|
+
top: max(10.5px, calc(env(safe-area-inset-top, 0px) + 10.5px));
|
|
2399
2445
|
}
|
|
2400
2446
|
|
|
2401
2447
|
/*
|
|
@@ -2444,13 +2490,13 @@
|
|
|
2444
2490
|
|
|
2445
2491
|
.fusioni-message-list {
|
|
2446
2492
|
-webkit-overflow-scrolling: touch;
|
|
2447
|
-
padding-left:
|
|
2448
|
-
padding-right:
|
|
2449
|
-
padding-bottom:
|
|
2493
|
+
padding-left: 10.5px;
|
|
2494
|
+
padding-right: 10.5px;
|
|
2495
|
+
padding-bottom: 3.5px;
|
|
2450
2496
|
}
|
|
2451
2497
|
|
|
2452
2498
|
.fusioni-chat-input {
|
|
2453
|
-
padding-bottom: max(
|
|
2499
|
+
padding-bottom: max(14px, calc(env(safe-area-inset-bottom, 0px) + 7px));
|
|
2454
2500
|
}
|
|
2455
2501
|
|
|
2456
2502
|
.fusioni-chat-toolbar-close-mobile {
|
|
@@ -2462,7 +2508,7 @@
|
|
|
2462
2508
|
.fusioni-header-actions {
|
|
2463
2509
|
flex-wrap: wrap;
|
|
2464
2510
|
justify-content: flex-end;
|
|
2465
|
-
row-gap:
|
|
2511
|
+
row-gap: 3.5px;
|
|
2466
2512
|
}
|
|
2467
2513
|
}
|
|
2468
2514
|
|
|
@@ -2490,7 +2536,7 @@
|
|
|
2490
2536
|
|
|
2491
2537
|
/* URL Preview Styles */
|
|
2492
2538
|
.fusioni-url-preview {
|
|
2493
|
-
margin:
|
|
2539
|
+
margin: 7px 0;
|
|
2494
2540
|
border-radius: var(--fusioni-radius);
|
|
2495
2541
|
overflow: hidden;
|
|
2496
2542
|
border: 1px solid var(--fusioni-border);
|
|
@@ -2505,16 +2551,16 @@
|
|
|
2505
2551
|
}
|
|
2506
2552
|
|
|
2507
2553
|
.fusioni-url-preview-compact {
|
|
2508
|
-
margin:
|
|
2554
|
+
margin: 3.5px 0;
|
|
2509
2555
|
}
|
|
2510
2556
|
|
|
2511
2557
|
.fusioni-url-preview-loading {
|
|
2512
2558
|
display: flex;
|
|
2513
2559
|
align-items: center;
|
|
2514
|
-
gap:
|
|
2515
|
-
padding:
|
|
2560
|
+
gap: 7px;
|
|
2561
|
+
padding: 10.5px;
|
|
2516
2562
|
color: var(--fusioni-text-secondary);
|
|
2517
|
-
font-size:
|
|
2563
|
+
font-size: 12.25px;
|
|
2518
2564
|
}
|
|
2519
2565
|
|
|
2520
2566
|
.fusioni-url-preview-spinner {
|
|
@@ -2535,9 +2581,9 @@
|
|
|
2535
2581
|
display: flex;
|
|
2536
2582
|
align-items: center;
|
|
2537
2583
|
justify-content: space-between;
|
|
2538
|
-
padding:
|
|
2584
|
+
padding: 10.5px;
|
|
2539
2585
|
color: var(--fusioni-error);
|
|
2540
|
-
font-size:
|
|
2586
|
+
font-size: 12.25px;
|
|
2541
2587
|
background: rgba(220, 38, 38, 0.05);
|
|
2542
2588
|
}
|
|
2543
2589
|
|
|
@@ -2547,8 +2593,8 @@
|
|
|
2547
2593
|
|
|
2548
2594
|
.fusioni-url-preview-close {
|
|
2549
2595
|
position: absolute;
|
|
2550
|
-
top:
|
|
2551
|
-
right:
|
|
2596
|
+
top: 7px;
|
|
2597
|
+
right: 7px;
|
|
2552
2598
|
z-index: 10;
|
|
2553
2599
|
width: 24px;
|
|
2554
2600
|
height: 24px;
|
|
@@ -2606,7 +2652,7 @@
|
|
|
2606
2652
|
|
|
2607
2653
|
.fusioni-url-preview-text {
|
|
2608
2654
|
flex: 1;
|
|
2609
|
-
padding:
|
|
2655
|
+
padding: 10.5px;
|
|
2610
2656
|
display: flex;
|
|
2611
2657
|
flex-direction: column;
|
|
2612
2658
|
justify-content: space-between;
|
|
@@ -2614,15 +2660,15 @@
|
|
|
2614
2660
|
}
|
|
2615
2661
|
|
|
2616
2662
|
.fusioni-url-preview-compact .fusioni-url-preview-text {
|
|
2617
|
-
padding:
|
|
2663
|
+
padding: 7px;
|
|
2618
2664
|
}
|
|
2619
2665
|
|
|
2620
2666
|
.fusioni-url-preview-title {
|
|
2621
2667
|
font-weight: 600;
|
|
2622
|
-
font-size:
|
|
2668
|
+
font-size: 12.25px;
|
|
2623
2669
|
line-height: 1.25;
|
|
2624
2670
|
color: var(--fusioni-text-primary);
|
|
2625
|
-
margin-bottom:
|
|
2671
|
+
margin-bottom: 3.5px;
|
|
2626
2672
|
display: -webkit-box;
|
|
2627
2673
|
-webkit-line-clamp: 2;
|
|
2628
2674
|
line-clamp: 2;
|
|
@@ -2631,16 +2677,16 @@
|
|
|
2631
2677
|
}
|
|
2632
2678
|
|
|
2633
2679
|
.fusioni-url-preview-compact .fusioni-url-preview-title {
|
|
2634
|
-
font-size:
|
|
2680
|
+
font-size: 11.375px;
|
|
2635
2681
|
-webkit-line-clamp: 1;
|
|
2636
2682
|
line-clamp: 1;
|
|
2637
2683
|
}
|
|
2638
2684
|
|
|
2639
2685
|
.fusioni-url-preview-description {
|
|
2640
|
-
font-size:
|
|
2686
|
+
font-size: 11.375px;
|
|
2641
2687
|
line-height: 1.4;
|
|
2642
2688
|
color: var(--fusioni-text-secondary);
|
|
2643
|
-
margin-bottom:
|
|
2689
|
+
margin-bottom: 3.5px;
|
|
2644
2690
|
display: -webkit-box;
|
|
2645
2691
|
-webkit-line-clamp: 2;
|
|
2646
2692
|
line-clamp: 2;
|
|
@@ -2649,20 +2695,20 @@
|
|
|
2649
2695
|
}
|
|
2650
2696
|
|
|
2651
2697
|
.fusioni-url-preview-compact .fusioni-url-preview-description {
|
|
2652
|
-
font-size:
|
|
2698
|
+
font-size: 10.5px;
|
|
2653
2699
|
-webkit-line-clamp: 1;
|
|
2654
2700
|
line-clamp: 1;
|
|
2655
2701
|
}
|
|
2656
2702
|
|
|
2657
2703
|
.fusioni-url-preview-domain {
|
|
2658
|
-
font-size:
|
|
2704
|
+
font-size: 10.5px;
|
|
2659
2705
|
color: var(--fusioni-text-muted);
|
|
2660
2706
|
text-transform: uppercase;
|
|
2661
2707
|
letter-spacing: 0.025em;
|
|
2662
2708
|
}
|
|
2663
2709
|
|
|
2664
2710
|
.fusioni-message-url-previews {
|
|
2665
|
-
margin-top:
|
|
2711
|
+
margin-top: 7px;
|
|
2666
2712
|
}
|
|
2667
2713
|
|
|
2668
2714
|
/* Dark theme adjustments for URL preview */
|
|
@@ -3279,33 +3325,33 @@
|
|
|
3279
3325
|
}
|
|
3280
3326
|
|
|
3281
3327
|
.fusioni-dialog-header {
|
|
3282
|
-
padding:
|
|
3328
|
+
padding: 21px 21px 14px;
|
|
3283
3329
|
border-bottom: 1px solid var(--fusioni-border);
|
|
3284
3330
|
}
|
|
3285
3331
|
|
|
3286
3332
|
.fusioni-dialog-title {
|
|
3287
3333
|
margin: 0;
|
|
3288
|
-
font-size:
|
|
3334
|
+
font-size: 17.5px;
|
|
3289
3335
|
font-weight: 600;
|
|
3290
3336
|
color: var(--fusioni-text-primary);
|
|
3291
3337
|
line-height: 1.5;
|
|
3292
3338
|
}
|
|
3293
3339
|
|
|
3294
3340
|
.fusioni-dialog-body {
|
|
3295
|
-
padding:
|
|
3341
|
+
padding: 21px;
|
|
3296
3342
|
}
|
|
3297
3343
|
|
|
3298
3344
|
.fusioni-dialog-message {
|
|
3299
3345
|
margin: 0;
|
|
3300
3346
|
color: var(--fusioni-text-secondary);
|
|
3301
3347
|
line-height: 1.6;
|
|
3302
|
-
font-size:
|
|
3348
|
+
font-size: 13.125px;
|
|
3303
3349
|
}
|
|
3304
3350
|
|
|
3305
3351
|
.fusioni-dialog-footer {
|
|
3306
|
-
padding:
|
|
3352
|
+
padding: 14px 21px 21px;
|
|
3307
3353
|
display: flex;
|
|
3308
|
-
gap:
|
|
3354
|
+
gap: 10.5px;
|
|
3309
3355
|
justify-content: flex-end;
|
|
3310
3356
|
border-top: 1px solid var(--fusioni-border);
|
|
3311
3357
|
}
|
|
@@ -3392,12 +3438,12 @@
|
|
|
3392
3438
|
justify-content: flex-start;
|
|
3393
3439
|
animation: fusionImageGalleryFadeIn 0.2s ease-out;
|
|
3394
3440
|
/* Reserve vertical space for top bar + optional thumb band (matches Angular calc(100vh - 8rem) baseline) */
|
|
3395
|
-
--fusioni-ig-img-offset:
|
|
3441
|
+
--fusioni-ig-img-offset: 112px;
|
|
3396
3442
|
}
|
|
3397
3443
|
|
|
3398
3444
|
.fusioni-image-gallery-overlay.fusioni-image-gallery-has-thumbs {
|
|
3399
3445
|
/* Top bar + compact thumb grid + dots (extra vs Angular single-pane 8rem) */
|
|
3400
|
-
--fusioni-ig-img-offset:
|
|
3446
|
+
--fusioni-ig-img-offset: 196px;
|
|
3401
3447
|
}
|
|
3402
3448
|
|
|
3403
3449
|
.fusioni-image-gallery-body {
|
|
@@ -3446,17 +3492,17 @@
|
|
|
3446
3492
|
display: flex;
|
|
3447
3493
|
align-items: center;
|
|
3448
3494
|
justify-content: space-between;
|
|
3449
|
-
padding:
|
|
3495
|
+
padding: 10.5px 14px;
|
|
3450
3496
|
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
|
|
3451
3497
|
pointer-events: none;
|
|
3452
3498
|
}
|
|
3453
3499
|
|
|
3454
3500
|
.fusioni-image-gallery-topbar-spacer {
|
|
3455
|
-
width:
|
|
3501
|
+
width: 35px;
|
|
3456
3502
|
}
|
|
3457
3503
|
|
|
3458
3504
|
.fusioni-image-gallery-counter {
|
|
3459
|
-
font-size:
|
|
3505
|
+
font-size: 12.25px;
|
|
3460
3506
|
font-weight: 500;
|
|
3461
3507
|
color: rgba(255, 255, 255, 0.9);
|
|
3462
3508
|
font-variant-numeric: tabular-nums;
|
|
@@ -3468,8 +3514,8 @@
|
|
|
3468
3514
|
display: flex;
|
|
3469
3515
|
align-items: center;
|
|
3470
3516
|
justify-content: center;
|
|
3471
|
-
width:
|
|
3472
|
-
height:
|
|
3517
|
+
width: 35px;
|
|
3518
|
+
height: 35px;
|
|
3473
3519
|
border: none;
|
|
3474
3520
|
border-radius: 9999px;
|
|
3475
3521
|
color: #fff;
|
|
@@ -3491,13 +3537,13 @@
|
|
|
3491
3537
|
}
|
|
3492
3538
|
|
|
3493
3539
|
.fusioni-image-gallery-icon {
|
|
3494
|
-
width:
|
|
3495
|
-
height:
|
|
3540
|
+
width: 17.5px;
|
|
3541
|
+
height: 17.5px;
|
|
3496
3542
|
}
|
|
3497
3543
|
|
|
3498
3544
|
.fusioni-image-gallery-icon-lg {
|
|
3499
|
-
width:
|
|
3500
|
-
height:
|
|
3545
|
+
width: 28px;
|
|
3546
|
+
height: 28px;
|
|
3501
3547
|
}
|
|
3502
3548
|
|
|
3503
3549
|
/* Angular image-gallery: flex:1; min-width:0; padding 4rem 4.5rem; img max 100% × calc(100vh - 8rem) */
|
|
@@ -3510,7 +3556,7 @@
|
|
|
3510
3556
|
min-height: 0;
|
|
3511
3557
|
width: 100%;
|
|
3512
3558
|
max-width: 100%;
|
|
3513
|
-
padding:
|
|
3559
|
+
padding: 56px 63px;
|
|
3514
3560
|
box-sizing: border-box;
|
|
3515
3561
|
}
|
|
3516
3562
|
|
|
@@ -3519,10 +3565,10 @@
|
|
|
3519
3565
|
max-width: 100%;
|
|
3520
3566
|
width: auto;
|
|
3521
3567
|
height: auto;
|
|
3522
|
-
max-height: calc(100vh - var(--fusioni-ig-img-offset,
|
|
3523
|
-
max-height: calc(100dvh - var(--fusioni-ig-img-offset,
|
|
3568
|
+
max-height: calc(100vh - var(--fusioni-ig-img-offset, 112px));
|
|
3569
|
+
max-height: calc(100dvh - var(--fusioni-ig-img-offset, 112px));
|
|
3524
3570
|
object-fit: contain;
|
|
3525
|
-
border-radius:
|
|
3571
|
+
border-radius: 7px;
|
|
3526
3572
|
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
|
|
3527
3573
|
animation: fusionImageGalleryZoomIn 0.25s ease-out;
|
|
3528
3574
|
}
|
|
@@ -3530,32 +3576,32 @@
|
|
|
3530
3576
|
.fusioni-image-gallery-thumbs-wrap {
|
|
3531
3577
|
flex: 0 0 auto;
|
|
3532
3578
|
width: 100%;
|
|
3533
|
-
max-width: min(100vw -
|
|
3534
|
-
max-height:
|
|
3579
|
+
max-width: min(100vw - 28px, 588px);
|
|
3580
|
+
max-height: 175px;
|
|
3535
3581
|
margin: 0 auto;
|
|
3536
|
-
padding: 0
|
|
3582
|
+
padding: 0 14px 10.5px;
|
|
3537
3583
|
box-sizing: border-box;
|
|
3538
3584
|
overflow: hidden;
|
|
3539
3585
|
}
|
|
3540
3586
|
|
|
3541
3587
|
/* Compact thumbnail rail: full-width cells made huge by aspect-ratio — cap row height (SDK-only; Angular has no strip) */
|
|
3542
3588
|
.fusioni-image-gallery-thumbs-wrap .fusioni-gallery-strip--lightbox .fusioni-gallery-strip-grid {
|
|
3543
|
-
gap:
|
|
3589
|
+
gap: 7px;
|
|
3544
3590
|
}
|
|
3545
3591
|
|
|
3546
3592
|
.fusioni-image-gallery-thumbs-wrap .fusioni-gallery-strip--lightbox .fusioni-gallery-strip-cell {
|
|
3547
3593
|
display: flex;
|
|
3548
3594
|
align-items: center;
|
|
3549
3595
|
justify-content: center;
|
|
3550
|
-
max-height:
|
|
3596
|
+
max-height: 52.5px;
|
|
3551
3597
|
}
|
|
3552
3598
|
|
|
3553
3599
|
.fusioni-image-gallery-thumb {
|
|
3554
3600
|
display: block;
|
|
3555
3601
|
box-sizing: border-box;
|
|
3556
3602
|
width: 100%;
|
|
3557
|
-
max-width:
|
|
3558
|
-
height:
|
|
3603
|
+
max-width: 77px;
|
|
3604
|
+
height: 49px;
|
|
3559
3605
|
padding: 0;
|
|
3560
3606
|
margin: 0 auto;
|
|
3561
3607
|
border: 2px solid transparent;
|
|
@@ -3591,7 +3637,7 @@
|
|
|
3591
3637
|
}
|
|
3592
3638
|
|
|
3593
3639
|
.fusioni-image-gallery-thumbs-wrap .fusioni-gallery-strip-dots {
|
|
3594
|
-
margin-top:
|
|
3640
|
+
margin-top: 7px;
|
|
3595
3641
|
}
|
|
3596
3642
|
|
|
3597
3643
|
@keyframes fusionImageGalleryZoomIn {
|
|
@@ -3614,8 +3660,8 @@
|
|
|
3614
3660
|
display: flex;
|
|
3615
3661
|
align-items: center;
|
|
3616
3662
|
justify-content: center;
|
|
3617
|
-
width:
|
|
3618
|
-
height:
|
|
3663
|
+
width: 42px;
|
|
3664
|
+
height: 42px;
|
|
3619
3665
|
border: none;
|
|
3620
3666
|
border-radius: 50%;
|
|
3621
3667
|
color: #fff;
|
|
@@ -3642,25 +3688,25 @@
|
|
|
3642
3688
|
}
|
|
3643
3689
|
|
|
3644
3690
|
.fusioni-image-gallery-nav-prev {
|
|
3645
|
-
left:
|
|
3691
|
+
left: 14px;
|
|
3646
3692
|
}
|
|
3647
3693
|
|
|
3648
3694
|
.fusioni-image-gallery-nav-next {
|
|
3649
|
-
right:
|
|
3695
|
+
right: 14px;
|
|
3650
3696
|
}
|
|
3651
3697
|
|
|
3652
3698
|
@media (min-width: 640px) {
|
|
3653
3699
|
.fusioni-image-gallery-nav {
|
|
3654
|
-
width:
|
|
3655
|
-
height:
|
|
3700
|
+
width: 49px;
|
|
3701
|
+
height: 49px;
|
|
3656
3702
|
}
|
|
3657
3703
|
|
|
3658
3704
|
.fusioni-image-gallery-nav-prev {
|
|
3659
|
-
left:
|
|
3705
|
+
left: 21px;
|
|
3660
3706
|
}
|
|
3661
3707
|
|
|
3662
3708
|
.fusioni-image-gallery-nav-next {
|
|
3663
|
-
right:
|
|
3709
|
+
right: 21px;
|
|
3664
3710
|
}
|
|
3665
3711
|
}
|
|
3666
3712
|
|
|
@@ -3713,7 +3759,7 @@
|
|
|
3713
3759
|
|
|
3714
3760
|
.fusioni-gallery-strip-grid {
|
|
3715
3761
|
display: grid;
|
|
3716
|
-
gap:
|
|
3762
|
+
gap: 10.5px;
|
|
3717
3763
|
}
|
|
3718
3764
|
|
|
3719
3765
|
.fusioni-gallery-strip-cell {
|
|
@@ -3721,16 +3767,16 @@
|
|
|
3721
3767
|
}
|
|
3722
3768
|
|
|
3723
3769
|
.fusioni-gallery-strip-dots {
|
|
3724
|
-
margin-top:
|
|
3770
|
+
margin-top: 14px;
|
|
3725
3771
|
display: flex;
|
|
3726
3772
|
align-items: center;
|
|
3727
3773
|
justify-content: center;
|
|
3728
|
-
gap:
|
|
3774
|
+
gap: 7px;
|
|
3729
3775
|
}
|
|
3730
3776
|
|
|
3731
3777
|
.fusioni-gallery-strip-dot {
|
|
3732
|
-
width:
|
|
3733
|
-
height:
|
|
3778
|
+
width: 8.75px;
|
|
3779
|
+
height: 8.75px;
|
|
3734
3780
|
border-radius: 9999px;
|
|
3735
3781
|
border: none;
|
|
3736
3782
|
padding: 0;
|
|
@@ -3774,7 +3820,7 @@
|
|
|
3774
3820
|
|
|
3775
3821
|
/* Document image grid (assistant message thumbnails → gallery) */
|
|
3776
3822
|
.fusioni-document-images {
|
|
3777
|
-
margin-top:
|
|
3823
|
+
margin-top: 3.5px;
|
|
3778
3824
|
position: relative;
|
|
3779
3825
|
width: 100%;
|
|
3780
3826
|
max-width: 100%;
|
|
@@ -3783,7 +3829,7 @@
|
|
|
3783
3829
|
|
|
3784
3830
|
/* Document video grid (assistant message attachments) */
|
|
3785
3831
|
.fusioni-document-videos {
|
|
3786
|
-
margin-top:
|
|
3832
|
+
margin-top: 3.5px;
|
|
3787
3833
|
position: relative;
|
|
3788
3834
|
width: 100%;
|
|
3789
3835
|
max-width: 100%;
|
|
@@ -3795,8 +3841,8 @@
|
|
|
3795
3841
|
display: flex;
|
|
3796
3842
|
align-items: center;
|
|
3797
3843
|
justify-content: center;
|
|
3798
|
-
margin-bottom:
|
|
3799
|
-
min-height:
|
|
3844
|
+
margin-bottom: 10.5px;
|
|
3845
|
+
min-height: 17.5px;
|
|
3800
3846
|
}
|
|
3801
3847
|
|
|
3802
3848
|
.fusioni-document-videos-header::before {
|
|
@@ -3819,17 +3865,17 @@
|
|
|
3819
3865
|
z-index: 1;
|
|
3820
3866
|
display: inline-flex;
|
|
3821
3867
|
align-items: center;
|
|
3822
|
-
gap:
|
|
3823
|
-
padding: 0
|
|
3824
|
-
font-size:
|
|
3868
|
+
gap: 5.25px;
|
|
3869
|
+
padding: 0 8.75px;
|
|
3870
|
+
font-size: 11.375px;
|
|
3825
3871
|
font-weight: 600;
|
|
3826
3872
|
color: var(--fusioni-text-secondary);
|
|
3827
3873
|
background: var(--fusioni-bg-secondary);
|
|
3828
3874
|
}
|
|
3829
3875
|
|
|
3830
3876
|
.fusioni-document-videos-header-icon {
|
|
3831
|
-
width:
|
|
3832
|
-
height:
|
|
3877
|
+
width: 14px;
|
|
3878
|
+
height: 14px;
|
|
3833
3879
|
flex-shrink: 0;
|
|
3834
3880
|
opacity: 0.9;
|
|
3835
3881
|
}
|
|
@@ -3872,8 +3918,8 @@
|
|
|
3872
3918
|
display: flex;
|
|
3873
3919
|
align-items: center;
|
|
3874
3920
|
justify-content: center;
|
|
3875
|
-
margin-bottom:
|
|
3876
|
-
min-height:
|
|
3921
|
+
margin-bottom: 10.5px;
|
|
3922
|
+
min-height: 17.5px;
|
|
3877
3923
|
}
|
|
3878
3924
|
|
|
3879
3925
|
.fusioni-document-images-header::before {
|
|
@@ -3896,17 +3942,17 @@
|
|
|
3896
3942
|
z-index: 1;
|
|
3897
3943
|
display: inline-flex;
|
|
3898
3944
|
align-items: center;
|
|
3899
|
-
gap:
|
|
3900
|
-
padding: 0
|
|
3901
|
-
font-size:
|
|
3945
|
+
gap: 5.25px;
|
|
3946
|
+
padding: 0 8.75px;
|
|
3947
|
+
font-size: 11.375px;
|
|
3902
3948
|
font-weight: 600;
|
|
3903
3949
|
color: var(--fusioni-text-secondary);
|
|
3904
3950
|
background: var(--fusioni-bg-secondary);
|
|
3905
3951
|
}
|
|
3906
3952
|
|
|
3907
3953
|
.fusioni-document-images-header-icon {
|
|
3908
|
-
width:
|
|
3909
|
-
height:
|
|
3954
|
+
width: 14px;
|
|
3955
|
+
height: 14px;
|
|
3910
3956
|
flex-shrink: 0;
|
|
3911
3957
|
opacity: 0.9;
|
|
3912
3958
|
}
|
|
@@ -4090,7 +4136,7 @@
|
|
|
4090
4136
|
|
|
4091
4137
|
.fusioni-chat-panel {
|
|
4092
4138
|
width: 440px;
|
|
4093
|
-
height: min(680px, calc(100vh -
|
|
4139
|
+
height: min(680px, calc(100vh - 98px));
|
|
4094
4140
|
border-radius: 20px;
|
|
4095
4141
|
border: 1px solid rgb(16 24 40 / 0.1);
|
|
4096
4142
|
background: rgba(255, 255, 255, 0.98);
|
|
@@ -4112,18 +4158,18 @@
|
|
|
4112
4158
|
|
|
4113
4159
|
.fusioni-chat-panel-bottom-right,
|
|
4114
4160
|
.fusioni-chat-panel-bottom-left {
|
|
4115
|
-
bottom:
|
|
4161
|
+
bottom: 77px;
|
|
4116
4162
|
}
|
|
4117
4163
|
|
|
4118
4164
|
.fusioni-chat-panel-top-right,
|
|
4119
4165
|
.fusioni-chat-panel-top-left {
|
|
4120
|
-
top:
|
|
4166
|
+
top: 77px;
|
|
4121
4167
|
}
|
|
4122
4168
|
|
|
4123
4169
|
.fusioni-chat-main-header,
|
|
4124
4170
|
.fusioni-conversation-header {
|
|
4125
4171
|
min-height: 64px;
|
|
4126
|
-
padding:
|
|
4172
|
+
padding: 12.25px 14px;
|
|
4127
4173
|
border-bottom: 1px solid var(--fusioni-border-light);
|
|
4128
4174
|
background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
|
|
4129
4175
|
}
|
|
@@ -4191,7 +4237,7 @@
|
|
|
4191
4237
|
}
|
|
4192
4238
|
|
|
4193
4239
|
.fusioni-conversation-search {
|
|
4194
|
-
padding:
|
|
4240
|
+
padding: 12.25px;
|
|
4195
4241
|
}
|
|
4196
4242
|
|
|
4197
4243
|
.fusioni-input,
|
|
@@ -4207,7 +4253,7 @@
|
|
|
4207
4253
|
|
|
4208
4254
|
.fusioni-input-wrapper {
|
|
4209
4255
|
border-radius: 16px;
|
|
4210
|
-
padding:
|
|
4256
|
+
padding: 7px;
|
|
4211
4257
|
}
|
|
4212
4258
|
|
|
4213
4259
|
.fusioni-input:focus,
|
|
@@ -4217,7 +4263,7 @@
|
|
|
4217
4263
|
}
|
|
4218
4264
|
|
|
4219
4265
|
.fusioni-chat-input {
|
|
4220
|
-
padding:
|
|
4266
|
+
padding: 12.25px 14px 14px;
|
|
4221
4267
|
background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), #fff);
|
|
4222
4268
|
border-top: 1px solid var(--fusioni-border-light);
|
|
4223
4269
|
}
|
|
@@ -4228,14 +4274,14 @@
|
|
|
4228
4274
|
|
|
4229
4275
|
.fusioni-textarea {
|
|
4230
4276
|
min-height: 24px;
|
|
4231
|
-
padding:
|
|
4277
|
+
padding: 7px 5.25px;
|
|
4232
4278
|
}
|
|
4233
4279
|
|
|
4234
4280
|
.fusioni-message-list {
|
|
4235
4281
|
background:
|
|
4236
4282
|
linear-gradient(180deg, rgba(248, 250, 252, 0.84), rgba(255, 255, 255, 0.98)),
|
|
4237
4283
|
var(--fusioni-bg-primary);
|
|
4238
|
-
padding:
|
|
4284
|
+
padding: 15.75px;
|
|
4239
4285
|
}
|
|
4240
4286
|
|
|
4241
4287
|
.fusioni-chat-widget.dark .fusioni-message-list {
|
|
@@ -4245,11 +4291,11 @@
|
|
|
4245
4291
|
}
|
|
4246
4292
|
|
|
4247
4293
|
.fusioni-messages {
|
|
4248
|
-
gap:
|
|
4294
|
+
gap: 15.75px;
|
|
4249
4295
|
}
|
|
4250
4296
|
|
|
4251
4297
|
.fusioni-message {
|
|
4252
|
-
gap:
|
|
4298
|
+
gap: 8.75px;
|
|
4253
4299
|
}
|
|
4254
4300
|
|
|
4255
4301
|
.fusioni-message-avatar {
|
|
@@ -4266,7 +4312,7 @@
|
|
|
4266
4312
|
}
|
|
4267
4313
|
|
|
4268
4314
|
.fusioni-message-bubble {
|
|
4269
|
-
padding:
|
|
4315
|
+
padding: 10.5px 12.25px;
|
|
4270
4316
|
border-radius: 14px;
|
|
4271
4317
|
line-height: 1.55;
|
|
4272
4318
|
box-shadow: 0 1px 2px rgb(16 24 40 / 0.05);
|
|
@@ -4295,12 +4341,12 @@
|
|
|
4295
4341
|
|
|
4296
4342
|
.fusioni-message-role,
|
|
4297
4343
|
.fusioni-message-time {
|
|
4298
|
-
font-size:
|
|
4344
|
+
font-size: 10.08px;
|
|
4299
4345
|
}
|
|
4300
4346
|
|
|
4301
4347
|
.fusioni-conversation-item {
|
|
4302
|
-
margin-bottom:
|
|
4303
|
-
padding:
|
|
4348
|
+
margin-bottom: 7px;
|
|
4349
|
+
padding: 12.25px;
|
|
4304
4350
|
border-radius: 14px;
|
|
4305
4351
|
border: 1px solid var(--fusioni-border-light);
|
|
4306
4352
|
background: var(--fusioni-bg-primary);
|
|
@@ -4372,13 +4418,13 @@
|
|
|
4372
4418
|
}
|
|
4373
4419
|
|
|
4374
4420
|
.fusioni-chat-welcome-content h3 {
|
|
4375
|
-
font-size:
|
|
4421
|
+
font-size: 18.900000000000002px;
|
|
4376
4422
|
letter-spacing: 0;
|
|
4377
4423
|
}
|
|
4378
4424
|
|
|
4379
4425
|
.fusioni-chat-welcome-content p {
|
|
4380
|
-
font-size:
|
|
4381
|
-
margin-bottom:
|
|
4426
|
+
font-size: 13.125px;
|
|
4427
|
+
margin-bottom: 21px;
|
|
4382
4428
|
}
|
|
4383
4429
|
|
|
4384
4430
|
.fusioni-btn-primary {
|
|
@@ -4414,13 +4460,13 @@
|
|
|
4414
4460
|
}
|
|
4415
4461
|
|
|
4416
4462
|
.fusioni-empty-messages {
|
|
4417
|
-
padding:
|
|
4463
|
+
padding: 21px;
|
|
4418
4464
|
}
|
|
4419
4465
|
|
|
4420
4466
|
.fusioni-empty-messages-content {
|
|
4421
4467
|
height: auto;
|
|
4422
4468
|
max-width: 340px;
|
|
4423
|
-
padding:
|
|
4469
|
+
padding: 21px 0;
|
|
4424
4470
|
color: var(--fusioni-text-secondary);
|
|
4425
4471
|
}
|
|
4426
4472
|
|
|
@@ -4431,7 +4477,7 @@
|
|
|
4431
4477
|
justify-content: center;
|
|
4432
4478
|
width: 76px;
|
|
4433
4479
|
height: 76px;
|
|
4434
|
-
margin: 0 auto
|
|
4480
|
+
margin: 0 auto 15.75px;
|
|
4435
4481
|
border-radius: 22px;
|
|
4436
4482
|
background:
|
|
4437
4483
|
radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.9), transparent 38%),
|
|
@@ -4463,16 +4509,16 @@
|
|
|
4463
4509
|
.fusioni-empty-messages-content h3 {
|
|
4464
4510
|
margin: 0;
|
|
4465
4511
|
color: var(--fusioni-text-primary);
|
|
4466
|
-
font-size:
|
|
4512
|
+
font-size: 15.75px;
|
|
4467
4513
|
line-height: 1.35;
|
|
4468
4514
|
font-weight: 700;
|
|
4469
4515
|
letter-spacing: 0;
|
|
4470
4516
|
}
|
|
4471
4517
|
|
|
4472
4518
|
.fusioni-empty-messages-content p {
|
|
4473
|
-
margin:
|
|
4519
|
+
margin: 8.75px 0 0;
|
|
4474
4520
|
color: var(--fusioni-text-secondary);
|
|
4475
|
-
font-size:
|
|
4521
|
+
font-size: 13.125px;
|
|
4476
4522
|
line-height: 1.55;
|
|
4477
4523
|
}
|
|
4478
4524
|
|
|
@@ -4480,8 +4526,8 @@
|
|
|
4480
4526
|
display: flex;
|
|
4481
4527
|
flex-wrap: wrap;
|
|
4482
4528
|
justify-content: center;
|
|
4483
|
-
gap:
|
|
4484
|
-
margin-top:
|
|
4529
|
+
gap: 7px;
|
|
4530
|
+
margin-top: 15.75px;
|
|
4485
4531
|
}
|
|
4486
4532
|
|
|
4487
4533
|
.fusioni-empty-suggestions span,
|
|
@@ -4490,13 +4536,13 @@
|
|
|
4490
4536
|
display: inline-flex;
|
|
4491
4537
|
align-items: center;
|
|
4492
4538
|
min-height: 30px;
|
|
4493
|
-
padding:
|
|
4539
|
+
padding: 5.25px 8.75px;
|
|
4494
4540
|
border-radius: 999px;
|
|
4495
4541
|
color: var(--fusioni-text-secondary);
|
|
4496
4542
|
background: color-mix(in srgb, var(--fusioni-bg-primary) 82%, var(--fusioni-primary) 5%);
|
|
4497
4543
|
border: 1px solid var(--fusioni-border-light);
|
|
4498
4544
|
box-shadow: 0 1px 2px rgb(16 24 40 / 0.04);
|
|
4499
|
-
font-size:
|
|
4545
|
+
font-size: 10.5px;
|
|
4500
4546
|
font-weight: 600;
|
|
4501
4547
|
overflow: hidden;
|
|
4502
4548
|
transform-origin: center;
|
|
@@ -4574,7 +4620,7 @@
|
|
|
4574
4620
|
}
|
|
4575
4621
|
|
|
4576
4622
|
.fusioni-message {
|
|
4577
|
-
gap:
|
|
4623
|
+
gap: 10.5px;
|
|
4578
4624
|
}
|
|
4579
4625
|
|
|
4580
4626
|
.fusioni-message,
|
|
@@ -4585,7 +4631,7 @@
|
|
|
4585
4631
|
.fusioni-message-content {
|
|
4586
4632
|
display: flex;
|
|
4587
4633
|
flex-direction: column;
|
|
4588
|
-
max-width: min(92%,
|
|
4634
|
+
max-width: min(92%, 532px);
|
|
4589
4635
|
}
|
|
4590
4636
|
|
|
4591
4637
|
.fusioni-message:not(.user) .fusioni-message-content {
|
|
@@ -4608,9 +4654,9 @@
|
|
|
4608
4654
|
.fusioni-message-author-row {
|
|
4609
4655
|
display: flex;
|
|
4610
4656
|
align-items: center;
|
|
4611
|
-
gap:
|
|
4612
|
-
margin: 0 0
|
|
4613
|
-
padding: 0
|
|
4657
|
+
gap: 6.3px;
|
|
4658
|
+
margin: 0 0 5.6000000000000005px;
|
|
4659
|
+
padding: 0 3.5px;
|
|
4614
4660
|
}
|
|
4615
4661
|
|
|
4616
4662
|
.fusioni-message.user .fusioni-message-author-row {
|
|
@@ -4620,7 +4666,7 @@
|
|
|
4620
4666
|
|
|
4621
4667
|
.fusioni-message-author-label {
|
|
4622
4668
|
color: var(--fusioni-text-secondary);
|
|
4623
|
-
font-size:
|
|
4669
|
+
font-size: 10.5px;
|
|
4624
4670
|
font-weight: 700;
|
|
4625
4671
|
line-height: 1;
|
|
4626
4672
|
}
|
|
@@ -4654,14 +4700,14 @@
|
|
|
4654
4700
|
}
|
|
4655
4701
|
|
|
4656
4702
|
.fusioni-message-header {
|
|
4657
|
-
margin: 0 0
|
|
4658
|
-
padding-left:
|
|
4703
|
+
margin: 0 0 4.8999999999999995px;
|
|
4704
|
+
padding-left: 3.5px;
|
|
4659
4705
|
}
|
|
4660
4706
|
|
|
4661
4707
|
.fusioni-message-role {
|
|
4662
4708
|
margin-left: 0;
|
|
4663
4709
|
color: var(--fusioni-text-secondary);
|
|
4664
|
-
font-size:
|
|
4710
|
+
font-size: 10.5px;
|
|
4665
4711
|
font-weight: 700;
|
|
4666
4712
|
}
|
|
4667
4713
|
|
|
@@ -4672,7 +4718,7 @@
|
|
|
4672
4718
|
.fusioni-message-bubble {
|
|
4673
4719
|
width: fit-content;
|
|
4674
4720
|
max-width: 100%;
|
|
4675
|
-
padding:
|
|
4721
|
+
padding: 11.549999999999999px 13.299999999999999px;
|
|
4676
4722
|
border-radius: 18px;
|
|
4677
4723
|
line-height: 1.58;
|
|
4678
4724
|
letter-spacing: 0;
|
|
@@ -4738,9 +4784,9 @@
|
|
|
4738
4784
|
.fusioni-message-footer {
|
|
4739
4785
|
width: fit-content;
|
|
4740
4786
|
max-width: 100%;
|
|
4741
|
-
margin:
|
|
4742
|
-
padding: 0
|
|
4743
|
-
gap:
|
|
4787
|
+
margin: 4.8999999999999995px 0 0;
|
|
4788
|
+
padding: 0 3.5px;
|
|
4789
|
+
gap: 5.25px;
|
|
4744
4790
|
color: var(--fusioni-text-muted);
|
|
4745
4791
|
}
|
|
4746
4792
|
|
|
@@ -4752,14 +4798,14 @@
|
|
|
4752
4798
|
|
|
4753
4799
|
.fusioni-message-time {
|
|
4754
4800
|
color: var(--fusioni-text-muted);
|
|
4755
|
-
font-size:
|
|
4801
|
+
font-size: 9.625px;
|
|
4756
4802
|
font-weight: 600;
|
|
4757
4803
|
line-height: 1;
|
|
4758
4804
|
}
|
|
4759
4805
|
|
|
4760
4806
|
.fusioni-message-actions {
|
|
4761
|
-
gap:
|
|
4762
|
-
padding:
|
|
4807
|
+
gap: 1.75px;
|
|
4808
|
+
padding: 1.75px;
|
|
4763
4809
|
border-radius: 999px;
|
|
4764
4810
|
background: color-mix(in srgb, var(--fusioni-bg-primary) 88%, transparent);
|
|
4765
4811
|
border: 1px solid var(--fusioni-border-light);
|
|
@@ -4799,7 +4845,7 @@
|
|
|
4799
4845
|
|
|
4800
4846
|
.fusioni-chat-input {
|
|
4801
4847
|
position: relative;
|
|
4802
|
-
padding:
|
|
4848
|
+
padding: 12.25px 14px 14px;
|
|
4803
4849
|
background:
|
|
4804
4850
|
linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.98)),
|
|
4805
4851
|
var(--fusioni-bg-primary);
|
|
@@ -4811,8 +4857,8 @@
|
|
|
4811
4857
|
content: '';
|
|
4812
4858
|
position: absolute;
|
|
4813
4859
|
top: -1px;
|
|
4814
|
-
left:
|
|
4815
|
-
right:
|
|
4860
|
+
left: 14px;
|
|
4861
|
+
right: 14px;
|
|
4816
4862
|
height: 1px;
|
|
4817
4863
|
background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--fusioni-primary) 18%, var(--fusioni-border)), transparent);
|
|
4818
4864
|
}
|
|
@@ -4823,9 +4869,9 @@
|
|
|
4823
4869
|
|
|
4824
4870
|
.fusioni-input-wrapper {
|
|
4825
4871
|
align-items: flex-end;
|
|
4826
|
-
gap:
|
|
4872
|
+
gap: 7px;
|
|
4827
4873
|
min-height: 58px;
|
|
4828
|
-
padding:
|
|
4874
|
+
padding: 7px 7px 7px 10.5px;
|
|
4829
4875
|
border-radius: 18px;
|
|
4830
4876
|
border: 1px solid color-mix(in srgb, var(--fusioni-border) 86%, var(--fusioni-primary) 14%);
|
|
4831
4877
|
background:
|
|
@@ -4843,9 +4889,9 @@
|
|
|
4843
4889
|
.fusioni-textarea {
|
|
4844
4890
|
min-height: 24px;
|
|
4845
4891
|
max-height: 128px;
|
|
4846
|
-
padding:
|
|
4892
|
+
padding: 7.700000000000001px 3.5px;
|
|
4847
4893
|
color: var(--fusioni-text-primary);
|
|
4848
|
-
font-size:
|
|
4894
|
+
font-size: 12.950000000000001px;
|
|
4849
4895
|
line-height: 1.5;
|
|
4850
4896
|
}
|
|
4851
4897
|
|
|
@@ -4855,8 +4901,8 @@
|
|
|
4855
4901
|
|
|
4856
4902
|
.fusioni-input-actions {
|
|
4857
4903
|
align-items: center;
|
|
4858
|
-
gap:
|
|
4859
|
-
padding-bottom:
|
|
4904
|
+
gap: 3.5px;
|
|
4905
|
+
padding-bottom: 1.75px;
|
|
4860
4906
|
}
|
|
4861
4907
|
|
|
4862
4908
|
.fusioni-input-actions .fusioni-btn-icon {
|
|
@@ -4875,7 +4921,7 @@
|
|
|
4875
4921
|
.fusioni-input-actions .fusioni-btn-send {
|
|
4876
4922
|
width: 38px;
|
|
4877
4923
|
height: 38px;
|
|
4878
|
-
margin-left:
|
|
4924
|
+
margin-left: 1.75px;
|
|
4879
4925
|
border-radius: 14px;
|
|
4880
4926
|
color: #fff;
|
|
4881
4927
|
background:
|
|
@@ -4904,7 +4950,7 @@
|
|
|
4904
4950
|
|
|
4905
4951
|
.fusioni-image-preview,
|
|
4906
4952
|
.fusioni-audio-preview {
|
|
4907
|
-
margin-bottom:
|
|
4953
|
+
margin-bottom: 10.5px;
|
|
4908
4954
|
}
|
|
4909
4955
|
|
|
4910
4956
|
.fusioni-preview-image {
|
|
@@ -4916,8 +4962,8 @@
|
|
|
4916
4962
|
}
|
|
4917
4963
|
|
|
4918
4964
|
.fusioni-image-preview-content .fusioni-btn {
|
|
4919
|
-
top:
|
|
4920
|
-
right:
|
|
4965
|
+
top: 5.25px;
|
|
4966
|
+
right: 5.25px;
|
|
4921
4967
|
width: 30px;
|
|
4922
4968
|
height: 30px;
|
|
4923
4969
|
color: #fff;
|
|
@@ -4927,7 +4973,7 @@
|
|
|
4927
4973
|
}
|
|
4928
4974
|
|
|
4929
4975
|
.fusioni-audio-preview {
|
|
4930
|
-
padding:
|
|
4976
|
+
padding: 12.25px;
|
|
4931
4977
|
border-radius: 16px;
|
|
4932
4978
|
background: var(--fusioni-bg-primary);
|
|
4933
4979
|
border: 1px solid var(--fusioni-border-light);
|
|
@@ -4968,8 +5014,8 @@
|
|
|
4968
5014
|
|
|
4969
5015
|
.fusioni-document-images,
|
|
4970
5016
|
.fusioni-document-videos {
|
|
4971
|
-
margin-top:
|
|
4972
|
-
padding:
|
|
5017
|
+
margin-top: 12.25px;
|
|
5018
|
+
padding: 10.5px;
|
|
4973
5019
|
border-radius: 16px;
|
|
4974
5020
|
background:
|
|
4975
5021
|
linear-gradient(180deg, rgba(248, 250, 252, 0.86), rgba(255, 255, 255, 0.72));
|
|
@@ -4980,7 +5026,7 @@
|
|
|
4980
5026
|
.fusioni-document-images-header,
|
|
4981
5027
|
.fusioni-document-videos-header {
|
|
4982
5028
|
justify-content: flex-start;
|
|
4983
|
-
margin-bottom:
|
|
5029
|
+
margin-bottom: 8.75px;
|
|
4984
5030
|
min-height: auto;
|
|
4985
5031
|
}
|
|
4986
5032
|
|
|
@@ -4991,25 +5037,25 @@
|
|
|
4991
5037
|
|
|
4992
5038
|
.fusioni-document-images-header-label,
|
|
4993
5039
|
.fusioni-document-videos-header-label {
|
|
4994
|
-
gap:
|
|
5040
|
+
gap: 6.3px;
|
|
4995
5041
|
padding: 0;
|
|
4996
5042
|
color: var(--fusioni-text-primary);
|
|
4997
5043
|
background: transparent;
|
|
4998
|
-
font-size:
|
|
5044
|
+
font-size: 10.5px;
|
|
4999
5045
|
font-weight: 800;
|
|
5000
5046
|
letter-spacing: 0;
|
|
5001
5047
|
}
|
|
5002
5048
|
|
|
5003
5049
|
.fusioni-document-images-header-icon,
|
|
5004
5050
|
.fusioni-document-videos-header-icon {
|
|
5005
|
-
width:
|
|
5006
|
-
height:
|
|
5051
|
+
width: 13.299999999999999px;
|
|
5052
|
+
height: 13.299999999999999px;
|
|
5007
5053
|
color: var(--fusioni-primary);
|
|
5008
5054
|
opacity: 1;
|
|
5009
5055
|
}
|
|
5010
5056
|
|
|
5011
5057
|
.fusioni-gallery-strip-grid {
|
|
5012
|
-
gap:
|
|
5058
|
+
gap: 8.75px;
|
|
5013
5059
|
}
|
|
5014
5060
|
|
|
5015
5061
|
.fusioni-document-image-btn,
|
|
@@ -5065,11 +5111,11 @@
|
|
|
5065
5111
|
.fusioni-document-video-aspect::before {
|
|
5066
5112
|
content: '';
|
|
5067
5113
|
position: absolute;
|
|
5068
|
-
left:
|
|
5069
|
-
top:
|
|
5114
|
+
left: 8.75px;
|
|
5115
|
+
top: 8.75px;
|
|
5070
5116
|
z-index: 1;
|
|
5071
|
-
width:
|
|
5072
|
-
height:
|
|
5117
|
+
width: 28px;
|
|
5118
|
+
height: 28px;
|
|
5073
5119
|
border-radius: 999px;
|
|
5074
5120
|
background: rgba(15, 23, 42, 0.62);
|
|
5075
5121
|
border: 1px solid rgba(255, 255, 255, 0.28);
|
|
@@ -5080,30 +5126,30 @@
|
|
|
5080
5126
|
.fusioni-document-video-wrap::after {
|
|
5081
5127
|
content: '';
|
|
5082
5128
|
position: absolute;
|
|
5083
|
-
left:
|
|
5084
|
-
top:
|
|
5129
|
+
left: 19.18px;
|
|
5130
|
+
top: 16.87px;
|
|
5085
5131
|
z-index: 2;
|
|
5086
5132
|
width: 0;
|
|
5087
5133
|
height: 0;
|
|
5088
|
-
border-top:
|
|
5089
|
-
border-bottom:
|
|
5090
|
-
border-left:
|
|
5134
|
+
border-top: 5.32px solid transparent;
|
|
5135
|
+
border-bottom: 5.32px solid transparent;
|
|
5136
|
+
border-left: 7.700000000000001px solid #fff;
|
|
5091
5137
|
pointer-events: none;
|
|
5092
5138
|
}
|
|
5093
5139
|
|
|
5094
5140
|
.fusioni-gallery-strip-dots {
|
|
5095
|
-
margin-top:
|
|
5096
|
-
gap:
|
|
5141
|
+
margin-top: 10.5px;
|
|
5142
|
+
gap: 5.25px;
|
|
5097
5143
|
}
|
|
5098
5144
|
|
|
5099
5145
|
.fusioni-gallery-strip--document .fusioni-gallery-strip-dot {
|
|
5100
|
-
width:
|
|
5101
|
-
height:
|
|
5146
|
+
width: 6.3px;
|
|
5147
|
+
height: 6.3px;
|
|
5102
5148
|
background: var(--fusioni-border);
|
|
5103
5149
|
}
|
|
5104
5150
|
|
|
5105
5151
|
.fusioni-gallery-strip--document .fusioni-gallery-strip-dot-active {
|
|
5106
|
-
width:
|
|
5152
|
+
width: 15.400000000000002px;
|
|
5107
5153
|
background: var(--fusioni-primary);
|
|
5108
5154
|
}
|
|
5109
5155
|
|
|
@@ -5212,12 +5258,12 @@
|
|
|
5212
5258
|
}
|
|
5213
5259
|
|
|
5214
5260
|
.fusioni-header-actions {
|
|
5215
|
-
gap:
|
|
5261
|
+
gap: 5.25px;
|
|
5216
5262
|
}
|
|
5217
5263
|
|
|
5218
5264
|
.fusioni-language-button {
|
|
5219
5265
|
min-width: 0;
|
|
5220
|
-
padding:
|
|
5266
|
+
padding: 7px;
|
|
5221
5267
|
}
|
|
5222
5268
|
|
|
5223
5269
|
.fusioni-language-name {
|