@fusioni/client-sdk 1.1.22 → 1.1.23
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/dist/fusioni-sdk.umd.js +2 -2
- package/dist/index.css +339 -334
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -46,14 +46,19 @@
|
|
|
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 for Shadow DOM: rem units in this stylesheet are rewritten at
|
|
59
|
+
build time to calc(var(--fusioni-rem) * N) so host-page html font-size cannot
|
|
60
|
+
shrink SDK typography (inputs, labels, timestamps, etc.). */
|
|
61
|
+
--fusioni-rem: 14px;
|
|
57
62
|
}
|
|
58
63
|
|
|
59
64
|
/* Fusioni Chat Widget - Override with custom primary color */
|
|
@@ -411,23 +416,23 @@
|
|
|
411
416
|
|
|
412
417
|
/* Floating button positioning */
|
|
413
418
|
.fusioni-floating-button-bottom-right {
|
|
414
|
-
bottom:
|
|
415
|
-
right:
|
|
419
|
+
bottom: 14px;
|
|
420
|
+
right: 14px;
|
|
416
421
|
}
|
|
417
422
|
|
|
418
423
|
.fusioni-floating-button-bottom-left {
|
|
419
|
-
bottom:
|
|
420
|
-
left:
|
|
424
|
+
bottom: 14px;
|
|
425
|
+
left: 14px;
|
|
421
426
|
}
|
|
422
427
|
|
|
423
428
|
.fusioni-floating-button-top-right {
|
|
424
|
-
top:
|
|
425
|
-
right:
|
|
429
|
+
top: 14px;
|
|
430
|
+
right: 14px;
|
|
426
431
|
}
|
|
427
432
|
|
|
428
433
|
.fusioni-floating-button-top-left {
|
|
429
|
-
top:
|
|
430
|
-
left:
|
|
434
|
+
top: 14px;
|
|
435
|
+
left: 14px;
|
|
431
436
|
}
|
|
432
437
|
|
|
433
438
|
/* Chat Panel */
|
|
@@ -435,8 +440,8 @@
|
|
|
435
440
|
position: fixed;
|
|
436
441
|
width: 480px;
|
|
437
442
|
height: 640px;
|
|
438
|
-
max-width: calc(100vw -
|
|
439
|
-
max-height: calc(100vh -
|
|
443
|
+
max-width: calc(100vw - 28px);
|
|
444
|
+
max-height: calc(100vh - 28px);
|
|
440
445
|
background: var(--fusioni-bg-primary);
|
|
441
446
|
border-radius: var(--fusioni-radius-2xl);
|
|
442
447
|
box-shadow: var(--fusioni-shadow-2xl);
|
|
@@ -468,23 +473,23 @@
|
|
|
468
473
|
|
|
469
474
|
/* Chat panel positioning */
|
|
470
475
|
.fusioni-chat-panel-bottom-right {
|
|
471
|
-
bottom:
|
|
472
|
-
right:
|
|
476
|
+
bottom: 70px;
|
|
477
|
+
right: 14px;
|
|
473
478
|
}
|
|
474
479
|
|
|
475
480
|
.fusioni-chat-panel-bottom-left {
|
|
476
|
-
bottom:
|
|
477
|
-
left:
|
|
481
|
+
bottom: 70px;
|
|
482
|
+
left: 14px;
|
|
478
483
|
}
|
|
479
484
|
|
|
480
485
|
.fusioni-chat-panel-top-right {
|
|
481
|
-
top:
|
|
482
|
-
right:
|
|
486
|
+
top: 70px;
|
|
487
|
+
right: 14px;
|
|
483
488
|
}
|
|
484
489
|
|
|
485
490
|
.fusioni-chat-panel-top-left {
|
|
486
|
-
top:
|
|
487
|
-
left:
|
|
491
|
+
top: 70px;
|
|
492
|
+
left: 14px;
|
|
488
493
|
}
|
|
489
494
|
|
|
490
495
|
/* Fullscreen mode */
|
|
@@ -582,7 +587,7 @@
|
|
|
582
587
|
}
|
|
583
588
|
|
|
584
589
|
.fusioni-conversation-header {
|
|
585
|
-
padding:
|
|
590
|
+
padding: 17.5px 14px;
|
|
586
591
|
border-bottom: 1px solid var(--fusioni-border-light);
|
|
587
592
|
display: flex;
|
|
588
593
|
align-items: center;
|
|
@@ -598,7 +603,7 @@
|
|
|
598
603
|
.fusioni-conversation-title {
|
|
599
604
|
display: flex;
|
|
600
605
|
align-items: center;
|
|
601
|
-
gap:
|
|
606
|
+
gap: 10.5px;
|
|
602
607
|
}
|
|
603
608
|
|
|
604
609
|
.fusioni-conversation-logo {
|
|
@@ -615,19 +620,19 @@
|
|
|
615
620
|
|
|
616
621
|
.fusioni-conversation-info h3 {
|
|
617
622
|
margin: 0;
|
|
618
|
-
font-size:
|
|
623
|
+
font-size: 14px;
|
|
619
624
|
font-weight: 600;
|
|
620
625
|
color: var(--fusioni-text-primary);
|
|
621
626
|
}
|
|
622
627
|
|
|
623
628
|
.fusioni-conversation-info p {
|
|
624
629
|
margin: 0;
|
|
625
|
-
font-size:
|
|
630
|
+
font-size: 10.5px;
|
|
626
631
|
color: var(--fusioni-text-secondary);
|
|
627
632
|
}
|
|
628
633
|
|
|
629
634
|
.fusioni-conversation-search {
|
|
630
|
-
padding:
|
|
635
|
+
padding: 14px;
|
|
631
636
|
}
|
|
632
637
|
|
|
633
638
|
.fusioni-search-input {
|
|
@@ -636,12 +641,12 @@
|
|
|
636
641
|
|
|
637
642
|
.fusioni-input {
|
|
638
643
|
width: 100%;
|
|
639
|
-
padding:
|
|
644
|
+
padding: 10.5px 35px 10.5px 14px;
|
|
640
645
|
border: 1px solid var(--fusioni-border-light);
|
|
641
646
|
border-radius: var(--fusioni-radius-lg);
|
|
642
647
|
background: var(--fusioni-bg-secondary);
|
|
643
648
|
color: var(--fusioni-text-primary);
|
|
644
|
-
font-size:
|
|
649
|
+
font-size: 12.25px;
|
|
645
650
|
transition: var(--fusioni-transition);
|
|
646
651
|
box-shadow: var(--fusioni-shadow);
|
|
647
652
|
}
|
|
@@ -664,7 +669,7 @@
|
|
|
664
669
|
|
|
665
670
|
.fusioni-search-icon {
|
|
666
671
|
position: absolute;
|
|
667
|
-
right:
|
|
672
|
+
right: 10.5px;
|
|
668
673
|
top: 50%;
|
|
669
674
|
transform: translateY(-50%);
|
|
670
675
|
color: var(--fusioni-text-muted);
|
|
@@ -674,23 +679,23 @@
|
|
|
674
679
|
.fusioni-divider {
|
|
675
680
|
height: 1px;
|
|
676
681
|
background: var(--fusioni-border);
|
|
677
|
-
margin: 0
|
|
682
|
+
margin: 0 14px;
|
|
678
683
|
}
|
|
679
684
|
|
|
680
685
|
.fusioni-conversations {
|
|
681
686
|
flex: 1;
|
|
682
687
|
overflow-y: auto;
|
|
683
|
-
padding:
|
|
688
|
+
padding: 7px;
|
|
684
689
|
}
|
|
685
690
|
|
|
686
691
|
.fusioni-conversation-item {
|
|
687
692
|
position: relative;
|
|
688
|
-
padding:
|
|
689
|
-
padding-right:
|
|
693
|
+
padding: 14px;
|
|
694
|
+
padding-right: 7px;
|
|
690
695
|
border-radius: var(--fusioni-radius-lg);
|
|
691
696
|
cursor: pointer;
|
|
692
697
|
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
|
|
693
|
-
margin-bottom:
|
|
698
|
+
margin-bottom: 7px;
|
|
694
699
|
background: var(--fusioni-bg-primary);
|
|
695
700
|
border: 1px solid var(--fusioni-border-light);
|
|
696
701
|
box-shadow: var(--fusioni-shadow);
|
|
@@ -845,14 +850,14 @@
|
|
|
845
850
|
z-index: 2;
|
|
846
851
|
display: flex;
|
|
847
852
|
flex-direction: column;
|
|
848
|
-
gap:
|
|
853
|
+
gap: 7px;
|
|
849
854
|
}
|
|
850
855
|
|
|
851
856
|
.fusioni-conversation-main {
|
|
852
857
|
display: flex;
|
|
853
858
|
align-items: flex-start;
|
|
854
859
|
justify-content: space-between;
|
|
855
|
-
gap:
|
|
860
|
+
gap: 14px;
|
|
856
861
|
}
|
|
857
862
|
|
|
858
863
|
.fusioni-conversation-title-section {
|
|
@@ -860,18 +865,18 @@
|
|
|
860
865
|
min-width: 0;
|
|
861
866
|
display: flex;
|
|
862
867
|
flex-direction: column;
|
|
863
|
-
gap:
|
|
868
|
+
gap: 7px;
|
|
864
869
|
}
|
|
865
870
|
|
|
866
871
|
.fusioni-conversation-title-text {
|
|
867
872
|
margin: 0;
|
|
868
|
-
font-size:
|
|
873
|
+
font-size: 13.299999999999999px;
|
|
869
874
|
font-weight: 600;
|
|
870
875
|
line-height: 1.3;
|
|
871
876
|
color: var(--fusioni-text-primary);
|
|
872
877
|
display: flex;
|
|
873
878
|
align-items: center;
|
|
874
|
-
gap:
|
|
879
|
+
gap: 7px;
|
|
875
880
|
flex-wrap: wrap;
|
|
876
881
|
word-break: break-word;
|
|
877
882
|
}
|
|
@@ -884,15 +889,15 @@
|
|
|
884
889
|
display: flex;
|
|
885
890
|
align-items: center;
|
|
886
891
|
justify-content: space-between;
|
|
887
|
-
gap:
|
|
888
|
-
margin-top:
|
|
892
|
+
gap: 10.5px;
|
|
893
|
+
margin-top: 3.5px;
|
|
889
894
|
}
|
|
890
895
|
|
|
891
896
|
.fusioni-conversation-status {
|
|
892
897
|
display: flex;
|
|
893
898
|
align-items: center;
|
|
894
|
-
gap:
|
|
895
|
-
font-size:
|
|
899
|
+
gap: 5.25px;
|
|
900
|
+
font-size: 10.5px;
|
|
896
901
|
color: var(--fusioni-text-muted);
|
|
897
902
|
font-weight: 500;
|
|
898
903
|
}
|
|
@@ -920,9 +925,9 @@
|
|
|
920
925
|
align-items: center;
|
|
921
926
|
background: linear-gradient(135deg, var(--fusioni-warning) 0%, #f59e0b 100%);
|
|
922
927
|
color: white;
|
|
923
|
-
padding:
|
|
928
|
+
padding: 3.5px 7px;
|
|
924
929
|
border-radius: var(--fusioni-radius);
|
|
925
|
-
font-size:
|
|
930
|
+
font-size: 8.75px;
|
|
926
931
|
font-weight: 700;
|
|
927
932
|
text-transform: uppercase;
|
|
928
933
|
letter-spacing: 0.05em;
|
|
@@ -949,9 +954,9 @@
|
|
|
949
954
|
|
|
950
955
|
.fusioni-conversation-actions {
|
|
951
956
|
display: flex;
|
|
952
|
-
gap:
|
|
957
|
+
gap: 3.5px;
|
|
953
958
|
align-items: flex-start;
|
|
954
|
-
margin-top:
|
|
959
|
+
margin-top: 3.5px;
|
|
955
960
|
}
|
|
956
961
|
|
|
957
962
|
.fusioni-delete-btn {
|
|
@@ -979,7 +984,7 @@
|
|
|
979
984
|
|
|
980
985
|
.fusioni-conversation-date {
|
|
981
986
|
margin: 0;
|
|
982
|
-
font-size:
|
|
987
|
+
font-size: 10.5px;
|
|
983
988
|
color: var(--fusioni-text-muted);
|
|
984
989
|
font-weight: 500;
|
|
985
990
|
}
|
|
@@ -1033,7 +1038,7 @@
|
|
|
1033
1038
|
}
|
|
1034
1039
|
|
|
1035
1040
|
.fusioni-empty-state {
|
|
1036
|
-
padding:
|
|
1041
|
+
padding: 28px;
|
|
1037
1042
|
text-align: center;
|
|
1038
1043
|
color: var(--fusioni-text-muted);
|
|
1039
1044
|
}
|
|
@@ -1042,7 +1047,7 @@
|
|
|
1042
1047
|
.fusioni-message-list {
|
|
1043
1048
|
flex: 1;
|
|
1044
1049
|
overflow-y: auto;
|
|
1045
|
-
padding:
|
|
1050
|
+
padding: 14px;
|
|
1046
1051
|
background: var(--fusioni-bg-primary);
|
|
1047
1052
|
display: flex;
|
|
1048
1053
|
flex-direction: column;
|
|
@@ -1051,7 +1056,7 @@
|
|
|
1051
1056
|
.fusioni-messages-container {
|
|
1052
1057
|
display: flex;
|
|
1053
1058
|
flex-direction: column;
|
|
1054
|
-
gap:
|
|
1059
|
+
gap: 14px;
|
|
1055
1060
|
height: 100%;
|
|
1056
1061
|
}
|
|
1057
1062
|
|
|
@@ -1075,14 +1080,14 @@
|
|
|
1075
1080
|
.fusioni-empty-icon {
|
|
1076
1081
|
width: 64px;
|
|
1077
1082
|
height: 64px;
|
|
1078
|
-
margin: 0 auto
|
|
1083
|
+
margin: 0 auto 14px;
|
|
1079
1084
|
color: var(--fusioni-text-muted);
|
|
1080
1085
|
}
|
|
1081
1086
|
|
|
1082
1087
|
.fusioni-messages {
|
|
1083
1088
|
display: flex;
|
|
1084
1089
|
flex-direction: column;
|
|
1085
|
-
gap:
|
|
1090
|
+
gap: 14px;
|
|
1086
1091
|
}
|
|
1087
1092
|
|
|
1088
1093
|
.fusioni-message-wrapper {
|
|
@@ -1125,26 +1130,26 @@
|
|
|
1125
1130
|
.fusioni-message-header {
|
|
1126
1131
|
display: flex;
|
|
1127
1132
|
align-items: center;
|
|
1128
|
-
gap:
|
|
1129
|
-
margin-bottom:
|
|
1133
|
+
gap: 7px;
|
|
1134
|
+
margin-bottom: 3.5px;
|
|
1130
1135
|
}
|
|
1131
1136
|
|
|
1132
1137
|
.fusioni-message-footer {
|
|
1133
1138
|
display: flex;
|
|
1134
1139
|
align-items: center;
|
|
1135
|
-
gap:
|
|
1136
|
-
margin-bottom:
|
|
1140
|
+
gap: 7px;
|
|
1141
|
+
margin-bottom: 3.5px;
|
|
1137
1142
|
}
|
|
1138
1143
|
|
|
1139
1144
|
.fusioni-message-role {
|
|
1140
|
-
font-size:
|
|
1145
|
+
font-size: 10.5px;
|
|
1141
1146
|
font-weight: 500;
|
|
1142
1147
|
margin-left: 5px;
|
|
1143
1148
|
color: var(--fusioni-text-secondary);
|
|
1144
1149
|
}
|
|
1145
1150
|
|
|
1146
1151
|
.fusioni-message-time {
|
|
1147
|
-
font-size:
|
|
1152
|
+
font-size: 10.5px;
|
|
1148
1153
|
color: var(--fusioni-text-muted);
|
|
1149
1154
|
}
|
|
1150
1155
|
|
|
@@ -1153,7 +1158,7 @@
|
|
|
1153
1158
|
}
|
|
1154
1159
|
|
|
1155
1160
|
.fusioni-message-bubble {
|
|
1156
|
-
padding:
|
|
1161
|
+
padding: 10.5px 14px;
|
|
1157
1162
|
border-radius: var(--fusioni-radius-lg);
|
|
1158
1163
|
max-width: 100%;
|
|
1159
1164
|
word-wrap: break-word;
|
|
@@ -1169,13 +1174,13 @@
|
|
|
1169
1174
|
.fusioni-message-user {
|
|
1170
1175
|
background: var(--fusioni-primary);
|
|
1171
1176
|
color: white;
|
|
1172
|
-
border-bottom-right-radius:
|
|
1177
|
+
border-bottom-right-radius: 3.5px;
|
|
1173
1178
|
}
|
|
1174
1179
|
|
|
1175
1180
|
.fusioni-message-assistant {
|
|
1176
1181
|
background: var(--fusioni-bg-secondary);
|
|
1177
1182
|
color: var(--fusioni-text-primary);
|
|
1178
|
-
border-bottom-left-radius:
|
|
1183
|
+
border-bottom-left-radius: 3.5px;
|
|
1179
1184
|
}
|
|
1180
1185
|
|
|
1181
1186
|
/* Bubble shell is a no-op while streaming UI lives in MessageList (MessageStreamLoading sibling). */
|
|
@@ -1208,25 +1213,25 @@
|
|
|
1208
1213
|
.fusioni-message-text h1,
|
|
1209
1214
|
.fusioni-message-text h2,
|
|
1210
1215
|
.fusioni-message-text h3 {
|
|
1211
|
-
margin:
|
|
1216
|
+
margin: 7px 0 3.5px;
|
|
1212
1217
|
line-height: 1.25;
|
|
1213
1218
|
}
|
|
1214
1219
|
|
|
1215
1220
|
.fusioni-message-text p {
|
|
1216
|
-
margin:
|
|
1221
|
+
margin: 7px 0;
|
|
1217
1222
|
}
|
|
1218
1223
|
|
|
1219
1224
|
.fusioni-message-text ul,
|
|
1220
1225
|
.fusioni-message-text ol {
|
|
1221
|
-
margin:
|
|
1222
|
-
padding-left:
|
|
1226
|
+
margin: 7px 0;
|
|
1227
|
+
padding-left: 14px;
|
|
1223
1228
|
list-style-position: outside;
|
|
1224
1229
|
}
|
|
1225
1230
|
|
|
1226
1231
|
.fusioni-message-text code {
|
|
1227
1232
|
background: var(--fusioni-bg-tertiary);
|
|
1228
|
-
padding:
|
|
1229
|
-
border-radius:
|
|
1233
|
+
padding: 1.75px 3.5px;
|
|
1234
|
+
border-radius: 3.5px;
|
|
1230
1235
|
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
|
|
1231
1236
|
font-size: 0.875em;
|
|
1232
1237
|
}
|
|
@@ -1234,10 +1239,10 @@
|
|
|
1234
1239
|
.fusioni-message-text pre {
|
|
1235
1240
|
background: var(--fusioni-bg-dark);
|
|
1236
1241
|
color: var(--fusioni-text-light);
|
|
1237
|
-
padding:
|
|
1242
|
+
padding: 10.5px;
|
|
1238
1243
|
border-radius: var(--fusioni-radius);
|
|
1239
1244
|
overflow-x: auto;
|
|
1240
|
-
margin:
|
|
1245
|
+
margin: 7px 0;
|
|
1241
1246
|
}
|
|
1242
1247
|
|
|
1243
1248
|
.fusioni-message-text a {
|
|
@@ -1251,15 +1256,15 @@
|
|
|
1251
1256
|
overflow: hidden;
|
|
1252
1257
|
border-collapse: separate;
|
|
1253
1258
|
border-spacing: 0;
|
|
1254
|
-
font-size:
|
|
1255
|
-
line-height:
|
|
1259
|
+
font-size: 12.25px;
|
|
1260
|
+
line-height: 17.5px;
|
|
1256
1261
|
text-align: left;
|
|
1257
1262
|
color: #374151;
|
|
1258
1263
|
background-color: #ffffff;
|
|
1259
1264
|
border: 1px solid #e5e7eb;
|
|
1260
|
-
border-radius:
|
|
1265
|
+
border-radius: 7px;
|
|
1261
1266
|
box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
1262
|
-
margin:
|
|
1267
|
+
margin: 17.5px 0;
|
|
1263
1268
|
}
|
|
1264
1269
|
|
|
1265
1270
|
[dir="rtl"] .fusioni-message-text table {
|
|
@@ -1267,9 +1272,9 @@
|
|
|
1267
1272
|
}
|
|
1268
1273
|
|
|
1269
1274
|
.fusioni-message-text table th {
|
|
1270
|
-
padding:
|
|
1271
|
-
font-size:
|
|
1272
|
-
line-height:
|
|
1275
|
+
padding: 14px;
|
|
1276
|
+
font-size: 10.5px;
|
|
1277
|
+
line-height: 14px;
|
|
1273
1278
|
font-weight: 600;
|
|
1274
1279
|
letter-spacing: 0.05em;
|
|
1275
1280
|
text-transform: uppercase;
|
|
@@ -1279,7 +1284,7 @@
|
|
|
1279
1284
|
}
|
|
1280
1285
|
|
|
1281
1286
|
.fusioni-message-text table td {
|
|
1282
|
-
padding:
|
|
1287
|
+
padding: 14px;
|
|
1283
1288
|
vertical-align: top;
|
|
1284
1289
|
border-bottom: 1px solid #f3f4f6;
|
|
1285
1290
|
}
|
|
@@ -1317,11 +1322,11 @@
|
|
|
1317
1322
|
}
|
|
1318
1323
|
|
|
1319
1324
|
.fusioni-message-extra {
|
|
1320
|
-
margin-top:
|
|
1325
|
+
margin-top: 7px;
|
|
1321
1326
|
}
|
|
1322
1327
|
|
|
1323
1328
|
.fusioni-message-image {
|
|
1324
|
-
margin-top:
|
|
1329
|
+
margin-top: 7px;
|
|
1325
1330
|
}
|
|
1326
1331
|
|
|
1327
1332
|
.fusioni-image {
|
|
@@ -1332,8 +1337,8 @@
|
|
|
1332
1337
|
}
|
|
1333
1338
|
|
|
1334
1339
|
.fusioni-message-audio {
|
|
1335
|
-
margin-top:
|
|
1336
|
-
padding:
|
|
1340
|
+
margin-top: 7px;
|
|
1341
|
+
padding: 10.5px;
|
|
1337
1342
|
background: var(--fusioni-bg-tertiary);
|
|
1338
1343
|
border-radius: var(--fusioni-radius);
|
|
1339
1344
|
}
|
|
@@ -1341,14 +1346,14 @@
|
|
|
1341
1346
|
.fusioni-audio-header {
|
|
1342
1347
|
display: flex;
|
|
1343
1348
|
align-items: center;
|
|
1344
|
-
gap:
|
|
1345
|
-
margin-bottom:
|
|
1346
|
-
font-size:
|
|
1349
|
+
gap: 7px;
|
|
1350
|
+
margin-bottom: 7px;
|
|
1351
|
+
font-size: 12.25px;
|
|
1347
1352
|
color: var(--fusioni-text-secondary);
|
|
1348
1353
|
}
|
|
1349
1354
|
|
|
1350
1355
|
.fusioni-audio-duration {
|
|
1351
|
-
font-size:
|
|
1356
|
+
font-size: 10.5px;
|
|
1352
1357
|
color: var(--fusioni-text-muted);
|
|
1353
1358
|
}
|
|
1354
1359
|
|
|
@@ -1358,11 +1363,11 @@
|
|
|
1358
1363
|
}
|
|
1359
1364
|
|
|
1360
1365
|
.fusioni-message-map {
|
|
1361
|
-
margin-top:
|
|
1366
|
+
margin-top: 7px;
|
|
1362
1367
|
}
|
|
1363
1368
|
|
|
1364
1369
|
.fusioni-map-placeholder {
|
|
1365
|
-
padding:
|
|
1370
|
+
padding: 14px;
|
|
1366
1371
|
background: var(--fusioni-bg-tertiary);
|
|
1367
1372
|
border-radius: var(--fusioni-radius);
|
|
1368
1373
|
text-align: center;
|
|
@@ -1371,7 +1376,7 @@
|
|
|
1371
1376
|
|
|
1372
1377
|
/* Map Component Styles */
|
|
1373
1378
|
.fusioni-map-container {
|
|
1374
|
-
margin-top:
|
|
1379
|
+
margin-top: 7px;
|
|
1375
1380
|
border-radius: var(--fusioni-radius);
|
|
1376
1381
|
overflow: hidden;
|
|
1377
1382
|
box-shadow: var(--fusioni-shadow);
|
|
@@ -1403,7 +1408,7 @@
|
|
|
1403
1408
|
display: flex;
|
|
1404
1409
|
align-items: center;
|
|
1405
1410
|
justify-content: center;
|
|
1406
|
-
padding:
|
|
1411
|
+
padding: 28px;
|
|
1407
1412
|
background: var(--fusioni-bg-tertiary);
|
|
1408
1413
|
border-radius: var(--fusioni-radius);
|
|
1409
1414
|
border: 1px solid var(--fusioni-border);
|
|
@@ -1413,7 +1418,7 @@
|
|
|
1413
1418
|
display: flex;
|
|
1414
1419
|
flex-direction: column;
|
|
1415
1420
|
align-items: center;
|
|
1416
|
-
gap:
|
|
1421
|
+
gap: 10.5px;
|
|
1417
1422
|
color: var(--fusioni-text-secondary);
|
|
1418
1423
|
}
|
|
1419
1424
|
|
|
@@ -1430,7 +1435,7 @@
|
|
|
1430
1435
|
display: flex;
|
|
1431
1436
|
align-items: center;
|
|
1432
1437
|
justify-content: center;
|
|
1433
|
-
padding:
|
|
1438
|
+
padding: 14px;
|
|
1434
1439
|
background: rgba(220, 38, 38, 0.05);
|
|
1435
1440
|
border: 1px solid rgba(220, 38, 38, 0.2);
|
|
1436
1441
|
border-radius: var(--fusioni-radius);
|
|
@@ -1440,8 +1445,8 @@
|
|
|
1440
1445
|
.fusioni-map-error-content {
|
|
1441
1446
|
display: flex;
|
|
1442
1447
|
align-items: center;
|
|
1443
|
-
gap:
|
|
1444
|
-
font-size:
|
|
1448
|
+
gap: 7px;
|
|
1449
|
+
font-size: 12.25px;
|
|
1445
1450
|
}
|
|
1446
1451
|
|
|
1447
1452
|
/* Dark theme adjustments for map */
|
|
@@ -1460,8 +1465,8 @@
|
|
|
1460
1465
|
}
|
|
1461
1466
|
|
|
1462
1467
|
.fusioni-message-thoughts {
|
|
1463
|
-
margin-top:
|
|
1464
|
-
font-size:
|
|
1468
|
+
margin-top: 7px;
|
|
1469
|
+
font-size: 10.5px;
|
|
1465
1470
|
color: var(--fusioni-text-muted);
|
|
1466
1471
|
}
|
|
1467
1472
|
|
|
@@ -1478,7 +1483,7 @@
|
|
|
1478
1483
|
flex-direction: row;
|
|
1479
1484
|
align-items: center;
|
|
1480
1485
|
margin-left: auto;
|
|
1481
|
-
gap:
|
|
1486
|
+
gap: 1.4000000000000001px;
|
|
1482
1487
|
opacity: 0;
|
|
1483
1488
|
transition: var(--fusioni-transition);
|
|
1484
1489
|
}
|
|
@@ -1494,10 +1499,10 @@
|
|
|
1494
1499
|
.fusioni-message-error-indicator {
|
|
1495
1500
|
display: flex;
|
|
1496
1501
|
align-items: center;
|
|
1497
|
-
gap:
|
|
1498
|
-
font-size:
|
|
1502
|
+
gap: 3.5px;
|
|
1503
|
+
font-size: 10.5px;
|
|
1499
1504
|
color: var(--fusioni-error);
|
|
1500
|
-
margin-top:
|
|
1505
|
+
margin-top: 3.5px;
|
|
1501
1506
|
}
|
|
1502
1507
|
|
|
1503
1508
|
|
|
@@ -1505,8 +1510,8 @@
|
|
|
1505
1510
|
.fusioni-stream-message {
|
|
1506
1511
|
display: flex;
|
|
1507
1512
|
align-items: center;
|
|
1508
|
-
gap:
|
|
1509
|
-
margin-bottom:
|
|
1513
|
+
gap: 10.5px;
|
|
1514
|
+
margin-bottom: 7px;
|
|
1510
1515
|
}
|
|
1511
1516
|
|
|
1512
1517
|
.fusioni-stream-message:last-child {
|
|
@@ -1529,20 +1534,20 @@
|
|
|
1529
1534
|
}
|
|
1530
1535
|
|
|
1531
1536
|
.fusioni-stream-text {
|
|
1532
|
-
font-size:
|
|
1537
|
+
font-size: 12.25px;
|
|
1533
1538
|
color: var(--fusioni-text-secondary);
|
|
1534
1539
|
line-height: 1.4;
|
|
1535
1540
|
}
|
|
1536
1541
|
|
|
1537
1542
|
/* Chat Input */
|
|
1538
1543
|
.fusioni-chat-input {
|
|
1539
|
-
padding:
|
|
1544
|
+
padding: 14px;
|
|
1540
1545
|
background: var(--fusioni-bg-primary);
|
|
1541
1546
|
border-top: 1px solid var(--fusioni-border);
|
|
1542
1547
|
}
|
|
1543
1548
|
|
|
1544
1549
|
.fusioni-image-preview {
|
|
1545
|
-
margin-bottom:
|
|
1550
|
+
margin-bottom: 10.5px;
|
|
1546
1551
|
}
|
|
1547
1552
|
|
|
1548
1553
|
.fusioni-image-preview-content {
|
|
@@ -1559,13 +1564,13 @@
|
|
|
1559
1564
|
|
|
1560
1565
|
.fusioni-image-preview-content .fusioni-btn {
|
|
1561
1566
|
position: absolute;
|
|
1562
|
-
top:
|
|
1563
|
-
right:
|
|
1567
|
+
top: 7px;
|
|
1568
|
+
right: 7px;
|
|
1564
1569
|
}
|
|
1565
1570
|
|
|
1566
1571
|
.fusioni-audio-preview {
|
|
1567
|
-
margin-bottom:
|
|
1568
|
-
padding:
|
|
1572
|
+
margin-bottom: 10.5px;
|
|
1573
|
+
padding: 10.5px;
|
|
1569
1574
|
background: var(--fusioni-bg-secondary);
|
|
1570
1575
|
border-radius: var(--fusioni-radius);
|
|
1571
1576
|
border: 1px solid var(--fusioni-border);
|
|
@@ -1574,14 +1579,14 @@
|
|
|
1574
1579
|
.fusioni-audio-preview-content {
|
|
1575
1580
|
display: flex;
|
|
1576
1581
|
flex-direction: column;
|
|
1577
|
-
gap:
|
|
1582
|
+
gap: 7px;
|
|
1578
1583
|
}
|
|
1579
1584
|
|
|
1580
1585
|
.fusioni-audio-preview-header {
|
|
1581
1586
|
display: flex;
|
|
1582
1587
|
align-items: center;
|
|
1583
1588
|
justify-content: space-between;
|
|
1584
|
-
font-size:
|
|
1589
|
+
font-size: 12.25px;
|
|
1585
1590
|
color: var(--fusioni-text-secondary);
|
|
1586
1591
|
}
|
|
1587
1592
|
|
|
@@ -1591,7 +1596,7 @@
|
|
|
1591
1596
|
}
|
|
1592
1597
|
|
|
1593
1598
|
.fusioni-audio-preview-text {
|
|
1594
|
-
font-size:
|
|
1599
|
+
font-size: 10.5px;
|
|
1595
1600
|
color: var(--fusioni-text-muted);
|
|
1596
1601
|
text-align: center;
|
|
1597
1602
|
margin: 0;
|
|
@@ -1604,11 +1609,11 @@
|
|
|
1604
1609
|
.fusioni-input-wrapper {
|
|
1605
1610
|
display: flex;
|
|
1606
1611
|
align-items: flex-end;
|
|
1607
|
-
gap:
|
|
1612
|
+
gap: 7px;
|
|
1608
1613
|
background: var(--fusioni-bg-secondary);
|
|
1609
1614
|
border: 2px solid var(--fusioni-border);
|
|
1610
1615
|
border-radius: var(--fusioni-radius-xl);
|
|
1611
|
-
padding:
|
|
1616
|
+
padding: 7px;
|
|
1612
1617
|
transition: var(--fusioni-transition);
|
|
1613
1618
|
}
|
|
1614
1619
|
|
|
@@ -1624,12 +1629,12 @@
|
|
|
1624
1629
|
outline: none;
|
|
1625
1630
|
resize: none;
|
|
1626
1631
|
font-family: inherit;
|
|
1627
|
-
font-size:
|
|
1632
|
+
font-size: 12.25px;
|
|
1628
1633
|
line-height: 1.5;
|
|
1629
1634
|
color: var(--fusioni-text-primary);
|
|
1630
1635
|
min-height: 20px;
|
|
1631
1636
|
max-height: 120px;
|
|
1632
|
-
padding:
|
|
1637
|
+
padding: 7px;
|
|
1633
1638
|
}
|
|
1634
1639
|
|
|
1635
1640
|
.fusioni-textarea::placeholder {
|
|
@@ -1639,7 +1644,7 @@
|
|
|
1639
1644
|
.fusioni-input-actions {
|
|
1640
1645
|
display: flex;
|
|
1641
1646
|
align-items: center;
|
|
1642
|
-
gap:
|
|
1647
|
+
gap: 3.5px;
|
|
1643
1648
|
}
|
|
1644
1649
|
|
|
1645
1650
|
/* Buttons */
|
|
@@ -1647,10 +1652,10 @@
|
|
|
1647
1652
|
display: inline-flex;
|
|
1648
1653
|
align-items: center;
|
|
1649
1654
|
justify-content: center;
|
|
1650
|
-
padding:
|
|
1655
|
+
padding: 7px;
|
|
1651
1656
|
border: none;
|
|
1652
1657
|
border-radius: var(--fusioni-radius);
|
|
1653
|
-
font-size:
|
|
1658
|
+
font-size: 12.25px;
|
|
1654
1659
|
font-weight: 500;
|
|
1655
1660
|
cursor: pointer;
|
|
1656
1661
|
transition: var(--fusioni-transition);
|
|
@@ -1705,7 +1710,7 @@
|
|
|
1705
1710
|
border: none;
|
|
1706
1711
|
box-shadow: var(--fusioni-shadow-md);
|
|
1707
1712
|
font-weight: 600;
|
|
1708
|
-
padding:
|
|
1713
|
+
padding: 10.5px 21px;
|
|
1709
1714
|
border-radius: var(--fusioni-radius-lg);
|
|
1710
1715
|
transition: var(--fusioni-transition);
|
|
1711
1716
|
}
|
|
@@ -1729,7 +1734,7 @@
|
|
|
1729
1734
|
.fusioni-btn-text {
|
|
1730
1735
|
background: transparent;
|
|
1731
1736
|
color: var(--fusioni-primary);
|
|
1732
|
-
padding:
|
|
1737
|
+
padding: 3.5px 7px;
|
|
1733
1738
|
}
|
|
1734
1739
|
|
|
1735
1740
|
.fusioni-btn-text:hover {
|
|
@@ -1774,9 +1779,9 @@
|
|
|
1774
1779
|
/* Confirmation Widget */
|
|
1775
1780
|
.fusioni-confirmation-widget {
|
|
1776
1781
|
display: flex;
|
|
1777
|
-
gap:
|
|
1782
|
+
gap: 10.5px;
|
|
1778
1783
|
/* margin-top: 1.25rem; */
|
|
1779
|
-
padding-top:
|
|
1784
|
+
padding-top: 17.5px;
|
|
1780
1785
|
}
|
|
1781
1786
|
|
|
1782
1787
|
.fusioni-btn-confirm {
|
|
@@ -1785,10 +1790,10 @@
|
|
|
1785
1790
|
border: none;
|
|
1786
1791
|
box-shadow: var(--fusioni-shadow-md);
|
|
1787
1792
|
font-weight: 600;
|
|
1788
|
-
padding:
|
|
1793
|
+
padding: 10.5px 21px;
|
|
1789
1794
|
border-radius: var(--fusioni-radius-lg);
|
|
1790
1795
|
transition: var(--fusioni-transition);
|
|
1791
|
-
font-size:
|
|
1796
|
+
font-size: 12.25px;
|
|
1792
1797
|
}
|
|
1793
1798
|
|
|
1794
1799
|
.fusioni-btn-confirm:hover:not(:disabled) {
|
|
@@ -1815,10 +1820,10 @@
|
|
|
1815
1820
|
border: none;
|
|
1816
1821
|
box-shadow: var(--fusioni-shadow-md);
|
|
1817
1822
|
font-weight: 600;
|
|
1818
|
-
padding:
|
|
1823
|
+
padding: 10.5px 21px;
|
|
1819
1824
|
border-radius: var(--fusioni-radius-lg);
|
|
1820
1825
|
transition: var(--fusioni-transition);
|
|
1821
|
-
font-size:
|
|
1826
|
+
font-size: 12.25px;
|
|
1822
1827
|
}
|
|
1823
1828
|
|
|
1824
1829
|
.fusioni-btn-cancel:hover:not(:disabled) {
|
|
@@ -1851,7 +1856,7 @@
|
|
|
1851
1856
|
.fusioni-audio-recorder {
|
|
1852
1857
|
display: flex;
|
|
1853
1858
|
align-items: center;
|
|
1854
|
-
gap:
|
|
1859
|
+
gap: 7px;
|
|
1855
1860
|
}
|
|
1856
1861
|
|
|
1857
1862
|
.fusioni-recording-indicator {
|
|
@@ -1869,10 +1874,10 @@
|
|
|
1869
1874
|
}
|
|
1870
1875
|
|
|
1871
1876
|
.fusioni-recording-timer {
|
|
1872
|
-
font-size:
|
|
1877
|
+
font-size: 10.5px;
|
|
1873
1878
|
color: var(--fusioni-error);
|
|
1874
1879
|
font-weight: 500;
|
|
1875
|
-
min-width:
|
|
1880
|
+
min-width: 42px;
|
|
1876
1881
|
text-align: center;
|
|
1877
1882
|
}
|
|
1878
1883
|
|
|
@@ -1883,29 +1888,29 @@
|
|
|
1883
1888
|
right: 0;
|
|
1884
1889
|
background: var(--fusioni-error);
|
|
1885
1890
|
color: white;
|
|
1886
|
-
padding:
|
|
1891
|
+
padding: 7px;
|
|
1887
1892
|
border-radius: var(--fusioni-radius);
|
|
1888
|
-
font-size:
|
|
1889
|
-
margin-bottom:
|
|
1893
|
+
font-size: 10.5px;
|
|
1894
|
+
margin-bottom: 7px;
|
|
1890
1895
|
}
|
|
1891
1896
|
|
|
1892
1897
|
.fusioni-audio-error p {
|
|
1893
|
-
margin: 0 0
|
|
1898
|
+
margin: 0 0 3.5px;
|
|
1894
1899
|
}
|
|
1895
1900
|
|
|
1896
1901
|
.fusioni-audio-error button {
|
|
1897
1902
|
background: transparent;
|
|
1898
1903
|
color: white;
|
|
1899
1904
|
border: 1px solid white;
|
|
1900
|
-
padding:
|
|
1905
|
+
padding: 3.5px 7px;
|
|
1901
1906
|
border-radius: var(--fusioni-radius);
|
|
1902
|
-
font-size:
|
|
1907
|
+
font-size: 10.5px;
|
|
1903
1908
|
cursor: pointer;
|
|
1904
1909
|
}
|
|
1905
1910
|
|
|
1906
1911
|
/* Chat Loader */
|
|
1907
1912
|
.fusioni-chat-loader {
|
|
1908
|
-
padding:
|
|
1913
|
+
padding: 14px;
|
|
1909
1914
|
text-align: center;
|
|
1910
1915
|
}
|
|
1911
1916
|
|
|
@@ -1913,12 +1918,12 @@
|
|
|
1913
1918
|
display: flex;
|
|
1914
1919
|
align-items: center;
|
|
1915
1920
|
justify-content: center;
|
|
1916
|
-
gap:
|
|
1921
|
+
gap: 10.5px;
|
|
1917
1922
|
}
|
|
1918
1923
|
|
|
1919
1924
|
.fusioni-loader-dots {
|
|
1920
1925
|
display: flex;
|
|
1921
|
-
gap:
|
|
1926
|
+
gap: 3.5px;
|
|
1922
1927
|
}
|
|
1923
1928
|
|
|
1924
1929
|
.fusioni-loader-dot {
|
|
@@ -1938,7 +1943,7 @@
|
|
|
1938
1943
|
}
|
|
1939
1944
|
|
|
1940
1945
|
.fusioni-loader-text {
|
|
1941
|
-
font-size:
|
|
1946
|
+
font-size: 12.25px;
|
|
1942
1947
|
color: var(--fusioni-text-secondary);
|
|
1943
1948
|
}
|
|
1944
1949
|
|
|
@@ -1947,7 +1952,7 @@
|
|
|
1947
1952
|
display: flex;
|
|
1948
1953
|
align-items: center;
|
|
1949
1954
|
justify-content: space-between;
|
|
1950
|
-
padding:
|
|
1955
|
+
padding: 14px;
|
|
1951
1956
|
border-bottom: 1px solid var(--fusioni-border-light);
|
|
1952
1957
|
background: var(--fusioni-bg-tertiary);
|
|
1953
1958
|
backdrop-filter: blur(10px);
|
|
@@ -1960,7 +1965,7 @@
|
|
|
1960
1965
|
}
|
|
1961
1966
|
|
|
1962
1967
|
.fusioni-chat-main-header-title {
|
|
1963
|
-
font-size:
|
|
1968
|
+
font-size: 13.125px;
|
|
1964
1969
|
font-weight: 600;
|
|
1965
1970
|
color: var(--fusioni-text-primary);
|
|
1966
1971
|
min-width: 0;
|
|
@@ -1972,7 +1977,7 @@
|
|
|
1972
1977
|
.fusioni-header-actions {
|
|
1973
1978
|
display: flex;
|
|
1974
1979
|
align-items: center;
|
|
1975
|
-
gap:
|
|
1980
|
+
gap: 10.5px;
|
|
1976
1981
|
margin-left: auto;
|
|
1977
1982
|
}
|
|
1978
1983
|
|
|
@@ -1985,14 +1990,14 @@
|
|
|
1985
1990
|
.fusioni-conversation-toggle {
|
|
1986
1991
|
display: flex;
|
|
1987
1992
|
align-items: center;
|
|
1988
|
-
gap:
|
|
1989
|
-
padding:
|
|
1993
|
+
gap: 7px;
|
|
1994
|
+
padding: 7px 10.5px;
|
|
1990
1995
|
background: var(--fusioni-bg-primary);
|
|
1991
1996
|
border: 1px solid var(--fusioni-border);
|
|
1992
1997
|
border-radius: var(--fusioni-radius-lg);
|
|
1993
1998
|
cursor: pointer;
|
|
1994
1999
|
transition: var(--fusioni-transition);
|
|
1995
|
-
font-size:
|
|
2000
|
+
font-size: 12.25px;
|
|
1996
2001
|
color: var(--fusioni-text-secondary);
|
|
1997
2002
|
}
|
|
1998
2003
|
|
|
@@ -2020,7 +2025,7 @@
|
|
|
2020
2025
|
.fusioni-connection-indicator {
|
|
2021
2026
|
display: flex;
|
|
2022
2027
|
align-items: center;
|
|
2023
|
-
padding:
|
|
2028
|
+
padding: 3.5px;
|
|
2024
2029
|
border-radius: var(--fusioni-radius);
|
|
2025
2030
|
transition: var(--fusioni-transition);
|
|
2026
2031
|
}
|
|
@@ -2051,14 +2056,14 @@
|
|
|
2051
2056
|
.fusioni-language-button {
|
|
2052
2057
|
display: flex;
|
|
2053
2058
|
align-items: center;
|
|
2054
|
-
gap:
|
|
2055
|
-
padding:
|
|
2059
|
+
gap: 7px;
|
|
2060
|
+
padding: 7px 10.5px;
|
|
2056
2061
|
background: var(--fusioni-bg-primary);
|
|
2057
2062
|
border: 1px solid var(--fusioni-border);
|
|
2058
2063
|
border-radius: var(--fusioni-radius-lg);
|
|
2059
2064
|
cursor: pointer;
|
|
2060
2065
|
transition: var(--fusioni-transition);
|
|
2061
|
-
font-size:
|
|
2066
|
+
font-size: 12.25px;
|
|
2062
2067
|
color: var(--fusioni-text-primary);
|
|
2063
2068
|
min-width: 120px;
|
|
2064
2069
|
}
|
|
@@ -2069,7 +2074,7 @@
|
|
|
2069
2074
|
}
|
|
2070
2075
|
|
|
2071
2076
|
.fusioni-language-flag {
|
|
2072
|
-
font-size:
|
|
2077
|
+
font-size: 14px;
|
|
2073
2078
|
line-height: 1;
|
|
2074
2079
|
}
|
|
2075
2080
|
|
|
@@ -2098,20 +2103,20 @@
|
|
|
2098
2103
|
box-shadow: var(--fusioni-shadow-lg);
|
|
2099
2104
|
z-index: 1000;
|
|
2100
2105
|
overflow: hidden;
|
|
2101
|
-
margin-top:
|
|
2106
|
+
margin-top: 3.5px;
|
|
2102
2107
|
}
|
|
2103
2108
|
|
|
2104
2109
|
.fusioni-language-option {
|
|
2105
2110
|
display: flex;
|
|
2106
2111
|
align-items: center;
|
|
2107
|
-
gap:
|
|
2112
|
+
gap: 7px;
|
|
2108
2113
|
width: 100%;
|
|
2109
|
-
padding:
|
|
2114
|
+
padding: 10.5px;
|
|
2110
2115
|
background: transparent;
|
|
2111
2116
|
border: none;
|
|
2112
2117
|
cursor: pointer;
|
|
2113
2118
|
transition: var(--fusioni-transition);
|
|
2114
|
-
font-size:
|
|
2119
|
+
font-size: 12.25px;
|
|
2115
2120
|
color: var(--fusioni-text-primary);
|
|
2116
2121
|
text-align: left;
|
|
2117
2122
|
}
|
|
@@ -2137,7 +2142,7 @@
|
|
|
2137
2142
|
justify-content: center;
|
|
2138
2143
|
height: 100%;
|
|
2139
2144
|
width: 100%;
|
|
2140
|
-
padding:
|
|
2145
|
+
padding: 42px 28px;
|
|
2141
2146
|
background: var(--fusioni-bg-primary);
|
|
2142
2147
|
box-sizing: border-box;
|
|
2143
2148
|
overflow: hidden;
|
|
@@ -2161,8 +2166,8 @@
|
|
|
2161
2166
|
}
|
|
2162
2167
|
|
|
2163
2168
|
.fusioni-chat-welcome-content h3 {
|
|
2164
|
-
margin: 0 0
|
|
2165
|
-
font-size:
|
|
2169
|
+
margin: 0 0 14px;
|
|
2170
|
+
font-size: 21px;
|
|
2166
2171
|
font-weight: 700;
|
|
2167
2172
|
color: var(--fusioni-text-primary);
|
|
2168
2173
|
background: linear-gradient(135deg, var(--fusioni-primary) 0%, var(--fusioni-primary-light) 100%);
|
|
@@ -2172,30 +2177,30 @@
|
|
|
2172
2177
|
}
|
|
2173
2178
|
|
|
2174
2179
|
.fusioni-chat-welcome-content p {
|
|
2175
|
-
margin: 0 0
|
|
2180
|
+
margin: 0 0 28px;
|
|
2176
2181
|
color: var(--fusioni-text-secondary);
|
|
2177
2182
|
line-height: 1.6;
|
|
2178
|
-
font-size:
|
|
2183
|
+
font-size: 14px;
|
|
2179
2184
|
}
|
|
2180
2185
|
|
|
2181
2186
|
/* Error State */
|
|
2182
2187
|
.fusioni-chat-error {
|
|
2183
|
-
padding:
|
|
2188
|
+
padding: 14px;
|
|
2184
2189
|
background: var(--fusioni-error);
|
|
2185
2190
|
color: white;
|
|
2186
2191
|
border-radius: var(--fusioni-radius);
|
|
2187
|
-
margin:
|
|
2192
|
+
margin: 14px;
|
|
2188
2193
|
}
|
|
2189
2194
|
|
|
2190
2195
|
.fusioni-chat-error p {
|
|
2191
|
-
margin: 0 0
|
|
2196
|
+
margin: 0 0 7px;
|
|
2192
2197
|
}
|
|
2193
2198
|
|
|
2194
2199
|
.fusioni-chat-error button {
|
|
2195
2200
|
background: transparent;
|
|
2196
2201
|
color: white;
|
|
2197
2202
|
border: 1px solid white;
|
|
2198
|
-
padding:
|
|
2203
|
+
padding: 3.5px 7px;
|
|
2199
2204
|
border-radius: var(--fusioni-radius);
|
|
2200
2205
|
cursor: pointer;
|
|
2201
2206
|
}
|
|
@@ -2380,22 +2385,22 @@
|
|
|
2380
2385
|
@media (max-width: 768px) {
|
|
2381
2386
|
.fusioni-floating-button-bottom-right,
|
|
2382
2387
|
.fusioni-floating-button-bottom-left {
|
|
2383
|
-
bottom: max(
|
|
2388
|
+
bottom: max(14px, calc(env(safe-area-inset-bottom, 0px) + 14px));
|
|
2384
2389
|
}
|
|
2385
2390
|
|
|
2386
2391
|
.fusioni-floating-button-bottom-right,
|
|
2387
2392
|
.fusioni-floating-button-top-right {
|
|
2388
|
-
right: max(
|
|
2393
|
+
right: max(10.5px, calc(env(safe-area-inset-right, 0px) + 10.5px));
|
|
2389
2394
|
}
|
|
2390
2395
|
|
|
2391
2396
|
.fusioni-floating-button-bottom-left,
|
|
2392
2397
|
.fusioni-floating-button-top-left {
|
|
2393
|
-
left: max(
|
|
2398
|
+
left: max(10.5px, calc(env(safe-area-inset-left, 0px) + 10.5px));
|
|
2394
2399
|
}
|
|
2395
2400
|
|
|
2396
2401
|
.fusioni-floating-button-top-right,
|
|
2397
2402
|
.fusioni-floating-button-top-left {
|
|
2398
|
-
top: max(
|
|
2403
|
+
top: max(10.5px, calc(env(safe-area-inset-top, 0px) + 10.5px));
|
|
2399
2404
|
}
|
|
2400
2405
|
|
|
2401
2406
|
/*
|
|
@@ -2444,13 +2449,13 @@
|
|
|
2444
2449
|
|
|
2445
2450
|
.fusioni-message-list {
|
|
2446
2451
|
-webkit-overflow-scrolling: touch;
|
|
2447
|
-
padding-left:
|
|
2448
|
-
padding-right:
|
|
2449
|
-
padding-bottom:
|
|
2452
|
+
padding-left: 10.5px;
|
|
2453
|
+
padding-right: 10.5px;
|
|
2454
|
+
padding-bottom: 3.5px;
|
|
2450
2455
|
}
|
|
2451
2456
|
|
|
2452
2457
|
.fusioni-chat-input {
|
|
2453
|
-
padding-bottom: max(
|
|
2458
|
+
padding-bottom: max(14px, calc(env(safe-area-inset-bottom, 0px) + 7px));
|
|
2454
2459
|
}
|
|
2455
2460
|
|
|
2456
2461
|
.fusioni-chat-toolbar-close-mobile {
|
|
@@ -2462,7 +2467,7 @@
|
|
|
2462
2467
|
.fusioni-header-actions {
|
|
2463
2468
|
flex-wrap: wrap;
|
|
2464
2469
|
justify-content: flex-end;
|
|
2465
|
-
row-gap:
|
|
2470
|
+
row-gap: 3.5px;
|
|
2466
2471
|
}
|
|
2467
2472
|
}
|
|
2468
2473
|
|
|
@@ -2490,7 +2495,7 @@
|
|
|
2490
2495
|
|
|
2491
2496
|
/* URL Preview Styles */
|
|
2492
2497
|
.fusioni-url-preview {
|
|
2493
|
-
margin:
|
|
2498
|
+
margin: 7px 0;
|
|
2494
2499
|
border-radius: var(--fusioni-radius);
|
|
2495
2500
|
overflow: hidden;
|
|
2496
2501
|
border: 1px solid var(--fusioni-border);
|
|
@@ -2505,16 +2510,16 @@
|
|
|
2505
2510
|
}
|
|
2506
2511
|
|
|
2507
2512
|
.fusioni-url-preview-compact {
|
|
2508
|
-
margin:
|
|
2513
|
+
margin: 3.5px 0;
|
|
2509
2514
|
}
|
|
2510
2515
|
|
|
2511
2516
|
.fusioni-url-preview-loading {
|
|
2512
2517
|
display: flex;
|
|
2513
2518
|
align-items: center;
|
|
2514
|
-
gap:
|
|
2515
|
-
padding:
|
|
2519
|
+
gap: 7px;
|
|
2520
|
+
padding: 10.5px;
|
|
2516
2521
|
color: var(--fusioni-text-secondary);
|
|
2517
|
-
font-size:
|
|
2522
|
+
font-size: 12.25px;
|
|
2518
2523
|
}
|
|
2519
2524
|
|
|
2520
2525
|
.fusioni-url-preview-spinner {
|
|
@@ -2535,9 +2540,9 @@
|
|
|
2535
2540
|
display: flex;
|
|
2536
2541
|
align-items: center;
|
|
2537
2542
|
justify-content: space-between;
|
|
2538
|
-
padding:
|
|
2543
|
+
padding: 10.5px;
|
|
2539
2544
|
color: var(--fusioni-error);
|
|
2540
|
-
font-size:
|
|
2545
|
+
font-size: 12.25px;
|
|
2541
2546
|
background: rgba(220, 38, 38, 0.05);
|
|
2542
2547
|
}
|
|
2543
2548
|
|
|
@@ -2547,8 +2552,8 @@
|
|
|
2547
2552
|
|
|
2548
2553
|
.fusioni-url-preview-close {
|
|
2549
2554
|
position: absolute;
|
|
2550
|
-
top:
|
|
2551
|
-
right:
|
|
2555
|
+
top: 7px;
|
|
2556
|
+
right: 7px;
|
|
2552
2557
|
z-index: 10;
|
|
2553
2558
|
width: 24px;
|
|
2554
2559
|
height: 24px;
|
|
@@ -2606,7 +2611,7 @@
|
|
|
2606
2611
|
|
|
2607
2612
|
.fusioni-url-preview-text {
|
|
2608
2613
|
flex: 1;
|
|
2609
|
-
padding:
|
|
2614
|
+
padding: 10.5px;
|
|
2610
2615
|
display: flex;
|
|
2611
2616
|
flex-direction: column;
|
|
2612
2617
|
justify-content: space-between;
|
|
@@ -2614,15 +2619,15 @@
|
|
|
2614
2619
|
}
|
|
2615
2620
|
|
|
2616
2621
|
.fusioni-url-preview-compact .fusioni-url-preview-text {
|
|
2617
|
-
padding:
|
|
2622
|
+
padding: 7px;
|
|
2618
2623
|
}
|
|
2619
2624
|
|
|
2620
2625
|
.fusioni-url-preview-title {
|
|
2621
2626
|
font-weight: 600;
|
|
2622
|
-
font-size:
|
|
2627
|
+
font-size: 12.25px;
|
|
2623
2628
|
line-height: 1.25;
|
|
2624
2629
|
color: var(--fusioni-text-primary);
|
|
2625
|
-
margin-bottom:
|
|
2630
|
+
margin-bottom: 3.5px;
|
|
2626
2631
|
display: -webkit-box;
|
|
2627
2632
|
-webkit-line-clamp: 2;
|
|
2628
2633
|
line-clamp: 2;
|
|
@@ -2631,16 +2636,16 @@
|
|
|
2631
2636
|
}
|
|
2632
2637
|
|
|
2633
2638
|
.fusioni-url-preview-compact .fusioni-url-preview-title {
|
|
2634
|
-
font-size:
|
|
2639
|
+
font-size: 11.375px;
|
|
2635
2640
|
-webkit-line-clamp: 1;
|
|
2636
2641
|
line-clamp: 1;
|
|
2637
2642
|
}
|
|
2638
2643
|
|
|
2639
2644
|
.fusioni-url-preview-description {
|
|
2640
|
-
font-size:
|
|
2645
|
+
font-size: 11.375px;
|
|
2641
2646
|
line-height: 1.4;
|
|
2642
2647
|
color: var(--fusioni-text-secondary);
|
|
2643
|
-
margin-bottom:
|
|
2648
|
+
margin-bottom: 3.5px;
|
|
2644
2649
|
display: -webkit-box;
|
|
2645
2650
|
-webkit-line-clamp: 2;
|
|
2646
2651
|
line-clamp: 2;
|
|
@@ -2649,20 +2654,20 @@
|
|
|
2649
2654
|
}
|
|
2650
2655
|
|
|
2651
2656
|
.fusioni-url-preview-compact .fusioni-url-preview-description {
|
|
2652
|
-
font-size:
|
|
2657
|
+
font-size: 10.5px;
|
|
2653
2658
|
-webkit-line-clamp: 1;
|
|
2654
2659
|
line-clamp: 1;
|
|
2655
2660
|
}
|
|
2656
2661
|
|
|
2657
2662
|
.fusioni-url-preview-domain {
|
|
2658
|
-
font-size:
|
|
2663
|
+
font-size: 10.5px;
|
|
2659
2664
|
color: var(--fusioni-text-muted);
|
|
2660
2665
|
text-transform: uppercase;
|
|
2661
2666
|
letter-spacing: 0.025em;
|
|
2662
2667
|
}
|
|
2663
2668
|
|
|
2664
2669
|
.fusioni-message-url-previews {
|
|
2665
|
-
margin-top:
|
|
2670
|
+
margin-top: 7px;
|
|
2666
2671
|
}
|
|
2667
2672
|
|
|
2668
2673
|
/* Dark theme adjustments for URL preview */
|
|
@@ -3279,33 +3284,33 @@
|
|
|
3279
3284
|
}
|
|
3280
3285
|
|
|
3281
3286
|
.fusioni-dialog-header {
|
|
3282
|
-
padding:
|
|
3287
|
+
padding: 21px 21px 14px;
|
|
3283
3288
|
border-bottom: 1px solid var(--fusioni-border);
|
|
3284
3289
|
}
|
|
3285
3290
|
|
|
3286
3291
|
.fusioni-dialog-title {
|
|
3287
3292
|
margin: 0;
|
|
3288
|
-
font-size:
|
|
3293
|
+
font-size: 17.5px;
|
|
3289
3294
|
font-weight: 600;
|
|
3290
3295
|
color: var(--fusioni-text-primary);
|
|
3291
3296
|
line-height: 1.5;
|
|
3292
3297
|
}
|
|
3293
3298
|
|
|
3294
3299
|
.fusioni-dialog-body {
|
|
3295
|
-
padding:
|
|
3300
|
+
padding: 21px;
|
|
3296
3301
|
}
|
|
3297
3302
|
|
|
3298
3303
|
.fusioni-dialog-message {
|
|
3299
3304
|
margin: 0;
|
|
3300
3305
|
color: var(--fusioni-text-secondary);
|
|
3301
3306
|
line-height: 1.6;
|
|
3302
|
-
font-size:
|
|
3307
|
+
font-size: 13.125px;
|
|
3303
3308
|
}
|
|
3304
3309
|
|
|
3305
3310
|
.fusioni-dialog-footer {
|
|
3306
|
-
padding:
|
|
3311
|
+
padding: 14px 21px 21px;
|
|
3307
3312
|
display: flex;
|
|
3308
|
-
gap:
|
|
3313
|
+
gap: 10.5px;
|
|
3309
3314
|
justify-content: flex-end;
|
|
3310
3315
|
border-top: 1px solid var(--fusioni-border);
|
|
3311
3316
|
}
|
|
@@ -3392,12 +3397,12 @@
|
|
|
3392
3397
|
justify-content: flex-start;
|
|
3393
3398
|
animation: fusionImageGalleryFadeIn 0.2s ease-out;
|
|
3394
3399
|
/* Reserve vertical space for top bar + optional thumb band (matches Angular calc(100vh - 8rem) baseline) */
|
|
3395
|
-
--fusioni-ig-img-offset:
|
|
3400
|
+
--fusioni-ig-img-offset: 112px;
|
|
3396
3401
|
}
|
|
3397
3402
|
|
|
3398
3403
|
.fusioni-image-gallery-overlay.fusioni-image-gallery-has-thumbs {
|
|
3399
3404
|
/* Top bar + compact thumb grid + dots (extra vs Angular single-pane 8rem) */
|
|
3400
|
-
--fusioni-ig-img-offset:
|
|
3405
|
+
--fusioni-ig-img-offset: 196px;
|
|
3401
3406
|
}
|
|
3402
3407
|
|
|
3403
3408
|
.fusioni-image-gallery-body {
|
|
@@ -3446,17 +3451,17 @@
|
|
|
3446
3451
|
display: flex;
|
|
3447
3452
|
align-items: center;
|
|
3448
3453
|
justify-content: space-between;
|
|
3449
|
-
padding:
|
|
3454
|
+
padding: 10.5px 14px;
|
|
3450
3455
|
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
|
|
3451
3456
|
pointer-events: none;
|
|
3452
3457
|
}
|
|
3453
3458
|
|
|
3454
3459
|
.fusioni-image-gallery-topbar-spacer {
|
|
3455
|
-
width:
|
|
3460
|
+
width: 35px;
|
|
3456
3461
|
}
|
|
3457
3462
|
|
|
3458
3463
|
.fusioni-image-gallery-counter {
|
|
3459
|
-
font-size:
|
|
3464
|
+
font-size: 12.25px;
|
|
3460
3465
|
font-weight: 500;
|
|
3461
3466
|
color: rgba(255, 255, 255, 0.9);
|
|
3462
3467
|
font-variant-numeric: tabular-nums;
|
|
@@ -3468,8 +3473,8 @@
|
|
|
3468
3473
|
display: flex;
|
|
3469
3474
|
align-items: center;
|
|
3470
3475
|
justify-content: center;
|
|
3471
|
-
width:
|
|
3472
|
-
height:
|
|
3476
|
+
width: 35px;
|
|
3477
|
+
height: 35px;
|
|
3473
3478
|
border: none;
|
|
3474
3479
|
border-radius: 9999px;
|
|
3475
3480
|
color: #fff;
|
|
@@ -3491,13 +3496,13 @@
|
|
|
3491
3496
|
}
|
|
3492
3497
|
|
|
3493
3498
|
.fusioni-image-gallery-icon {
|
|
3494
|
-
width:
|
|
3495
|
-
height:
|
|
3499
|
+
width: 17.5px;
|
|
3500
|
+
height: 17.5px;
|
|
3496
3501
|
}
|
|
3497
3502
|
|
|
3498
3503
|
.fusioni-image-gallery-icon-lg {
|
|
3499
|
-
width:
|
|
3500
|
-
height:
|
|
3504
|
+
width: 28px;
|
|
3505
|
+
height: 28px;
|
|
3501
3506
|
}
|
|
3502
3507
|
|
|
3503
3508
|
/* Angular image-gallery: flex:1; min-width:0; padding 4rem 4.5rem; img max 100% × calc(100vh - 8rem) */
|
|
@@ -3510,7 +3515,7 @@
|
|
|
3510
3515
|
min-height: 0;
|
|
3511
3516
|
width: 100%;
|
|
3512
3517
|
max-width: 100%;
|
|
3513
|
-
padding:
|
|
3518
|
+
padding: 56px 63px;
|
|
3514
3519
|
box-sizing: border-box;
|
|
3515
3520
|
}
|
|
3516
3521
|
|
|
@@ -3519,10 +3524,10 @@
|
|
|
3519
3524
|
max-width: 100%;
|
|
3520
3525
|
width: auto;
|
|
3521
3526
|
height: auto;
|
|
3522
|
-
max-height: calc(100vh - var(--fusioni-ig-img-offset,
|
|
3523
|
-
max-height: calc(100dvh - var(--fusioni-ig-img-offset,
|
|
3527
|
+
max-height: calc(100vh - var(--fusioni-ig-img-offset, 112px));
|
|
3528
|
+
max-height: calc(100dvh - var(--fusioni-ig-img-offset, 112px));
|
|
3524
3529
|
object-fit: contain;
|
|
3525
|
-
border-radius:
|
|
3530
|
+
border-radius: 7px;
|
|
3526
3531
|
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
|
|
3527
3532
|
animation: fusionImageGalleryZoomIn 0.25s ease-out;
|
|
3528
3533
|
}
|
|
@@ -3530,32 +3535,32 @@
|
|
|
3530
3535
|
.fusioni-image-gallery-thumbs-wrap {
|
|
3531
3536
|
flex: 0 0 auto;
|
|
3532
3537
|
width: 100%;
|
|
3533
|
-
max-width: min(100vw -
|
|
3534
|
-
max-height:
|
|
3538
|
+
max-width: min(100vw - 28px, 588px);
|
|
3539
|
+
max-height: 175px;
|
|
3535
3540
|
margin: 0 auto;
|
|
3536
|
-
padding: 0
|
|
3541
|
+
padding: 0 14px 10.5px;
|
|
3537
3542
|
box-sizing: border-box;
|
|
3538
3543
|
overflow: hidden;
|
|
3539
3544
|
}
|
|
3540
3545
|
|
|
3541
3546
|
/* Compact thumbnail rail: full-width cells made huge by aspect-ratio — cap row height (SDK-only; Angular has no strip) */
|
|
3542
3547
|
.fusioni-image-gallery-thumbs-wrap .fusioni-gallery-strip--lightbox .fusioni-gallery-strip-grid {
|
|
3543
|
-
gap:
|
|
3548
|
+
gap: 7px;
|
|
3544
3549
|
}
|
|
3545
3550
|
|
|
3546
3551
|
.fusioni-image-gallery-thumbs-wrap .fusioni-gallery-strip--lightbox .fusioni-gallery-strip-cell {
|
|
3547
3552
|
display: flex;
|
|
3548
3553
|
align-items: center;
|
|
3549
3554
|
justify-content: center;
|
|
3550
|
-
max-height:
|
|
3555
|
+
max-height: 52.5px;
|
|
3551
3556
|
}
|
|
3552
3557
|
|
|
3553
3558
|
.fusioni-image-gallery-thumb {
|
|
3554
3559
|
display: block;
|
|
3555
3560
|
box-sizing: border-box;
|
|
3556
3561
|
width: 100%;
|
|
3557
|
-
max-width:
|
|
3558
|
-
height:
|
|
3562
|
+
max-width: 77px;
|
|
3563
|
+
height: 49px;
|
|
3559
3564
|
padding: 0;
|
|
3560
3565
|
margin: 0 auto;
|
|
3561
3566
|
border: 2px solid transparent;
|
|
@@ -3591,7 +3596,7 @@
|
|
|
3591
3596
|
}
|
|
3592
3597
|
|
|
3593
3598
|
.fusioni-image-gallery-thumbs-wrap .fusioni-gallery-strip-dots {
|
|
3594
|
-
margin-top:
|
|
3599
|
+
margin-top: 7px;
|
|
3595
3600
|
}
|
|
3596
3601
|
|
|
3597
3602
|
@keyframes fusionImageGalleryZoomIn {
|
|
@@ -3614,8 +3619,8 @@
|
|
|
3614
3619
|
display: flex;
|
|
3615
3620
|
align-items: center;
|
|
3616
3621
|
justify-content: center;
|
|
3617
|
-
width:
|
|
3618
|
-
height:
|
|
3622
|
+
width: 42px;
|
|
3623
|
+
height: 42px;
|
|
3619
3624
|
border: none;
|
|
3620
3625
|
border-radius: 50%;
|
|
3621
3626
|
color: #fff;
|
|
@@ -3642,25 +3647,25 @@
|
|
|
3642
3647
|
}
|
|
3643
3648
|
|
|
3644
3649
|
.fusioni-image-gallery-nav-prev {
|
|
3645
|
-
left:
|
|
3650
|
+
left: 14px;
|
|
3646
3651
|
}
|
|
3647
3652
|
|
|
3648
3653
|
.fusioni-image-gallery-nav-next {
|
|
3649
|
-
right:
|
|
3654
|
+
right: 14px;
|
|
3650
3655
|
}
|
|
3651
3656
|
|
|
3652
3657
|
@media (min-width: 640px) {
|
|
3653
3658
|
.fusioni-image-gallery-nav {
|
|
3654
|
-
width:
|
|
3655
|
-
height:
|
|
3659
|
+
width: 49px;
|
|
3660
|
+
height: 49px;
|
|
3656
3661
|
}
|
|
3657
3662
|
|
|
3658
3663
|
.fusioni-image-gallery-nav-prev {
|
|
3659
|
-
left:
|
|
3664
|
+
left: 21px;
|
|
3660
3665
|
}
|
|
3661
3666
|
|
|
3662
3667
|
.fusioni-image-gallery-nav-next {
|
|
3663
|
-
right:
|
|
3668
|
+
right: 21px;
|
|
3664
3669
|
}
|
|
3665
3670
|
}
|
|
3666
3671
|
|
|
@@ -3713,7 +3718,7 @@
|
|
|
3713
3718
|
|
|
3714
3719
|
.fusioni-gallery-strip-grid {
|
|
3715
3720
|
display: grid;
|
|
3716
|
-
gap:
|
|
3721
|
+
gap: 10.5px;
|
|
3717
3722
|
}
|
|
3718
3723
|
|
|
3719
3724
|
.fusioni-gallery-strip-cell {
|
|
@@ -3721,16 +3726,16 @@
|
|
|
3721
3726
|
}
|
|
3722
3727
|
|
|
3723
3728
|
.fusioni-gallery-strip-dots {
|
|
3724
|
-
margin-top:
|
|
3729
|
+
margin-top: 14px;
|
|
3725
3730
|
display: flex;
|
|
3726
3731
|
align-items: center;
|
|
3727
3732
|
justify-content: center;
|
|
3728
|
-
gap:
|
|
3733
|
+
gap: 7px;
|
|
3729
3734
|
}
|
|
3730
3735
|
|
|
3731
3736
|
.fusioni-gallery-strip-dot {
|
|
3732
|
-
width:
|
|
3733
|
-
height:
|
|
3737
|
+
width: 8.75px;
|
|
3738
|
+
height: 8.75px;
|
|
3734
3739
|
border-radius: 9999px;
|
|
3735
3740
|
border: none;
|
|
3736
3741
|
padding: 0;
|
|
@@ -3774,7 +3779,7 @@
|
|
|
3774
3779
|
|
|
3775
3780
|
/* Document image grid (assistant message thumbnails → gallery) */
|
|
3776
3781
|
.fusioni-document-images {
|
|
3777
|
-
margin-top:
|
|
3782
|
+
margin-top: 3.5px;
|
|
3778
3783
|
position: relative;
|
|
3779
3784
|
width: 100%;
|
|
3780
3785
|
max-width: 100%;
|
|
@@ -3783,7 +3788,7 @@
|
|
|
3783
3788
|
|
|
3784
3789
|
/* Document video grid (assistant message attachments) */
|
|
3785
3790
|
.fusioni-document-videos {
|
|
3786
|
-
margin-top:
|
|
3791
|
+
margin-top: 3.5px;
|
|
3787
3792
|
position: relative;
|
|
3788
3793
|
width: 100%;
|
|
3789
3794
|
max-width: 100%;
|
|
@@ -3795,8 +3800,8 @@
|
|
|
3795
3800
|
display: flex;
|
|
3796
3801
|
align-items: center;
|
|
3797
3802
|
justify-content: center;
|
|
3798
|
-
margin-bottom:
|
|
3799
|
-
min-height:
|
|
3803
|
+
margin-bottom: 10.5px;
|
|
3804
|
+
min-height: 17.5px;
|
|
3800
3805
|
}
|
|
3801
3806
|
|
|
3802
3807
|
.fusioni-document-videos-header::before {
|
|
@@ -3819,17 +3824,17 @@
|
|
|
3819
3824
|
z-index: 1;
|
|
3820
3825
|
display: inline-flex;
|
|
3821
3826
|
align-items: center;
|
|
3822
|
-
gap:
|
|
3823
|
-
padding: 0
|
|
3824
|
-
font-size:
|
|
3827
|
+
gap: 5.25px;
|
|
3828
|
+
padding: 0 8.75px;
|
|
3829
|
+
font-size: 11.375px;
|
|
3825
3830
|
font-weight: 600;
|
|
3826
3831
|
color: var(--fusioni-text-secondary);
|
|
3827
3832
|
background: var(--fusioni-bg-secondary);
|
|
3828
3833
|
}
|
|
3829
3834
|
|
|
3830
3835
|
.fusioni-document-videos-header-icon {
|
|
3831
|
-
width:
|
|
3832
|
-
height:
|
|
3836
|
+
width: 14px;
|
|
3837
|
+
height: 14px;
|
|
3833
3838
|
flex-shrink: 0;
|
|
3834
3839
|
opacity: 0.9;
|
|
3835
3840
|
}
|
|
@@ -3872,8 +3877,8 @@
|
|
|
3872
3877
|
display: flex;
|
|
3873
3878
|
align-items: center;
|
|
3874
3879
|
justify-content: center;
|
|
3875
|
-
margin-bottom:
|
|
3876
|
-
min-height:
|
|
3880
|
+
margin-bottom: 10.5px;
|
|
3881
|
+
min-height: 17.5px;
|
|
3877
3882
|
}
|
|
3878
3883
|
|
|
3879
3884
|
.fusioni-document-images-header::before {
|
|
@@ -3896,17 +3901,17 @@
|
|
|
3896
3901
|
z-index: 1;
|
|
3897
3902
|
display: inline-flex;
|
|
3898
3903
|
align-items: center;
|
|
3899
|
-
gap:
|
|
3900
|
-
padding: 0
|
|
3901
|
-
font-size:
|
|
3904
|
+
gap: 5.25px;
|
|
3905
|
+
padding: 0 8.75px;
|
|
3906
|
+
font-size: 11.375px;
|
|
3902
3907
|
font-weight: 600;
|
|
3903
3908
|
color: var(--fusioni-text-secondary);
|
|
3904
3909
|
background: var(--fusioni-bg-secondary);
|
|
3905
3910
|
}
|
|
3906
3911
|
|
|
3907
3912
|
.fusioni-document-images-header-icon {
|
|
3908
|
-
width:
|
|
3909
|
-
height:
|
|
3913
|
+
width: 14px;
|
|
3914
|
+
height: 14px;
|
|
3910
3915
|
flex-shrink: 0;
|
|
3911
3916
|
opacity: 0.9;
|
|
3912
3917
|
}
|
|
@@ -4090,7 +4095,7 @@
|
|
|
4090
4095
|
|
|
4091
4096
|
.fusioni-chat-panel {
|
|
4092
4097
|
width: 440px;
|
|
4093
|
-
height: min(680px, calc(100vh -
|
|
4098
|
+
height: min(680px, calc(100vh - 98px));
|
|
4094
4099
|
border-radius: 20px;
|
|
4095
4100
|
border: 1px solid rgb(16 24 40 / 0.1);
|
|
4096
4101
|
background: rgba(255, 255, 255, 0.98);
|
|
@@ -4112,18 +4117,18 @@
|
|
|
4112
4117
|
|
|
4113
4118
|
.fusioni-chat-panel-bottom-right,
|
|
4114
4119
|
.fusioni-chat-panel-bottom-left {
|
|
4115
|
-
bottom:
|
|
4120
|
+
bottom: 77px;
|
|
4116
4121
|
}
|
|
4117
4122
|
|
|
4118
4123
|
.fusioni-chat-panel-top-right,
|
|
4119
4124
|
.fusioni-chat-panel-top-left {
|
|
4120
|
-
top:
|
|
4125
|
+
top: 77px;
|
|
4121
4126
|
}
|
|
4122
4127
|
|
|
4123
4128
|
.fusioni-chat-main-header,
|
|
4124
4129
|
.fusioni-conversation-header {
|
|
4125
4130
|
min-height: 64px;
|
|
4126
|
-
padding:
|
|
4131
|
+
padding: 12.25px 14px;
|
|
4127
4132
|
border-bottom: 1px solid var(--fusioni-border-light);
|
|
4128
4133
|
background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
|
|
4129
4134
|
}
|
|
@@ -4191,7 +4196,7 @@
|
|
|
4191
4196
|
}
|
|
4192
4197
|
|
|
4193
4198
|
.fusioni-conversation-search {
|
|
4194
|
-
padding:
|
|
4199
|
+
padding: 12.25px;
|
|
4195
4200
|
}
|
|
4196
4201
|
|
|
4197
4202
|
.fusioni-input,
|
|
@@ -4207,7 +4212,7 @@
|
|
|
4207
4212
|
|
|
4208
4213
|
.fusioni-input-wrapper {
|
|
4209
4214
|
border-radius: 16px;
|
|
4210
|
-
padding:
|
|
4215
|
+
padding: 7px;
|
|
4211
4216
|
}
|
|
4212
4217
|
|
|
4213
4218
|
.fusioni-input:focus,
|
|
@@ -4217,7 +4222,7 @@
|
|
|
4217
4222
|
}
|
|
4218
4223
|
|
|
4219
4224
|
.fusioni-chat-input {
|
|
4220
|
-
padding:
|
|
4225
|
+
padding: 12.25px 14px 14px;
|
|
4221
4226
|
background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), #fff);
|
|
4222
4227
|
border-top: 1px solid var(--fusioni-border-light);
|
|
4223
4228
|
}
|
|
@@ -4228,14 +4233,14 @@
|
|
|
4228
4233
|
|
|
4229
4234
|
.fusioni-textarea {
|
|
4230
4235
|
min-height: 24px;
|
|
4231
|
-
padding:
|
|
4236
|
+
padding: 7px 5.25px;
|
|
4232
4237
|
}
|
|
4233
4238
|
|
|
4234
4239
|
.fusioni-message-list {
|
|
4235
4240
|
background:
|
|
4236
4241
|
linear-gradient(180deg, rgba(248, 250, 252, 0.84), rgba(255, 255, 255, 0.98)),
|
|
4237
4242
|
var(--fusioni-bg-primary);
|
|
4238
|
-
padding:
|
|
4243
|
+
padding: 15.75px;
|
|
4239
4244
|
}
|
|
4240
4245
|
|
|
4241
4246
|
.fusioni-chat-widget.dark .fusioni-message-list {
|
|
@@ -4245,11 +4250,11 @@
|
|
|
4245
4250
|
}
|
|
4246
4251
|
|
|
4247
4252
|
.fusioni-messages {
|
|
4248
|
-
gap:
|
|
4253
|
+
gap: 15.75px;
|
|
4249
4254
|
}
|
|
4250
4255
|
|
|
4251
4256
|
.fusioni-message {
|
|
4252
|
-
gap:
|
|
4257
|
+
gap: 8.75px;
|
|
4253
4258
|
}
|
|
4254
4259
|
|
|
4255
4260
|
.fusioni-message-avatar {
|
|
@@ -4266,7 +4271,7 @@
|
|
|
4266
4271
|
}
|
|
4267
4272
|
|
|
4268
4273
|
.fusioni-message-bubble {
|
|
4269
|
-
padding:
|
|
4274
|
+
padding: 10.5px 12.25px;
|
|
4270
4275
|
border-radius: 14px;
|
|
4271
4276
|
line-height: 1.55;
|
|
4272
4277
|
box-shadow: 0 1px 2px rgb(16 24 40 / 0.05);
|
|
@@ -4295,12 +4300,12 @@
|
|
|
4295
4300
|
|
|
4296
4301
|
.fusioni-message-role,
|
|
4297
4302
|
.fusioni-message-time {
|
|
4298
|
-
font-size:
|
|
4303
|
+
font-size: 10.08px;
|
|
4299
4304
|
}
|
|
4300
4305
|
|
|
4301
4306
|
.fusioni-conversation-item {
|
|
4302
|
-
margin-bottom:
|
|
4303
|
-
padding:
|
|
4307
|
+
margin-bottom: 7px;
|
|
4308
|
+
padding: 12.25px;
|
|
4304
4309
|
border-radius: 14px;
|
|
4305
4310
|
border: 1px solid var(--fusioni-border-light);
|
|
4306
4311
|
background: var(--fusioni-bg-primary);
|
|
@@ -4372,13 +4377,13 @@
|
|
|
4372
4377
|
}
|
|
4373
4378
|
|
|
4374
4379
|
.fusioni-chat-welcome-content h3 {
|
|
4375
|
-
font-size:
|
|
4380
|
+
font-size: 18.900000000000002px;
|
|
4376
4381
|
letter-spacing: 0;
|
|
4377
4382
|
}
|
|
4378
4383
|
|
|
4379
4384
|
.fusioni-chat-welcome-content p {
|
|
4380
|
-
font-size:
|
|
4381
|
-
margin-bottom:
|
|
4385
|
+
font-size: 13.125px;
|
|
4386
|
+
margin-bottom: 21px;
|
|
4382
4387
|
}
|
|
4383
4388
|
|
|
4384
4389
|
.fusioni-btn-primary {
|
|
@@ -4414,13 +4419,13 @@
|
|
|
4414
4419
|
}
|
|
4415
4420
|
|
|
4416
4421
|
.fusioni-empty-messages {
|
|
4417
|
-
padding:
|
|
4422
|
+
padding: 21px;
|
|
4418
4423
|
}
|
|
4419
4424
|
|
|
4420
4425
|
.fusioni-empty-messages-content {
|
|
4421
4426
|
height: auto;
|
|
4422
4427
|
max-width: 340px;
|
|
4423
|
-
padding:
|
|
4428
|
+
padding: 21px 0;
|
|
4424
4429
|
color: var(--fusioni-text-secondary);
|
|
4425
4430
|
}
|
|
4426
4431
|
|
|
@@ -4431,7 +4436,7 @@
|
|
|
4431
4436
|
justify-content: center;
|
|
4432
4437
|
width: 76px;
|
|
4433
4438
|
height: 76px;
|
|
4434
|
-
margin: 0 auto
|
|
4439
|
+
margin: 0 auto 15.75px;
|
|
4435
4440
|
border-radius: 22px;
|
|
4436
4441
|
background:
|
|
4437
4442
|
radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.9), transparent 38%),
|
|
@@ -4463,16 +4468,16 @@
|
|
|
4463
4468
|
.fusioni-empty-messages-content h3 {
|
|
4464
4469
|
margin: 0;
|
|
4465
4470
|
color: var(--fusioni-text-primary);
|
|
4466
|
-
font-size:
|
|
4471
|
+
font-size: 15.75px;
|
|
4467
4472
|
line-height: 1.35;
|
|
4468
4473
|
font-weight: 700;
|
|
4469
4474
|
letter-spacing: 0;
|
|
4470
4475
|
}
|
|
4471
4476
|
|
|
4472
4477
|
.fusioni-empty-messages-content p {
|
|
4473
|
-
margin:
|
|
4478
|
+
margin: 8.75px 0 0;
|
|
4474
4479
|
color: var(--fusioni-text-secondary);
|
|
4475
|
-
font-size:
|
|
4480
|
+
font-size: 13.125px;
|
|
4476
4481
|
line-height: 1.55;
|
|
4477
4482
|
}
|
|
4478
4483
|
|
|
@@ -4480,8 +4485,8 @@
|
|
|
4480
4485
|
display: flex;
|
|
4481
4486
|
flex-wrap: wrap;
|
|
4482
4487
|
justify-content: center;
|
|
4483
|
-
gap:
|
|
4484
|
-
margin-top:
|
|
4488
|
+
gap: 7px;
|
|
4489
|
+
margin-top: 15.75px;
|
|
4485
4490
|
}
|
|
4486
4491
|
|
|
4487
4492
|
.fusioni-empty-suggestions span,
|
|
@@ -4490,13 +4495,13 @@
|
|
|
4490
4495
|
display: inline-flex;
|
|
4491
4496
|
align-items: center;
|
|
4492
4497
|
min-height: 30px;
|
|
4493
|
-
padding:
|
|
4498
|
+
padding: 5.25px 8.75px;
|
|
4494
4499
|
border-radius: 999px;
|
|
4495
4500
|
color: var(--fusioni-text-secondary);
|
|
4496
4501
|
background: color-mix(in srgb, var(--fusioni-bg-primary) 82%, var(--fusioni-primary) 5%);
|
|
4497
4502
|
border: 1px solid var(--fusioni-border-light);
|
|
4498
4503
|
box-shadow: 0 1px 2px rgb(16 24 40 / 0.04);
|
|
4499
|
-
font-size:
|
|
4504
|
+
font-size: 10.5px;
|
|
4500
4505
|
font-weight: 600;
|
|
4501
4506
|
overflow: hidden;
|
|
4502
4507
|
transform-origin: center;
|
|
@@ -4574,7 +4579,7 @@
|
|
|
4574
4579
|
}
|
|
4575
4580
|
|
|
4576
4581
|
.fusioni-message {
|
|
4577
|
-
gap:
|
|
4582
|
+
gap: 10.5px;
|
|
4578
4583
|
}
|
|
4579
4584
|
|
|
4580
4585
|
.fusioni-message,
|
|
@@ -4585,7 +4590,7 @@
|
|
|
4585
4590
|
.fusioni-message-content {
|
|
4586
4591
|
display: flex;
|
|
4587
4592
|
flex-direction: column;
|
|
4588
|
-
max-width: min(92%,
|
|
4593
|
+
max-width: min(92%, 532px);
|
|
4589
4594
|
}
|
|
4590
4595
|
|
|
4591
4596
|
.fusioni-message:not(.user) .fusioni-message-content {
|
|
@@ -4608,9 +4613,9 @@
|
|
|
4608
4613
|
.fusioni-message-author-row {
|
|
4609
4614
|
display: flex;
|
|
4610
4615
|
align-items: center;
|
|
4611
|
-
gap:
|
|
4612
|
-
margin: 0 0
|
|
4613
|
-
padding: 0
|
|
4616
|
+
gap: 6.3px;
|
|
4617
|
+
margin: 0 0 5.6000000000000005px;
|
|
4618
|
+
padding: 0 3.5px;
|
|
4614
4619
|
}
|
|
4615
4620
|
|
|
4616
4621
|
.fusioni-message.user .fusioni-message-author-row {
|
|
@@ -4620,7 +4625,7 @@
|
|
|
4620
4625
|
|
|
4621
4626
|
.fusioni-message-author-label {
|
|
4622
4627
|
color: var(--fusioni-text-secondary);
|
|
4623
|
-
font-size:
|
|
4628
|
+
font-size: 10.5px;
|
|
4624
4629
|
font-weight: 700;
|
|
4625
4630
|
line-height: 1;
|
|
4626
4631
|
}
|
|
@@ -4654,14 +4659,14 @@
|
|
|
4654
4659
|
}
|
|
4655
4660
|
|
|
4656
4661
|
.fusioni-message-header {
|
|
4657
|
-
margin: 0 0
|
|
4658
|
-
padding-left:
|
|
4662
|
+
margin: 0 0 4.8999999999999995px;
|
|
4663
|
+
padding-left: 3.5px;
|
|
4659
4664
|
}
|
|
4660
4665
|
|
|
4661
4666
|
.fusioni-message-role {
|
|
4662
4667
|
margin-left: 0;
|
|
4663
4668
|
color: var(--fusioni-text-secondary);
|
|
4664
|
-
font-size:
|
|
4669
|
+
font-size: 10.5px;
|
|
4665
4670
|
font-weight: 700;
|
|
4666
4671
|
}
|
|
4667
4672
|
|
|
@@ -4672,7 +4677,7 @@
|
|
|
4672
4677
|
.fusioni-message-bubble {
|
|
4673
4678
|
width: fit-content;
|
|
4674
4679
|
max-width: 100%;
|
|
4675
|
-
padding:
|
|
4680
|
+
padding: 11.549999999999999px 13.299999999999999px;
|
|
4676
4681
|
border-radius: 18px;
|
|
4677
4682
|
line-height: 1.58;
|
|
4678
4683
|
letter-spacing: 0;
|
|
@@ -4738,9 +4743,9 @@
|
|
|
4738
4743
|
.fusioni-message-footer {
|
|
4739
4744
|
width: fit-content;
|
|
4740
4745
|
max-width: 100%;
|
|
4741
|
-
margin:
|
|
4742
|
-
padding: 0
|
|
4743
|
-
gap:
|
|
4746
|
+
margin: 4.8999999999999995px 0 0;
|
|
4747
|
+
padding: 0 3.5px;
|
|
4748
|
+
gap: 5.25px;
|
|
4744
4749
|
color: var(--fusioni-text-muted);
|
|
4745
4750
|
}
|
|
4746
4751
|
|
|
@@ -4752,14 +4757,14 @@
|
|
|
4752
4757
|
|
|
4753
4758
|
.fusioni-message-time {
|
|
4754
4759
|
color: var(--fusioni-text-muted);
|
|
4755
|
-
font-size:
|
|
4760
|
+
font-size: 9.625px;
|
|
4756
4761
|
font-weight: 600;
|
|
4757
4762
|
line-height: 1;
|
|
4758
4763
|
}
|
|
4759
4764
|
|
|
4760
4765
|
.fusioni-message-actions {
|
|
4761
|
-
gap:
|
|
4762
|
-
padding:
|
|
4766
|
+
gap: 1.75px;
|
|
4767
|
+
padding: 1.75px;
|
|
4763
4768
|
border-radius: 999px;
|
|
4764
4769
|
background: color-mix(in srgb, var(--fusioni-bg-primary) 88%, transparent);
|
|
4765
4770
|
border: 1px solid var(--fusioni-border-light);
|
|
@@ -4799,7 +4804,7 @@
|
|
|
4799
4804
|
|
|
4800
4805
|
.fusioni-chat-input {
|
|
4801
4806
|
position: relative;
|
|
4802
|
-
padding:
|
|
4807
|
+
padding: 12.25px 14px 14px;
|
|
4803
4808
|
background:
|
|
4804
4809
|
linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.98)),
|
|
4805
4810
|
var(--fusioni-bg-primary);
|
|
@@ -4811,8 +4816,8 @@
|
|
|
4811
4816
|
content: '';
|
|
4812
4817
|
position: absolute;
|
|
4813
4818
|
top: -1px;
|
|
4814
|
-
left:
|
|
4815
|
-
right:
|
|
4819
|
+
left: 14px;
|
|
4820
|
+
right: 14px;
|
|
4816
4821
|
height: 1px;
|
|
4817
4822
|
background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--fusioni-primary) 18%, var(--fusioni-border)), transparent);
|
|
4818
4823
|
}
|
|
@@ -4823,9 +4828,9 @@
|
|
|
4823
4828
|
|
|
4824
4829
|
.fusioni-input-wrapper {
|
|
4825
4830
|
align-items: flex-end;
|
|
4826
|
-
gap:
|
|
4831
|
+
gap: 7px;
|
|
4827
4832
|
min-height: 58px;
|
|
4828
|
-
padding:
|
|
4833
|
+
padding: 7px 7px 7px 10.5px;
|
|
4829
4834
|
border-radius: 18px;
|
|
4830
4835
|
border: 1px solid color-mix(in srgb, var(--fusioni-border) 86%, var(--fusioni-primary) 14%);
|
|
4831
4836
|
background:
|
|
@@ -4843,9 +4848,9 @@
|
|
|
4843
4848
|
.fusioni-textarea {
|
|
4844
4849
|
min-height: 24px;
|
|
4845
4850
|
max-height: 128px;
|
|
4846
|
-
padding:
|
|
4851
|
+
padding: 7.700000000000001px 3.5px;
|
|
4847
4852
|
color: var(--fusioni-text-primary);
|
|
4848
|
-
font-size:
|
|
4853
|
+
font-size: 12.950000000000001px;
|
|
4849
4854
|
line-height: 1.5;
|
|
4850
4855
|
}
|
|
4851
4856
|
|
|
@@ -4855,8 +4860,8 @@
|
|
|
4855
4860
|
|
|
4856
4861
|
.fusioni-input-actions {
|
|
4857
4862
|
align-items: center;
|
|
4858
|
-
gap:
|
|
4859
|
-
padding-bottom:
|
|
4863
|
+
gap: 3.5px;
|
|
4864
|
+
padding-bottom: 1.75px;
|
|
4860
4865
|
}
|
|
4861
4866
|
|
|
4862
4867
|
.fusioni-input-actions .fusioni-btn-icon {
|
|
@@ -4875,7 +4880,7 @@
|
|
|
4875
4880
|
.fusioni-input-actions .fusioni-btn-send {
|
|
4876
4881
|
width: 38px;
|
|
4877
4882
|
height: 38px;
|
|
4878
|
-
margin-left:
|
|
4883
|
+
margin-left: 1.75px;
|
|
4879
4884
|
border-radius: 14px;
|
|
4880
4885
|
color: #fff;
|
|
4881
4886
|
background:
|
|
@@ -4904,7 +4909,7 @@
|
|
|
4904
4909
|
|
|
4905
4910
|
.fusioni-image-preview,
|
|
4906
4911
|
.fusioni-audio-preview {
|
|
4907
|
-
margin-bottom:
|
|
4912
|
+
margin-bottom: 10.5px;
|
|
4908
4913
|
}
|
|
4909
4914
|
|
|
4910
4915
|
.fusioni-preview-image {
|
|
@@ -4916,8 +4921,8 @@
|
|
|
4916
4921
|
}
|
|
4917
4922
|
|
|
4918
4923
|
.fusioni-image-preview-content .fusioni-btn {
|
|
4919
|
-
top:
|
|
4920
|
-
right:
|
|
4924
|
+
top: 5.25px;
|
|
4925
|
+
right: 5.25px;
|
|
4921
4926
|
width: 30px;
|
|
4922
4927
|
height: 30px;
|
|
4923
4928
|
color: #fff;
|
|
@@ -4927,7 +4932,7 @@
|
|
|
4927
4932
|
}
|
|
4928
4933
|
|
|
4929
4934
|
.fusioni-audio-preview {
|
|
4930
|
-
padding:
|
|
4935
|
+
padding: 12.25px;
|
|
4931
4936
|
border-radius: 16px;
|
|
4932
4937
|
background: var(--fusioni-bg-primary);
|
|
4933
4938
|
border: 1px solid var(--fusioni-border-light);
|
|
@@ -4968,8 +4973,8 @@
|
|
|
4968
4973
|
|
|
4969
4974
|
.fusioni-document-images,
|
|
4970
4975
|
.fusioni-document-videos {
|
|
4971
|
-
margin-top:
|
|
4972
|
-
padding:
|
|
4976
|
+
margin-top: 12.25px;
|
|
4977
|
+
padding: 10.5px;
|
|
4973
4978
|
border-radius: 16px;
|
|
4974
4979
|
background:
|
|
4975
4980
|
linear-gradient(180deg, rgba(248, 250, 252, 0.86), rgba(255, 255, 255, 0.72));
|
|
@@ -4980,7 +4985,7 @@
|
|
|
4980
4985
|
.fusioni-document-images-header,
|
|
4981
4986
|
.fusioni-document-videos-header {
|
|
4982
4987
|
justify-content: flex-start;
|
|
4983
|
-
margin-bottom:
|
|
4988
|
+
margin-bottom: 8.75px;
|
|
4984
4989
|
min-height: auto;
|
|
4985
4990
|
}
|
|
4986
4991
|
|
|
@@ -4991,25 +4996,25 @@
|
|
|
4991
4996
|
|
|
4992
4997
|
.fusioni-document-images-header-label,
|
|
4993
4998
|
.fusioni-document-videos-header-label {
|
|
4994
|
-
gap:
|
|
4999
|
+
gap: 6.3px;
|
|
4995
5000
|
padding: 0;
|
|
4996
5001
|
color: var(--fusioni-text-primary);
|
|
4997
5002
|
background: transparent;
|
|
4998
|
-
font-size:
|
|
5003
|
+
font-size: 10.5px;
|
|
4999
5004
|
font-weight: 800;
|
|
5000
5005
|
letter-spacing: 0;
|
|
5001
5006
|
}
|
|
5002
5007
|
|
|
5003
5008
|
.fusioni-document-images-header-icon,
|
|
5004
5009
|
.fusioni-document-videos-header-icon {
|
|
5005
|
-
width:
|
|
5006
|
-
height:
|
|
5010
|
+
width: 13.299999999999999px;
|
|
5011
|
+
height: 13.299999999999999px;
|
|
5007
5012
|
color: var(--fusioni-primary);
|
|
5008
5013
|
opacity: 1;
|
|
5009
5014
|
}
|
|
5010
5015
|
|
|
5011
5016
|
.fusioni-gallery-strip-grid {
|
|
5012
|
-
gap:
|
|
5017
|
+
gap: 8.75px;
|
|
5013
5018
|
}
|
|
5014
5019
|
|
|
5015
5020
|
.fusioni-document-image-btn,
|
|
@@ -5065,11 +5070,11 @@
|
|
|
5065
5070
|
.fusioni-document-video-aspect::before {
|
|
5066
5071
|
content: '';
|
|
5067
5072
|
position: absolute;
|
|
5068
|
-
left:
|
|
5069
|
-
top:
|
|
5073
|
+
left: 8.75px;
|
|
5074
|
+
top: 8.75px;
|
|
5070
5075
|
z-index: 1;
|
|
5071
|
-
width:
|
|
5072
|
-
height:
|
|
5076
|
+
width: 28px;
|
|
5077
|
+
height: 28px;
|
|
5073
5078
|
border-radius: 999px;
|
|
5074
5079
|
background: rgba(15, 23, 42, 0.62);
|
|
5075
5080
|
border: 1px solid rgba(255, 255, 255, 0.28);
|
|
@@ -5080,30 +5085,30 @@
|
|
|
5080
5085
|
.fusioni-document-video-wrap::after {
|
|
5081
5086
|
content: '';
|
|
5082
5087
|
position: absolute;
|
|
5083
|
-
left:
|
|
5084
|
-
top:
|
|
5088
|
+
left: 19.18px;
|
|
5089
|
+
top: 16.87px;
|
|
5085
5090
|
z-index: 2;
|
|
5086
5091
|
width: 0;
|
|
5087
5092
|
height: 0;
|
|
5088
|
-
border-top:
|
|
5089
|
-
border-bottom:
|
|
5090
|
-
border-left:
|
|
5093
|
+
border-top: 5.32px solid transparent;
|
|
5094
|
+
border-bottom: 5.32px solid transparent;
|
|
5095
|
+
border-left: 7.700000000000001px solid #fff;
|
|
5091
5096
|
pointer-events: none;
|
|
5092
5097
|
}
|
|
5093
5098
|
|
|
5094
5099
|
.fusioni-gallery-strip-dots {
|
|
5095
|
-
margin-top:
|
|
5096
|
-
gap:
|
|
5100
|
+
margin-top: 10.5px;
|
|
5101
|
+
gap: 5.25px;
|
|
5097
5102
|
}
|
|
5098
5103
|
|
|
5099
5104
|
.fusioni-gallery-strip--document .fusioni-gallery-strip-dot {
|
|
5100
|
-
width:
|
|
5101
|
-
height:
|
|
5105
|
+
width: 6.3px;
|
|
5106
|
+
height: 6.3px;
|
|
5102
5107
|
background: var(--fusioni-border);
|
|
5103
5108
|
}
|
|
5104
5109
|
|
|
5105
5110
|
.fusioni-gallery-strip--document .fusioni-gallery-strip-dot-active {
|
|
5106
|
-
width:
|
|
5111
|
+
width: 15.400000000000002px;
|
|
5107
5112
|
background: var(--fusioni-primary);
|
|
5108
5113
|
}
|
|
5109
5114
|
|
|
@@ -5212,12 +5217,12 @@
|
|
|
5212
5217
|
}
|
|
5213
5218
|
|
|
5214
5219
|
.fusioni-header-actions {
|
|
5215
|
-
gap:
|
|
5220
|
+
gap: 5.25px;
|
|
5216
5221
|
}
|
|
5217
5222
|
|
|
5218
5223
|
.fusioni-language-button {
|
|
5219
5224
|
min-width: 0;
|
|
5220
|
-
padding:
|
|
5225
|
+
padding: 7px;
|
|
5221
5226
|
}
|
|
5222
5227
|
|
|
5223
5228
|
.fusioni-language-name {
|