superdoc 2.6.0-next.7 → 2.6.0-next.9
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/collaboration-upgrade-engine.cjs +1 -1
- package/dist/collaboration-upgrade-engine.es.js +1 -1
- package/dist/style.css +134 -92
- package/dist/style.layered.css +134 -92
- package/dist/superdoc/src/core/types/index.d.ts +46 -13
- package/dist/superdoc/src/stores/comments-store.d.ts +62 -5
- package/dist/superdoc/src/stores/superdoc-store.d.ts +186 -15
- package/dist/superdoc.cjs +245 -51
- package/dist/superdoc.es.js +245 -51
- package/dist-cdn/style.layered.css +1 -1
- package/dist-cdn/superdoc.min.css +1 -1
- package/dist-cdn/superdoc.min.js +37 -37
- package/package.json +2 -2
|
@@ -19,7 +19,7 @@ var COLLABORATION_UPGRADE_ENGINE_MINIMUM_NODE_MAJOR = 20;
|
|
|
19
19
|
var PRIVATE_ENGINE_INFO = (0, _superdoc_docx_engine_collaboration_upgrade_engine.getCollaborationUpgradeEngineInfo)();
|
|
20
20
|
var ENGINE_INFO = Object.freeze({
|
|
21
21
|
...PRIVATE_ENGINE_INFO,
|
|
22
|
-
superdocVersion: "2.6.0-next.
|
|
22
|
+
superdocVersion: "2.6.0-next.9",
|
|
23
23
|
roomSchemaVersion: Object.freeze({ ...PRIVATE_ENGINE_INFO.roomSchemaVersion }),
|
|
24
24
|
supportedBundleVersions: SUPPORTED_COLLABORATION_UPGRADE_BUNDLE_VERSIONS,
|
|
25
25
|
supportedV1ReaderContractVersions: SUPPORTED_V1_READER_CONTRACT_VERSIONS
|
|
@@ -18,7 +18,7 @@ var COLLABORATION_UPGRADE_ENGINE_MINIMUM_NODE_MAJOR = 20;
|
|
|
18
18
|
var PRIVATE_ENGINE_INFO = getCollaborationUpgradeEngineInfo$1();
|
|
19
19
|
var ENGINE_INFO = Object.freeze({
|
|
20
20
|
...PRIVATE_ENGINE_INFO,
|
|
21
|
-
superdocVersion: "2.6.0-next.
|
|
21
|
+
superdocVersion: "2.6.0-next.9",
|
|
22
22
|
roomSchemaVersion: Object.freeze({ ...PRIVATE_ENGINE_INFO.roomSchemaVersion }),
|
|
23
23
|
supportedBundleVersions: SUPPORTED_COLLABORATION_UPGRADE_BUNDLE_VERSIONS,
|
|
24
24
|
supportedV1ReaderContractVersions: SUPPORTED_V1_READER_CONTRACT_VERSIONS
|
package/dist/style.css
CHANGED
|
@@ -984,14 +984,18 @@ img[data-v-c95b2073] {
|
|
|
984
984
|
height: 16px;
|
|
985
985
|
}
|
|
986
986
|
|
|
987
|
-
.comment-entry[data-v-
|
|
987
|
+
.comment-entry[data-v-87953125] {
|
|
988
988
|
box-sizing: border-box;
|
|
989
989
|
border-radius: 8px;
|
|
990
990
|
width: 100%;
|
|
991
991
|
max-width: 100%;
|
|
992
992
|
transition: all 250ms ease;
|
|
993
993
|
}
|
|
994
|
-
.
|
|
994
|
+
.comment-composer[data-v-87953125] {
|
|
995
|
+
position: relative;
|
|
996
|
+
min-width: 0;
|
|
997
|
+
}
|
|
998
|
+
.superdoc-field[data-v-87953125] {
|
|
995
999
|
display: block;
|
|
996
1000
|
box-sizing: border-box;
|
|
997
1001
|
width: 100%;
|
|
@@ -1008,13 +1012,51 @@ img[data-v-c95b2073] {
|
|
|
1008
1012
|
line-height: 1.4;
|
|
1009
1013
|
overflow-y: hidden;
|
|
1010
1014
|
}
|
|
1011
|
-
.superdoc-field[data-v-
|
|
1015
|
+
.superdoc-field[data-v-87953125]:focus {
|
|
1012
1016
|
outline: none;
|
|
1013
1017
|
border-color: #4f7cff;
|
|
1014
1018
|
box-shadow: 0 0 0 2px rgba(79, 124, 255, 0.16);
|
|
1015
1019
|
}
|
|
1020
|
+
.comment-mention-list[data-v-87953125] {
|
|
1021
|
+
position: absolute;
|
|
1022
|
+
z-index: 100;
|
|
1023
|
+
top: calc(100% + 4px);
|
|
1024
|
+
right: 0;
|
|
1025
|
+
left: 0;
|
|
1026
|
+
overflow-y: auto;
|
|
1027
|
+
max-height: 192px;
|
|
1028
|
+
padding: 4px;
|
|
1029
|
+
border: 1px solid #d7d7d7;
|
|
1030
|
+
border-radius: 8px;
|
|
1031
|
+
background: #fff;
|
|
1032
|
+
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
|
|
1033
|
+
}
|
|
1034
|
+
.comment-mention-option[data-v-87953125] {
|
|
1035
|
+
display: flex;
|
|
1036
|
+
flex-direction: column;
|
|
1037
|
+
width: 100%;
|
|
1038
|
+
padding: 7px 8px;
|
|
1039
|
+
border: 0;
|
|
1040
|
+
border-radius: 5px;
|
|
1041
|
+
color: #1f1f1f;
|
|
1042
|
+
background: transparent;
|
|
1043
|
+
text-align: left;
|
|
1044
|
+
cursor: pointer;
|
|
1045
|
+
}
|
|
1046
|
+
.comment-mention-option--active[data-v-87953125],
|
|
1047
|
+
.comment-mention-option[data-v-87953125]:hover {
|
|
1048
|
+
background: #eef3ff;
|
|
1049
|
+
}
|
|
1050
|
+
.comment-mention-option__name[data-v-87953125] {
|
|
1051
|
+
font-size: 13px;
|
|
1052
|
+
font-weight: 600;
|
|
1053
|
+
}
|
|
1054
|
+
.comment-mention-option__email[data-v-87953125] {
|
|
1055
|
+
color: #666;
|
|
1056
|
+
font-size: 11px;
|
|
1057
|
+
}
|
|
1016
1058
|
|
|
1017
|
-
.comments-dialog[data-v-
|
|
1059
|
+
.comments-dialog[data-v-f4c743f2] {
|
|
1018
1060
|
display: flex;
|
|
1019
1061
|
flex-direction: column;
|
|
1020
1062
|
padding: var(--sd-ui-comments-card-padding, 16px);
|
|
@@ -1033,73 +1075,73 @@ img[data-v-c95b2073] {
|
|
|
1033
1075
|
overflow-wrap: break-word;
|
|
1034
1076
|
word-break: break-word;
|
|
1035
1077
|
}
|
|
1036
|
-
.comments-dialog[data-v-
|
|
1078
|
+
.comments-dialog[data-v-f4c743f2]:not(.is-active) {
|
|
1037
1079
|
cursor: pointer;
|
|
1038
1080
|
}
|
|
1039
|
-
.comments-dialog[data-v-
|
|
1081
|
+
.comments-dialog[data-v-f4c743f2]:not(.is-active):not(.is-resolved):hover {
|
|
1040
1082
|
background-color: var(--sd-ui-comments-card-hover-bg, #f3f6fd);
|
|
1041
1083
|
}
|
|
1042
|
-
.comments-dialog[data-v-
|
|
1084
|
+
.comments-dialog[data-v-f4c743f2]:not(.is-resolved):hover .overflow-menu {
|
|
1043
1085
|
opacity: 1;
|
|
1044
1086
|
pointer-events: auto;
|
|
1045
1087
|
}
|
|
1046
|
-
.comments-dialog.is-active[data-v-
|
|
1088
|
+
.comments-dialog.is-active[data-v-f4c743f2] {
|
|
1047
1089
|
background-color: var(--sd-ui-comments-card-active-bg, #ffffff);
|
|
1048
1090
|
border-color: var(--sd-ui-comments-card-active-border, #e0e0e0);
|
|
1049
1091
|
box-shadow: var(--sd-ui-comments-card-shadow, 0px 4px 12px 0px rgba(50, 50, 50, 0.15));
|
|
1050
1092
|
z-index: 10;
|
|
1051
1093
|
}
|
|
1052
|
-
.comments-dialog.is-resolved[data-v-
|
|
1094
|
+
.comments-dialog.is-resolved[data-v-f4c743f2] {
|
|
1053
1095
|
background-color: var(--sd-ui-comments-card-resolved-bg, #f0f0f0);
|
|
1054
1096
|
}
|
|
1055
|
-
.comment-separator[data-v-
|
|
1097
|
+
.comment-separator[data-v-f4c743f2] {
|
|
1056
1098
|
background-color: var(--sd-ui-comments-separator, #e0e0e0);
|
|
1057
1099
|
height: 1px;
|
|
1058
1100
|
width: 100%;
|
|
1059
1101
|
margin: 10px 0;
|
|
1060
1102
|
}
|
|
1061
|
-
.comment[data-v-
|
|
1103
|
+
.comment[data-v-f4c743f2] {
|
|
1062
1104
|
font-size: var(--sd-ui-comments-body-size, 14px);
|
|
1063
1105
|
line-height: 1.5;
|
|
1064
1106
|
color: var(--sd-ui-comments-body-text, #212121);
|
|
1065
1107
|
margin: 4px 0 0 0;
|
|
1066
1108
|
}
|
|
1067
|
-
.comment[data-v-
|
|
1109
|
+
.comment[data-v-f4c743f2] p {
|
|
1068
1110
|
margin: 0;
|
|
1069
1111
|
}
|
|
1070
|
-
.tracked-change[data-v-
|
|
1112
|
+
.tracked-change[data-v-f4c743f2] {
|
|
1071
1113
|
font-size: var(--sd-ui-comments-body-size, 14px);
|
|
1072
1114
|
line-height: 1.5;
|
|
1073
1115
|
color: var(--sd-ui-comments-body-text, #212121);
|
|
1074
1116
|
margin: 4px 0 0 0;
|
|
1075
1117
|
}
|
|
1076
|
-
.change-type[data-v-
|
|
1118
|
+
.change-type[data-v-f4c743f2] {
|
|
1077
1119
|
color: var(--sd-ui-comments-body-text, #212121);
|
|
1078
1120
|
}
|
|
1079
|
-
.tracked-change-text[data-v-
|
|
1121
|
+
.tracked-change-text[data-v-f4c743f2] {
|
|
1080
1122
|
color: var(--sd-ui-comments-body-text, #212121);
|
|
1081
1123
|
}
|
|
1082
|
-
.tracked-change-text.is-deleted[data-v-
|
|
1124
|
+
.tracked-change-text.is-deleted[data-v-f4c743f2] {
|
|
1083
1125
|
color: var(--sd-ui-comments-delete-text, #cb0e47);
|
|
1084
1126
|
}
|
|
1085
|
-
.tracked-change-text.is-inserted[data-v-
|
|
1127
|
+
.tracked-change-text.is-inserted[data-v-f4c743f2] {
|
|
1086
1128
|
color: var(--sd-ui-comments-insert-text, #1f6feb);
|
|
1087
1129
|
font-weight: 500;
|
|
1088
1130
|
}
|
|
1089
|
-
.tracked-change[data-track-change-semantic-color-key='move-from'] .tracked-change-text.is-deleted[data-v-
|
|
1131
|
+
.tracked-change[data-track-change-semantic-color-key='move-from'] .tracked-change-text.is-deleted[data-v-f4c743f2] {
|
|
1090
1132
|
color: var(--sd-ui-comments-move-from-text, #00853d);
|
|
1091
1133
|
}
|
|
1092
|
-
.tracked-change[data-track-change-semantic-color-key='move-to'] .tracked-change-text.is-inserted[data-v-
|
|
1134
|
+
.tracked-change[data-track-change-semantic-color-key='move-to'] .tracked-change-text.is-inserted[data-v-f4c743f2] {
|
|
1093
1135
|
color: var(--sd-ui-comments-move-to-text, #00853d);
|
|
1094
1136
|
}
|
|
1095
|
-
.tracked-change-detail-lines[data-v-
|
|
1137
|
+
.tracked-change-detail-lines[data-v-f4c743f2] {
|
|
1096
1138
|
margin-top: 4px;
|
|
1097
1139
|
}
|
|
1098
|
-
.tracked-change-detail-line[data-v-
|
|
1140
|
+
.tracked-change-detail-line[data-v-f4c743f2] {
|
|
1099
1141
|
font-size: 12px;
|
|
1100
1142
|
line-height: 1.4;
|
|
1101
1143
|
}
|
|
1102
|
-
.tracked-change-image-preview[data-v-
|
|
1144
|
+
.tracked-change-image-preview[data-v-f4c743f2] {
|
|
1103
1145
|
display: inline-flex;
|
|
1104
1146
|
align-items: center;
|
|
1105
1147
|
justify-content: center;
|
|
@@ -1110,7 +1152,7 @@ img[data-v-c95b2073] {
|
|
|
1110
1152
|
max-width: 96px;
|
|
1111
1153
|
max-height: 96px;
|
|
1112
1154
|
}
|
|
1113
|
-
.tracked-change-image-preview__image[data-v-
|
|
1155
|
+
.tracked-change-image-preview__image[data-v-f4c743f2] {
|
|
1114
1156
|
display: block;
|
|
1115
1157
|
width: auto;
|
|
1116
1158
|
height: auto;
|
|
@@ -1120,7 +1162,7 @@ img[data-v-c95b2073] {
|
|
|
1120
1162
|
}
|
|
1121
1163
|
|
|
1122
1164
|
/* ── Failed tracked-change decision alert (SD-3772 §6) ── */
|
|
1123
|
-
.tracked-change-decision-alert[data-v-
|
|
1165
|
+
.tracked-change-decision-alert[data-v-f4c743f2] {
|
|
1124
1166
|
display: flex;
|
|
1125
1167
|
align-items: center;
|
|
1126
1168
|
justify-content: space-between;
|
|
@@ -1134,12 +1176,12 @@ img[data-v-c95b2073] {
|
|
|
1134
1176
|
font-size: var(--sd-ui-comments-body-size, 14px);
|
|
1135
1177
|
line-height: 1.4;
|
|
1136
1178
|
}
|
|
1137
|
-
.tracked-change-decision-alert__retry[data-v-
|
|
1179
|
+
.tracked-change-decision-alert__retry[data-v-f4c743f2] {
|
|
1138
1180
|
flex-shrink: 0;
|
|
1139
1181
|
}
|
|
1140
1182
|
|
|
1141
1183
|
/* ── Resolved badge ── */
|
|
1142
|
-
.resolved-badge[data-v-
|
|
1184
|
+
.resolved-badge[data-v-f4c743f2] {
|
|
1143
1185
|
display: inline-flex;
|
|
1144
1186
|
align-items: center;
|
|
1145
1187
|
gap: 4px;
|
|
@@ -1148,33 +1190,33 @@ img[data-v-c95b2073] {
|
|
|
1148
1190
|
color: var(--sd-ui-comments-resolved-text, #00853d);
|
|
1149
1191
|
margin-bottom: 4px;
|
|
1150
1192
|
}
|
|
1151
|
-
.resolved-badge__icon[data-v-
|
|
1193
|
+
.resolved-badge__icon[data-v-f4c743f2] {
|
|
1152
1194
|
display: inline-flex;
|
|
1153
1195
|
width: 12px;
|
|
1154
1196
|
height: 12px;
|
|
1155
1197
|
}
|
|
1156
|
-
.resolved-badge__icon[data-v-
|
|
1198
|
+
.resolved-badge__icon[data-v-f4c743f2] svg {
|
|
1157
1199
|
width: 100%;
|
|
1158
1200
|
height: 100%;
|
|
1159
1201
|
fill: currentColor;
|
|
1160
1202
|
}
|
|
1161
1203
|
|
|
1162
1204
|
/* ── Text truncation ── */
|
|
1163
|
-
.comment.is-truncated[data-v-
|
|
1164
|
-
.tracked-change.is-truncated[data-v-
|
|
1205
|
+
.comment.is-truncated[data-v-f4c743f2],
|
|
1206
|
+
.tracked-change.is-truncated[data-v-f4c743f2] {
|
|
1165
1207
|
display: -webkit-box;
|
|
1166
1208
|
-webkit-line-clamp: 3;
|
|
1167
1209
|
-webkit-box-orient: vertical;
|
|
1168
1210
|
max-height: 4.5em;
|
|
1169
1211
|
overflow: hidden;
|
|
1170
1212
|
}
|
|
1171
|
-
.comment.is-scrollable[data-v-
|
|
1172
|
-
.tracked-change.is-scrollable[data-v-
|
|
1213
|
+
.comment.is-scrollable[data-v-f4c743f2],
|
|
1214
|
+
.tracked-change.is-scrollable[data-v-f4c743f2] {
|
|
1173
1215
|
max-height: 220px;
|
|
1174
1216
|
overflow-y: auto;
|
|
1175
1217
|
padding-right: 4px;
|
|
1176
1218
|
}
|
|
1177
|
-
.show-more-toggle[data-v-
|
|
1219
|
+
.show-more-toggle[data-v-f4c743f2] {
|
|
1178
1220
|
font-size: 12px;
|
|
1179
1221
|
color: var(--sd-ui-action, #1355ff);
|
|
1180
1222
|
cursor: pointer;
|
|
@@ -1182,12 +1224,12 @@ img[data-v-c95b2073] {
|
|
|
1182
1224
|
margin-top: 4px;
|
|
1183
1225
|
user-select: none;
|
|
1184
1226
|
}
|
|
1185
|
-
.show-more-toggle[data-v-
|
|
1227
|
+
.show-more-toggle[data-v-f4c743f2]:hover {
|
|
1186
1228
|
text-decoration: underline;
|
|
1187
1229
|
}
|
|
1188
1230
|
|
|
1189
1231
|
/* ── Thread collapse ── */
|
|
1190
|
-
.collapsed-replies[data-v-
|
|
1232
|
+
.collapsed-replies[data-v-f4c743f2] {
|
|
1191
1233
|
display: flex;
|
|
1192
1234
|
align-items: center;
|
|
1193
1235
|
gap: 6px;
|
|
@@ -1198,43 +1240,43 @@ img[data-v-c95b2073] {
|
|
|
1198
1240
|
cursor: pointer;
|
|
1199
1241
|
user-select: none;
|
|
1200
1242
|
}
|
|
1201
|
-
.collapsed-replies[data-v-
|
|
1243
|
+
.collapsed-replies[data-v-f4c743f2]:hover {
|
|
1202
1244
|
text-decoration: underline;
|
|
1203
1245
|
}
|
|
1204
|
-
.collapsed-avatars[data-v-
|
|
1246
|
+
.collapsed-avatars[data-v-f4c743f2] {
|
|
1205
1247
|
display: flex;
|
|
1206
1248
|
}
|
|
1207
|
-
.collapsed-avatars .mini-avatar[data-v-
|
|
1249
|
+
.collapsed-avatars .mini-avatar[data-v-f4c743f2] {
|
|
1208
1250
|
--sd-comment-avatar-size: 20px;
|
|
1209
1251
|
--sd-comment-avatar-font-size: 8px;
|
|
1210
1252
|
margin-left: -4px;
|
|
1211
1253
|
border: 2px solid var(--sd-ui-comments-card-active-bg, #ffffff);
|
|
1212
1254
|
}
|
|
1213
|
-
.collapsed-avatars .mini-avatar[data-v-
|
|
1255
|
+
.collapsed-avatars .mini-avatar[data-v-f4c743f2]:first-child {
|
|
1214
1256
|
margin-left: 0;
|
|
1215
1257
|
}
|
|
1216
1258
|
|
|
1217
1259
|
/* ── New comment input ── */
|
|
1218
|
-
.new-comment-input-wrapper[data-v-
|
|
1260
|
+
.new-comment-input-wrapper[data-v-f4c743f2] {
|
|
1219
1261
|
border: 1.5px solid var(--sd-ui-comments-input-border, #dbdbdb);
|
|
1220
1262
|
border-radius: 12px;
|
|
1221
1263
|
padding: 8.5px 10.5px;
|
|
1222
1264
|
background: var(--sd-ui-comments-input-bg, #ffffff);
|
|
1223
1265
|
margin-top: 4px;
|
|
1224
1266
|
max-height: 150px;
|
|
1225
|
-
overflow
|
|
1267
|
+
overflow: visible;
|
|
1226
1268
|
}
|
|
1227
|
-
.new-comment-input-wrapper[data-v-
|
|
1269
|
+
.new-comment-input-wrapper[data-v-f4c743f2]:focus-within {
|
|
1228
1270
|
border-color: var(--sd-ui-comments-input-focus-border, #4f7cff);
|
|
1229
1271
|
box-shadow: 0 0 0 2px rgba(79, 124, 255, 0.16);
|
|
1230
1272
|
}
|
|
1231
|
-
.new-comment-input-wrapper[data-v-
|
|
1273
|
+
.new-comment-input-wrapper[data-v-f4c743f2] .comment-entry {
|
|
1232
1274
|
border-radius: 0;
|
|
1233
1275
|
}
|
|
1234
|
-
.new-comment-input-wrapper[data-v-
|
|
1276
|
+
.new-comment-input-wrapper[data-v-f4c743f2] .input-section {
|
|
1235
1277
|
margin: 0;
|
|
1236
1278
|
}
|
|
1237
|
-
.new-comment-input-wrapper[data-v-
|
|
1279
|
+
.new-comment-input-wrapper[data-v-f4c743f2] .superdoc-field {
|
|
1238
1280
|
font-size: 14px;
|
|
1239
1281
|
line-height: 20px;
|
|
1240
1282
|
border: none;
|
|
@@ -1245,18 +1287,18 @@ img[data-v-c95b2073] {
|
|
|
1245
1287
|
max-height: 132px;
|
|
1246
1288
|
resize: none;
|
|
1247
1289
|
}
|
|
1248
|
-
.new-comment-input-wrapper[data-v-
|
|
1249
|
-
.new-comment-input-wrapper[data-v-
|
|
1290
|
+
.new-comment-input-wrapper[data-v-f4c743f2] .superdoc-field:focus,
|
|
1291
|
+
.new-comment-input-wrapper[data-v-f4c743f2] .superdoc-field:active {
|
|
1250
1292
|
border: none;
|
|
1251
1293
|
box-shadow: none;
|
|
1252
1294
|
outline: none;
|
|
1253
1295
|
}
|
|
1254
|
-
.new-comment-input-wrapper[data-v-
|
|
1296
|
+
.new-comment-input-wrapper[data-v-f4c743f2] .sd-editor-placeholder::before {
|
|
1255
1297
|
content: 'Comment or add others with @';
|
|
1256
1298
|
}
|
|
1257
1299
|
|
|
1258
1300
|
/* ── Reply pill & expanded input ── */
|
|
1259
|
-
.reply-pill[data-v-
|
|
1301
|
+
.reply-pill[data-v-f4c743f2] {
|
|
1260
1302
|
width: 100%;
|
|
1261
1303
|
padding: 8.5px 10.5px;
|
|
1262
1304
|
border: 1.5px solid transparent;
|
|
@@ -1270,34 +1312,34 @@ img[data-v-c95b2073] {
|
|
|
1270
1312
|
cursor: text;
|
|
1271
1313
|
transition: background 150ms ease;
|
|
1272
1314
|
}
|
|
1273
|
-
.reply-pill[data-v-
|
|
1315
|
+
.reply-pill[data-v-f4c743f2]:hover {
|
|
1274
1316
|
background: var(--sd-color-gray-200, #f2f2f2);
|
|
1275
1317
|
}
|
|
1276
|
-
.reply-pill[data-v-
|
|
1318
|
+
.reply-pill[data-v-f4c743f2]:disabled {
|
|
1277
1319
|
cursor: not-allowed;
|
|
1278
1320
|
}
|
|
1279
|
-
.reply-expanded[data-v-
|
|
1321
|
+
.reply-expanded[data-v-f4c743f2] {
|
|
1280
1322
|
margin-top: 10px;
|
|
1281
1323
|
}
|
|
1282
|
-
.reply-input-wrapper[data-v-
|
|
1324
|
+
.reply-input-wrapper[data-v-f4c743f2] {
|
|
1283
1325
|
border: 1.5px solid var(--sd-ui-comments-input-border, #dbdbdb);
|
|
1284
1326
|
border-radius: 12px;
|
|
1285
1327
|
padding: 8.5px 10.5px;
|
|
1286
1328
|
background: var(--sd-ui-comments-input-bg, #ffffff);
|
|
1287
1329
|
max-height: 150px;
|
|
1288
|
-
overflow
|
|
1330
|
+
overflow: visible;
|
|
1289
1331
|
}
|
|
1290
|
-
.reply-input-wrapper[data-v-
|
|
1332
|
+
.reply-input-wrapper[data-v-f4c743f2]:focus-within {
|
|
1291
1333
|
border-color: var(--sd-ui-comments-input-focus-border, #4f7cff);
|
|
1292
1334
|
box-shadow: 0 0 0 2px rgba(79, 124, 255, 0.16);
|
|
1293
1335
|
}
|
|
1294
|
-
.reply-input-wrapper[data-v-
|
|
1336
|
+
.reply-input-wrapper[data-v-f4c743f2] .comment-entry {
|
|
1295
1337
|
border-radius: 0;
|
|
1296
1338
|
}
|
|
1297
|
-
.reply-input-wrapper[data-v-
|
|
1339
|
+
.reply-input-wrapper[data-v-f4c743f2] .input-section {
|
|
1298
1340
|
margin: 0;
|
|
1299
1341
|
}
|
|
1300
|
-
.reply-input-wrapper[data-v-
|
|
1342
|
+
.reply-input-wrapper[data-v-f4c743f2] .superdoc-field {
|
|
1301
1343
|
font-size: 14px;
|
|
1302
1344
|
line-height: 20px;
|
|
1303
1345
|
border: none;
|
|
@@ -1308,23 +1350,23 @@ img[data-v-c95b2073] {
|
|
|
1308
1350
|
max-height: 132px;
|
|
1309
1351
|
resize: none;
|
|
1310
1352
|
}
|
|
1311
|
-
.reply-input-wrapper[data-v-
|
|
1312
|
-
.reply-input-wrapper[data-v-
|
|
1353
|
+
.reply-input-wrapper[data-v-f4c743f2] .superdoc-field:focus,
|
|
1354
|
+
.reply-input-wrapper[data-v-f4c743f2] .superdoc-field:active {
|
|
1313
1355
|
border: none;
|
|
1314
1356
|
box-shadow: none;
|
|
1315
1357
|
outline: none;
|
|
1316
1358
|
}
|
|
1317
|
-
.reply-input-wrapper[data-v-
|
|
1359
|
+
.reply-input-wrapper[data-v-f4c743f2] .sd-editor-placeholder::before {
|
|
1318
1360
|
content: 'Reply or add others with @';
|
|
1319
1361
|
}
|
|
1320
|
-
.reply-actions[data-v-
|
|
1362
|
+
.reply-actions[data-v-f4c743f2] {
|
|
1321
1363
|
display: flex;
|
|
1322
1364
|
justify-content: flex-end;
|
|
1323
1365
|
align-items: center;
|
|
1324
1366
|
gap: 16px;
|
|
1325
1367
|
margin-top: 8px;
|
|
1326
1368
|
}
|
|
1327
|
-
.reply-btn-cancel[data-v-
|
|
1369
|
+
.reply-btn-cancel[data-v-f4c743f2] {
|
|
1328
1370
|
background: none;
|
|
1329
1371
|
border: none;
|
|
1330
1372
|
font-size: 13px;
|
|
@@ -1335,10 +1377,10 @@ img[data-v-c95b2073] {
|
|
|
1335
1377
|
font-family: inherit;
|
|
1336
1378
|
transition: color 150ms;
|
|
1337
1379
|
}
|
|
1338
|
-
.reply-btn-cancel[data-v-
|
|
1380
|
+
.reply-btn-cancel[data-v-f4c743f2]:hover {
|
|
1339
1381
|
color: var(--sd-ui-text, #212121);
|
|
1340
1382
|
}
|
|
1341
|
-
.reply-btn-primary[data-v-
|
|
1383
|
+
.reply-btn-primary[data-v-f4c743f2] {
|
|
1342
1384
|
background: var(--sd-ui-action, #1355ff);
|
|
1343
1385
|
border: none;
|
|
1344
1386
|
font-size: 13px;
|
|
@@ -1350,19 +1392,19 @@ img[data-v-c95b2073] {
|
|
|
1350
1392
|
font-family: inherit;
|
|
1351
1393
|
transition: background 150ms;
|
|
1352
1394
|
}
|
|
1353
|
-
.reply-btn-primary[data-v-
|
|
1395
|
+
.reply-btn-primary[data-v-f4c743f2]:hover {
|
|
1354
1396
|
background: var(--sd-ui-action-hover, #0f44cc);
|
|
1355
1397
|
}
|
|
1356
|
-
.reply-btn-primary.sd-is-disabled[data-v-
|
|
1398
|
+
.reply-btn-primary.sd-is-disabled[data-v-f4c743f2] {
|
|
1357
1399
|
background: var(--sd-color-gray-400, #dbdbdb);
|
|
1358
1400
|
color: var(--sd-color-gray-600, #888888);
|
|
1359
1401
|
cursor: default;
|
|
1360
1402
|
pointer-events: none;
|
|
1361
1403
|
}
|
|
1362
|
-
.existing-internal-input[data-v-
|
|
1404
|
+
.existing-internal-input[data-v-f4c743f2] {
|
|
1363
1405
|
margin-bottom: 10px;
|
|
1364
1406
|
}
|
|
1365
|
-
.sd-internal-dropdown[data-v-
|
|
1407
|
+
.sd-internal-dropdown[data-v-f4c743f2] {
|
|
1366
1408
|
display: inline-block;
|
|
1367
1409
|
}
|
|
1368
1410
|
|
|
@@ -1770,11 +1812,11 @@ img[data-v-c95b2073] {
|
|
|
1770
1812
|
pointer-events: auto;
|
|
1771
1813
|
}
|
|
1772
1814
|
|
|
1773
|
-
.superdoc[data-v-
|
|
1815
|
+
.superdoc[data-v-85324013] {
|
|
1774
1816
|
display: flex;
|
|
1775
1817
|
position: relative;
|
|
1776
1818
|
}
|
|
1777
|
-
.sd-visually-hidden[data-v-
|
|
1819
|
+
.sd-visually-hidden[data-v-85324013] {
|
|
1778
1820
|
position: absolute;
|
|
1779
1821
|
width: 1px;
|
|
1780
1822
|
height: 1px;
|
|
@@ -1785,30 +1827,30 @@ img[data-v-c95b2073] {
|
|
|
1785
1827
|
white-space: nowrap;
|
|
1786
1828
|
border: 0;
|
|
1787
1829
|
}
|
|
1788
|
-
.right-sidebar[data-v-
|
|
1830
|
+
.right-sidebar[data-v-85324013] {
|
|
1789
1831
|
min-width: 320px;
|
|
1790
1832
|
height: 100%;
|
|
1791
1833
|
}
|
|
1792
|
-
.floating-comments[data-v-
|
|
1834
|
+
.floating-comments[data-v-85324013] {
|
|
1793
1835
|
min-width: 300px;
|
|
1794
1836
|
width: 300px;
|
|
1795
1837
|
height: 100%;
|
|
1796
1838
|
overflow: visible;
|
|
1797
1839
|
}
|
|
1798
|
-
.superdoc__layers[data-v-
|
|
1840
|
+
.superdoc__layers[data-v-85324013] {
|
|
1799
1841
|
height: 100%;
|
|
1800
1842
|
position: relative;
|
|
1801
1843
|
box-sizing: border-box;
|
|
1802
1844
|
}
|
|
1803
|
-
.superdoc__document[data-v-
|
|
1845
|
+
.superdoc__document[data-v-85324013] {
|
|
1804
1846
|
width: 100%;
|
|
1805
1847
|
position: relative;
|
|
1806
1848
|
}
|
|
1807
|
-
.superdoc__sub-document[data-v-
|
|
1849
|
+
.superdoc__sub-document[data-v-85324013] {
|
|
1808
1850
|
width: 100%;
|
|
1809
1851
|
position: relative;
|
|
1810
1852
|
}
|
|
1811
|
-
.superdoc__selection-layer[data-v-
|
|
1853
|
+
.superdoc__selection-layer[data-v-85324013] {
|
|
1812
1854
|
position: absolute;
|
|
1813
1855
|
min-width: 100%;
|
|
1814
1856
|
min-height: 100%;
|
|
@@ -1819,13 +1861,13 @@ img[data-v-c95b2073] {
|
|
|
1819
1861
|
/* SD-3497: PDF whiteboard overlay sits above the rendered PDF canvas but below
|
|
1820
1862
|
the PDF comment anchors (z-index 6 in PdfCommentsLayer) so anchors stay
|
|
1821
1863
|
clickable, and below the selection layer (z-index 10). */
|
|
1822
|
-
.superdoc__whiteboard-layer[data-v-
|
|
1864
|
+
.superdoc__whiteboard-layer[data-v-85324013] {
|
|
1823
1865
|
z-index: 4;
|
|
1824
1866
|
}
|
|
1825
|
-
.superdoc__temp-selection[data-v-
|
|
1867
|
+
.superdoc__temp-selection[data-v-85324013] {
|
|
1826
1868
|
position: absolute;
|
|
1827
1869
|
}
|
|
1828
|
-
.superdoc__right-sidebar[data-v-
|
|
1870
|
+
.superdoc__right-sidebar[data-v-85324013] {
|
|
1829
1871
|
width: 320px;
|
|
1830
1872
|
min-width: 320px;
|
|
1831
1873
|
padding: 0 10px;
|
|
@@ -1833,7 +1875,7 @@ img[data-v-c95b2073] {
|
|
|
1833
1875
|
position: relative;
|
|
1834
1876
|
z-index: 2;
|
|
1835
1877
|
}
|
|
1836
|
-
.superdoc__compact-comment-popover[data-v-
|
|
1878
|
+
.superdoc__compact-comment-popover[data-v-85324013] {
|
|
1837
1879
|
position: absolute;
|
|
1838
1880
|
top: 12px;
|
|
1839
1881
|
right: 12px;
|
|
@@ -1842,14 +1884,14 @@ img[data-v-c95b2073] {
|
|
|
1842
1884
|
}
|
|
1843
1885
|
|
|
1844
1886
|
/* Tools styles */
|
|
1845
|
-
.tools[data-v-
|
|
1887
|
+
.tools[data-v-85324013] {
|
|
1846
1888
|
position: absolute;
|
|
1847
1889
|
z-index: 3;
|
|
1848
1890
|
display: flex;
|
|
1849
1891
|
flex-direction: column;
|
|
1850
1892
|
gap: var(--sd-ui-tools-gap, 6px);
|
|
1851
1893
|
}
|
|
1852
|
-
.tools-item[data-v-
|
|
1894
|
+
.tools-item[data-v-85324013] {
|
|
1853
1895
|
display: flex;
|
|
1854
1896
|
align-items: center;
|
|
1855
1897
|
justify-content: center;
|
|
@@ -1860,10 +1902,10 @@ img[data-v-c95b2073] {
|
|
|
1860
1902
|
cursor: pointer;
|
|
1861
1903
|
position: relative;
|
|
1862
1904
|
}
|
|
1863
|
-
.tools-item i[data-v-
|
|
1905
|
+
.tools-item i[data-v-85324013] {
|
|
1864
1906
|
cursor: pointer;
|
|
1865
1907
|
}
|
|
1866
|
-
.superdoc__tools-icon[data-v-
|
|
1908
|
+
.superdoc__tools-icon[data-v-85324013] {
|
|
1867
1909
|
width: var(--sd-ui-tools-icon-size, 20px);
|
|
1868
1910
|
height: var(--sd-ui-tools-icon-size, 20px);
|
|
1869
1911
|
flex-shrink: 0;
|
|
@@ -1878,22 +1920,22 @@ img[data-v-c95b2073] {
|
|
|
1878
1920
|
|
|
1879
1921
|
/* 834px is iPad screen size in portrait orientation */
|
|
1880
1922
|
@media (max-width: 834px) {
|
|
1881
|
-
.superdoc .superdoc__layers[data-v-
|
|
1923
|
+
.superdoc .superdoc__layers[data-v-85324013] {
|
|
1882
1924
|
margin: 0;
|
|
1883
1925
|
border: 0 !important;
|
|
1884
1926
|
box-shadow: none;
|
|
1885
1927
|
}
|
|
1886
|
-
.superdoc__sub-document[data-v-
|
|
1928
|
+
.superdoc__sub-document[data-v-85324013] {
|
|
1887
1929
|
max-width: 100%;
|
|
1888
1930
|
}
|
|
1889
|
-
.superdoc__right-sidebar[data-v-
|
|
1931
|
+
.superdoc__right-sidebar[data-v-85324013] {
|
|
1890
1932
|
padding: 10px;
|
|
1891
1933
|
position: relative;
|
|
1892
1934
|
}
|
|
1893
1935
|
}
|
|
1894
1936
|
|
|
1895
1937
|
/* AI Writer styles */
|
|
1896
|
-
.ai-writer-container[data-v-
|
|
1938
|
+
.ai-writer-container[data-v-85324013] {
|
|
1897
1939
|
position: fixed;
|
|
1898
1940
|
z-index: 1000;
|
|
1899
1941
|
background: white;
|
|
@@ -1909,10 +1951,10 @@ img[data-v-c95b2073] {
|
|
|
1909
1951
|
transform: translateY(-50%);
|
|
1910
1952
|
z-index: 50;
|
|
1911
1953
|
} */
|
|
1912
|
-
.ai-tool > svg[data-v-
|
|
1954
|
+
.ai-tool > svg[data-v-85324013] {
|
|
1913
1955
|
fill: transparent;
|
|
1914
1956
|
}
|
|
1915
|
-
.ai-tool[data-v-
|
|
1957
|
+
.ai-tool[data-v-85324013]::before {
|
|
1916
1958
|
content: '';
|
|
1917
1959
|
position: absolute;
|
|
1918
1960
|
width: 20px;
|
|
@@ -1933,7 +1975,7 @@ img[data-v-c95b2073] {
|
|
|
1933
1975
|
filter: brightness(1.2);
|
|
1934
1976
|
transition: filter 0.2s ease;
|
|
1935
1977
|
}
|
|
1936
|
-
.ai-tool[data-v-
|
|
1978
|
+
.ai-tool[data-v-85324013]:hover::before {
|
|
1937
1979
|
filter: brightness(1.3);
|
|
1938
1980
|
}
|
|
1939
1981
|
|