superdoc 2.0.0-next.24 → 2.0.0-next.26
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/AGENTS.md +2 -2
- package/dist/chunks/{create-super-doc-ui-BMpP-iB6.es.js → create-super-doc-ui-CBs8xQUw.es.js} +7 -2
- package/dist/chunks/{create-super-doc-ui-DbFtp705.cjs → create-super-doc-ui-CHZKlLiH.cjs} +7 -2
- package/dist/collaboration-upgrade-engine.cjs +1 -1
- package/dist/collaboration-upgrade-engine.es.js +1 -1
- package/dist/document-api/src/types/blocks.types.d.ts +3 -1
- package/dist/layout-engine/layout-engine/src/paginator.d.ts +8 -0
- package/dist/public/ui-react.cjs +1 -1
- package/dist/public/ui-react.es.js +1 -1
- package/dist/public/ui.cjs +1 -1
- package/dist/public/ui.es.js +1 -1
- package/dist/style.css +104 -98
- package/dist/style.layered.css +104 -98
- package/dist/superdoc/src/components/CommentsLayer/use-comment.d.ts +1 -0
- package/dist/superdoc/src/core/types/index.d.ts +4 -0
- package/dist/superdoc/src/stores/comments-store.d.ts +37 -7
- package/dist/superdoc/src/stores/superdoc-store.d.ts +111 -21
- package/dist/superdoc.cjs +305 -58
- package/dist/superdoc.es.js +305 -58
- 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
package/dist/style.css
CHANGED
|
@@ -670,12 +670,18 @@
|
|
|
670
670
|
* find-match colour must override any source-doc highlight. The class is only
|
|
671
671
|
* present during a search; clearing the session removes it and the original
|
|
672
672
|
* highlight is restored. */
|
|
673
|
-
.superdoc .ProseMirror-search-match {
|
|
673
|
+
.superdoc .ProseMirror-search-match:not([data-sd-search-exact-highlight]) {
|
|
674
674
|
background: var(--sd-ui-search-match-bg) !important;
|
|
675
675
|
}
|
|
676
|
-
.superdoc .ProseMirror-active-search-match {
|
|
676
|
+
.superdoc .ProseMirror-active-search-match:not([data-sd-search-exact-highlight]) {
|
|
677
677
|
background: var(--sd-ui-search-match-active-bg) !important;
|
|
678
678
|
}
|
|
679
|
+
::highlight(superdoc-search-match) {
|
|
680
|
+
background: var(--sd-ui-search-match-bg);
|
|
681
|
+
}
|
|
682
|
+
::highlight(superdoc-search-active-match) {
|
|
683
|
+
background: var(--sd-ui-search-match-active-bg);
|
|
684
|
+
}
|
|
679
685
|
/* Proofing underlines are render-only v1/v2 UI state. They must not alter DOCX
|
|
680
686
|
* bytes or layout identity; the runtime owns adding/removing these classes. */
|
|
681
687
|
.superdoc .sd-proofing-spelling,
|
|
@@ -832,28 +838,28 @@ img[data-v-c95b2073] {
|
|
|
832
838
|
background-color: transparent;
|
|
833
839
|
}
|
|
834
840
|
|
|
835
|
-
.comment-header[data-v-
|
|
841
|
+
.comment-header[data-v-359c13bb] {
|
|
836
842
|
display: flex;
|
|
837
843
|
align-items: center;
|
|
838
844
|
justify-content: space-between;
|
|
839
845
|
margin-bottom: 6px;
|
|
840
846
|
}
|
|
841
|
-
.comment-header-left[data-v-
|
|
847
|
+
.comment-header-left[data-v-359c13bb] {
|
|
842
848
|
display: flex;
|
|
843
849
|
align-items: center;
|
|
844
850
|
gap: 8px;
|
|
845
851
|
}
|
|
846
|
-
.user-info[data-v-
|
|
852
|
+
.user-info[data-v-359c13bb] {
|
|
847
853
|
display: flex;
|
|
848
854
|
flex-direction: column;
|
|
849
855
|
}
|
|
850
|
-
.user-name[data-v-
|
|
856
|
+
.user-name[data-v-359c13bb] {
|
|
851
857
|
font-size: var(--sd-ui-comments-author-size, 14px);
|
|
852
858
|
font-weight: var(--sd-ui-comments-author-weight, 600);
|
|
853
859
|
color: var(--sd-ui-comments-author-text, #212121);
|
|
854
860
|
line-height: 1.2em;
|
|
855
861
|
}
|
|
856
|
-
.imported-tag[data-v-
|
|
862
|
+
.imported-tag[data-v-359c13bb] {
|
|
857
863
|
display: inline-block;
|
|
858
864
|
font-size: 9px;
|
|
859
865
|
font-weight: 600;
|
|
@@ -867,12 +873,12 @@ img[data-v-c95b2073] {
|
|
|
867
873
|
vertical-align: middle;
|
|
868
874
|
line-height: 1.4;
|
|
869
875
|
}
|
|
870
|
-
.user-timestamp[data-v-
|
|
876
|
+
.user-timestamp[data-v-359c13bb] {
|
|
871
877
|
line-height: 1.2em;
|
|
872
878
|
font-size: var(--sd-ui-comments-timestamp-size, 12px);
|
|
873
879
|
color: var(--sd-ui-comments-timestamp-text, #888888);
|
|
874
880
|
}
|
|
875
|
-
.overflow-menu[data-v-
|
|
881
|
+
.overflow-menu[data-v-359c13bb] {
|
|
876
882
|
flex-shrink: 1;
|
|
877
883
|
display: flex;
|
|
878
884
|
gap: 6px;
|
|
@@ -880,11 +886,11 @@ img[data-v-c95b2073] {
|
|
|
880
886
|
pointer-events: none;
|
|
881
887
|
transition: opacity 150ms ease;
|
|
882
888
|
}
|
|
883
|
-
.overflow-menu.is-visible[data-v-
|
|
889
|
+
.overflow-menu.is-visible[data-v-359c13bb] {
|
|
884
890
|
opacity: 1;
|
|
885
891
|
pointer-events: auto;
|
|
886
892
|
}
|
|
887
|
-
.overflow-menu__icon[data-v-
|
|
893
|
+
.overflow-menu__icon[data-v-359c13bb] {
|
|
888
894
|
display: flex;
|
|
889
895
|
box-sizing: content-box;
|
|
890
896
|
justify-content: center;
|
|
@@ -898,24 +904,24 @@ img[data-v-c95b2073] {
|
|
|
898
904
|
cursor: pointer;
|
|
899
905
|
transition: all 250ms ease;
|
|
900
906
|
}
|
|
901
|
-
.overflow-menu__icon[data-v-
|
|
907
|
+
.overflow-menu__icon[data-v-359c13bb]:hover {
|
|
902
908
|
background-color: var(--sd-ui-comments-separator, #dbdbdb);
|
|
903
909
|
}
|
|
904
|
-
.overflow-menu__icon.sd-is-disabled[data-v-
|
|
910
|
+
.overflow-menu__icon.sd-is-disabled[data-v-359c13bb] {
|
|
905
911
|
opacity: 0.4;
|
|
906
912
|
cursor: not-allowed;
|
|
907
913
|
pointer-events: auto;
|
|
908
914
|
}
|
|
909
|
-
.overflow-menu__icon.sd-is-disabled[data-v-
|
|
915
|
+
.overflow-menu__icon.sd-is-disabled[data-v-359c13bb]:hover {
|
|
910
916
|
background-color: transparent;
|
|
911
917
|
}
|
|
912
|
-
.overflow-menu__icon[data-v-
|
|
918
|
+
.overflow-menu__icon[data-v-359c13bb] svg {
|
|
913
919
|
width: 100%;
|
|
914
920
|
height: 100%;
|
|
915
921
|
display: block;
|
|
916
922
|
fill: currentColor;
|
|
917
923
|
}
|
|
918
|
-
.overflow-icon[data-v-
|
|
924
|
+
.overflow-icon[data-v-359c13bb] {
|
|
919
925
|
display: inline-flex;
|
|
920
926
|
justify-content: center;
|
|
921
927
|
align-items: center;
|
|
@@ -954,7 +960,7 @@ img[data-v-c95b2073] {
|
|
|
954
960
|
box-shadow: 0 0 0 2px rgba(79, 124, 255, 0.16);
|
|
955
961
|
}
|
|
956
962
|
|
|
957
|
-
.comments-dialog[data-v-
|
|
963
|
+
.comments-dialog[data-v-67a03ee2] {
|
|
958
964
|
display: flex;
|
|
959
965
|
flex-direction: column;
|
|
960
966
|
padding: var(--sd-ui-comments-card-padding, 16px);
|
|
@@ -973,73 +979,73 @@ img[data-v-c95b2073] {
|
|
|
973
979
|
overflow-wrap: break-word;
|
|
974
980
|
word-break: break-word;
|
|
975
981
|
}
|
|
976
|
-
.comments-dialog[data-v-
|
|
982
|
+
.comments-dialog[data-v-67a03ee2]:not(.is-active) {
|
|
977
983
|
cursor: pointer;
|
|
978
984
|
}
|
|
979
|
-
.comments-dialog[data-v-
|
|
985
|
+
.comments-dialog[data-v-67a03ee2]:not(.is-active):not(.is-resolved):hover {
|
|
980
986
|
background-color: var(--sd-ui-comments-card-hover-bg, #f3f6fd);
|
|
981
987
|
}
|
|
982
|
-
.comments-dialog[data-v-
|
|
988
|
+
.comments-dialog[data-v-67a03ee2]:not(.is-resolved):hover .overflow-menu {
|
|
983
989
|
opacity: 1;
|
|
984
990
|
pointer-events: auto;
|
|
985
991
|
}
|
|
986
|
-
.comments-dialog.is-active[data-v-
|
|
992
|
+
.comments-dialog.is-active[data-v-67a03ee2] {
|
|
987
993
|
background-color: var(--sd-ui-comments-card-active-bg, #ffffff);
|
|
988
994
|
border-color: var(--sd-ui-comments-card-active-border, #e0e0e0);
|
|
989
995
|
box-shadow: var(--sd-ui-comments-card-shadow, 0px 4px 12px 0px rgba(50, 50, 50, 0.15));
|
|
990
996
|
z-index: 10;
|
|
991
997
|
}
|
|
992
|
-
.comments-dialog.is-resolved[data-v-
|
|
998
|
+
.comments-dialog.is-resolved[data-v-67a03ee2] {
|
|
993
999
|
background-color: var(--sd-ui-comments-card-resolved-bg, #f0f0f0);
|
|
994
1000
|
}
|
|
995
|
-
.comment-separator[data-v-
|
|
1001
|
+
.comment-separator[data-v-67a03ee2] {
|
|
996
1002
|
background-color: var(--sd-ui-comments-separator, #e0e0e0);
|
|
997
1003
|
height: 1px;
|
|
998
1004
|
width: 100%;
|
|
999
1005
|
margin: 10px 0;
|
|
1000
1006
|
}
|
|
1001
|
-
.comment[data-v-
|
|
1007
|
+
.comment[data-v-67a03ee2] {
|
|
1002
1008
|
font-size: var(--sd-ui-comments-body-size, 14px);
|
|
1003
1009
|
line-height: 1.5;
|
|
1004
1010
|
color: var(--sd-ui-comments-body-text, #212121);
|
|
1005
1011
|
margin: 4px 0 0 0;
|
|
1006
1012
|
}
|
|
1007
|
-
.comment[data-v-
|
|
1013
|
+
.comment[data-v-67a03ee2] p {
|
|
1008
1014
|
margin: 0;
|
|
1009
1015
|
}
|
|
1010
|
-
.tracked-change[data-v-
|
|
1016
|
+
.tracked-change[data-v-67a03ee2] {
|
|
1011
1017
|
font-size: var(--sd-ui-comments-body-size, 14px);
|
|
1012
1018
|
line-height: 1.5;
|
|
1013
1019
|
color: var(--sd-ui-comments-body-text, #212121);
|
|
1014
1020
|
margin: 4px 0 0 0;
|
|
1015
1021
|
}
|
|
1016
|
-
.change-type[data-v-
|
|
1022
|
+
.change-type[data-v-67a03ee2] {
|
|
1017
1023
|
color: var(--sd-ui-comments-body-text, #212121);
|
|
1018
1024
|
}
|
|
1019
|
-
.tracked-change-text[data-v-
|
|
1025
|
+
.tracked-change-text[data-v-67a03ee2] {
|
|
1020
1026
|
color: var(--sd-ui-comments-body-text, #212121);
|
|
1021
1027
|
}
|
|
1022
|
-
.tracked-change-text.is-deleted[data-v-
|
|
1028
|
+
.tracked-change-text.is-deleted[data-v-67a03ee2] {
|
|
1023
1029
|
color: var(--sd-ui-comments-delete-text, #cb0e47);
|
|
1024
1030
|
}
|
|
1025
|
-
.tracked-change-text.is-inserted[data-v-
|
|
1031
|
+
.tracked-change-text.is-inserted[data-v-67a03ee2] {
|
|
1026
1032
|
color: var(--sd-ui-comments-insert-text, #1f6feb);
|
|
1027
1033
|
font-weight: 500;
|
|
1028
1034
|
}
|
|
1029
|
-
.tracked-change[data-track-change-semantic-color-key='move-from'] .tracked-change-text.is-deleted[data-v-
|
|
1035
|
+
.tracked-change[data-track-change-semantic-color-key='move-from'] .tracked-change-text.is-deleted[data-v-67a03ee2] {
|
|
1030
1036
|
color: var(--sd-ui-comments-move-from-text, #00853d);
|
|
1031
1037
|
}
|
|
1032
|
-
.tracked-change[data-track-change-semantic-color-key='move-to'] .tracked-change-text.is-inserted[data-v-
|
|
1038
|
+
.tracked-change[data-track-change-semantic-color-key='move-to'] .tracked-change-text.is-inserted[data-v-67a03ee2] {
|
|
1033
1039
|
color: var(--sd-ui-comments-move-to-text, #00853d);
|
|
1034
1040
|
}
|
|
1035
|
-
.tracked-change-detail-lines[data-v-
|
|
1041
|
+
.tracked-change-detail-lines[data-v-67a03ee2] {
|
|
1036
1042
|
margin-top: 4px;
|
|
1037
1043
|
}
|
|
1038
|
-
.tracked-change-detail-line[data-v-
|
|
1044
|
+
.tracked-change-detail-line[data-v-67a03ee2] {
|
|
1039
1045
|
font-size: 12px;
|
|
1040
1046
|
line-height: 1.4;
|
|
1041
1047
|
}
|
|
1042
|
-
.tracked-change-image-preview[data-v-
|
|
1048
|
+
.tracked-change-image-preview[data-v-67a03ee2] {
|
|
1043
1049
|
display: inline-flex;
|
|
1044
1050
|
align-items: center;
|
|
1045
1051
|
justify-content: center;
|
|
@@ -1050,7 +1056,7 @@ img[data-v-c95b2073] {
|
|
|
1050
1056
|
max-width: 96px;
|
|
1051
1057
|
max-height: 96px;
|
|
1052
1058
|
}
|
|
1053
|
-
.tracked-change-image-preview__image[data-v-
|
|
1059
|
+
.tracked-change-image-preview__image[data-v-67a03ee2] {
|
|
1054
1060
|
display: block;
|
|
1055
1061
|
width: auto;
|
|
1056
1062
|
height: auto;
|
|
@@ -1060,7 +1066,7 @@ img[data-v-c95b2073] {
|
|
|
1060
1066
|
}
|
|
1061
1067
|
|
|
1062
1068
|
/* ── Resolved badge ── */
|
|
1063
|
-
.resolved-badge[data-v-
|
|
1069
|
+
.resolved-badge[data-v-67a03ee2] {
|
|
1064
1070
|
display: inline-flex;
|
|
1065
1071
|
align-items: center;
|
|
1066
1072
|
gap: 4px;
|
|
@@ -1069,26 +1075,26 @@ img[data-v-c95b2073] {
|
|
|
1069
1075
|
color: var(--sd-ui-comments-resolved-text, #00853d);
|
|
1070
1076
|
margin-bottom: 4px;
|
|
1071
1077
|
}
|
|
1072
|
-
.resolved-badge__icon[data-v-
|
|
1078
|
+
.resolved-badge__icon[data-v-67a03ee2] {
|
|
1073
1079
|
display: inline-flex;
|
|
1074
1080
|
width: 12px;
|
|
1075
1081
|
height: 12px;
|
|
1076
1082
|
}
|
|
1077
|
-
.resolved-badge__icon[data-v-
|
|
1083
|
+
.resolved-badge__icon[data-v-67a03ee2] svg {
|
|
1078
1084
|
width: 100%;
|
|
1079
1085
|
height: 100%;
|
|
1080
1086
|
fill: currentColor;
|
|
1081
1087
|
}
|
|
1082
1088
|
|
|
1083
1089
|
/* ── Text truncation ── */
|
|
1084
|
-
.comment.is-truncated[data-v-
|
|
1085
|
-
.tracked-change.is-truncated[data-v-
|
|
1090
|
+
.comment.is-truncated[data-v-67a03ee2],
|
|
1091
|
+
.tracked-change.is-truncated[data-v-67a03ee2] {
|
|
1086
1092
|
display: -webkit-box;
|
|
1087
1093
|
-webkit-line-clamp: 3;
|
|
1088
1094
|
-webkit-box-orient: vertical;
|
|
1089
1095
|
overflow: hidden;
|
|
1090
1096
|
}
|
|
1091
|
-
.show-more-toggle[data-v-
|
|
1097
|
+
.show-more-toggle[data-v-67a03ee2] {
|
|
1092
1098
|
font-size: 12px;
|
|
1093
1099
|
color: var(--sd-ui-action, #1355ff);
|
|
1094
1100
|
cursor: pointer;
|
|
@@ -1096,12 +1102,12 @@ img[data-v-c95b2073] {
|
|
|
1096
1102
|
margin-top: 4px;
|
|
1097
1103
|
user-select: none;
|
|
1098
1104
|
}
|
|
1099
|
-
.show-more-toggle[data-v-
|
|
1105
|
+
.show-more-toggle[data-v-67a03ee2]:hover {
|
|
1100
1106
|
text-decoration: underline;
|
|
1101
1107
|
}
|
|
1102
1108
|
|
|
1103
1109
|
/* ── Thread collapse ── */
|
|
1104
|
-
.collapsed-replies[data-v-
|
|
1110
|
+
.collapsed-replies[data-v-67a03ee2] {
|
|
1105
1111
|
display: flex;
|
|
1106
1112
|
align-items: center;
|
|
1107
1113
|
gap: 6px;
|
|
@@ -1112,24 +1118,24 @@ img[data-v-c95b2073] {
|
|
|
1112
1118
|
cursor: pointer;
|
|
1113
1119
|
user-select: none;
|
|
1114
1120
|
}
|
|
1115
|
-
.collapsed-replies[data-v-
|
|
1121
|
+
.collapsed-replies[data-v-67a03ee2]:hover {
|
|
1116
1122
|
text-decoration: underline;
|
|
1117
1123
|
}
|
|
1118
|
-
.collapsed-avatars[data-v-
|
|
1124
|
+
.collapsed-avatars[data-v-67a03ee2] {
|
|
1119
1125
|
display: flex;
|
|
1120
1126
|
}
|
|
1121
|
-
.collapsed-avatars .mini-avatar[data-v-
|
|
1127
|
+
.collapsed-avatars .mini-avatar[data-v-67a03ee2] {
|
|
1122
1128
|
--sd-comment-avatar-size: 20px;
|
|
1123
1129
|
--sd-comment-avatar-font-size: 8px;
|
|
1124
1130
|
margin-left: -4px;
|
|
1125
1131
|
border: 2px solid var(--sd-ui-comments-card-active-bg, #ffffff);
|
|
1126
1132
|
}
|
|
1127
|
-
.collapsed-avatars .mini-avatar[data-v-
|
|
1133
|
+
.collapsed-avatars .mini-avatar[data-v-67a03ee2]:first-child {
|
|
1128
1134
|
margin-left: 0;
|
|
1129
1135
|
}
|
|
1130
1136
|
|
|
1131
1137
|
/* ── New comment input ── */
|
|
1132
|
-
.new-comment-input-wrapper[data-v-
|
|
1138
|
+
.new-comment-input-wrapper[data-v-67a03ee2] {
|
|
1133
1139
|
border: 1.5px solid var(--sd-ui-comments-input-border, #dbdbdb);
|
|
1134
1140
|
border-radius: 12px;
|
|
1135
1141
|
padding: 8.5px 10.5px;
|
|
@@ -1138,17 +1144,17 @@ img[data-v-c95b2073] {
|
|
|
1138
1144
|
max-height: 150px;
|
|
1139
1145
|
overflow-y: auto;
|
|
1140
1146
|
}
|
|
1141
|
-
.new-comment-input-wrapper[data-v-
|
|
1147
|
+
.new-comment-input-wrapper[data-v-67a03ee2]:focus-within {
|
|
1142
1148
|
border-color: var(--sd-ui-comments-input-focus-border, #4f7cff);
|
|
1143
1149
|
box-shadow: 0 0 0 2px rgba(79, 124, 255, 0.16);
|
|
1144
1150
|
}
|
|
1145
|
-
.new-comment-input-wrapper[data-v-
|
|
1151
|
+
.new-comment-input-wrapper[data-v-67a03ee2] .comment-entry {
|
|
1146
1152
|
border-radius: 0;
|
|
1147
1153
|
}
|
|
1148
|
-
.new-comment-input-wrapper[data-v-
|
|
1154
|
+
.new-comment-input-wrapper[data-v-67a03ee2] .input-section {
|
|
1149
1155
|
margin: 0;
|
|
1150
1156
|
}
|
|
1151
|
-
.new-comment-input-wrapper[data-v-
|
|
1157
|
+
.new-comment-input-wrapper[data-v-67a03ee2] .superdoc-field {
|
|
1152
1158
|
font-size: 14px;
|
|
1153
1159
|
line-height: 20px;
|
|
1154
1160
|
border: none;
|
|
@@ -1159,18 +1165,18 @@ img[data-v-c95b2073] {
|
|
|
1159
1165
|
max-height: 132px;
|
|
1160
1166
|
resize: none;
|
|
1161
1167
|
}
|
|
1162
|
-
.new-comment-input-wrapper[data-v-
|
|
1163
|
-
.new-comment-input-wrapper[data-v-
|
|
1168
|
+
.new-comment-input-wrapper[data-v-67a03ee2] .superdoc-field:focus,
|
|
1169
|
+
.new-comment-input-wrapper[data-v-67a03ee2] .superdoc-field:active {
|
|
1164
1170
|
border: none;
|
|
1165
1171
|
box-shadow: none;
|
|
1166
1172
|
outline: none;
|
|
1167
1173
|
}
|
|
1168
|
-
.new-comment-input-wrapper[data-v-
|
|
1174
|
+
.new-comment-input-wrapper[data-v-67a03ee2] .sd-editor-placeholder::before {
|
|
1169
1175
|
content: 'Comment or add others with @';
|
|
1170
1176
|
}
|
|
1171
1177
|
|
|
1172
1178
|
/* ── Reply pill & expanded input ── */
|
|
1173
|
-
.reply-pill[data-v-
|
|
1179
|
+
.reply-pill[data-v-67a03ee2] {
|
|
1174
1180
|
padding: 8.5px 10.5px;
|
|
1175
1181
|
border: 1.5px solid transparent;
|
|
1176
1182
|
border-radius: 9999px;
|
|
@@ -1181,13 +1187,13 @@ img[data-v-c95b2073] {
|
|
|
1181
1187
|
cursor: text;
|
|
1182
1188
|
transition: background 150ms ease;
|
|
1183
1189
|
}
|
|
1184
|
-
.reply-pill[data-v-
|
|
1190
|
+
.reply-pill[data-v-67a03ee2]:hover {
|
|
1185
1191
|
background: var(--sd-color-gray-200, #f2f2f2);
|
|
1186
1192
|
}
|
|
1187
|
-
.reply-expanded[data-v-
|
|
1193
|
+
.reply-expanded[data-v-67a03ee2] {
|
|
1188
1194
|
margin-top: 10px;
|
|
1189
1195
|
}
|
|
1190
|
-
.reply-input-wrapper[data-v-
|
|
1196
|
+
.reply-input-wrapper[data-v-67a03ee2] {
|
|
1191
1197
|
border: 1.5px solid var(--sd-ui-comments-input-border, #dbdbdb);
|
|
1192
1198
|
border-radius: 12px;
|
|
1193
1199
|
padding: 8.5px 10.5px;
|
|
@@ -1195,17 +1201,17 @@ img[data-v-c95b2073] {
|
|
|
1195
1201
|
max-height: 150px;
|
|
1196
1202
|
overflow-y: auto;
|
|
1197
1203
|
}
|
|
1198
|
-
.reply-input-wrapper[data-v-
|
|
1204
|
+
.reply-input-wrapper[data-v-67a03ee2]:focus-within {
|
|
1199
1205
|
border-color: var(--sd-ui-comments-input-focus-border, #4f7cff);
|
|
1200
1206
|
box-shadow: 0 0 0 2px rgba(79, 124, 255, 0.16);
|
|
1201
1207
|
}
|
|
1202
|
-
.reply-input-wrapper[data-v-
|
|
1208
|
+
.reply-input-wrapper[data-v-67a03ee2] .comment-entry {
|
|
1203
1209
|
border-radius: 0;
|
|
1204
1210
|
}
|
|
1205
|
-
.reply-input-wrapper[data-v-
|
|
1211
|
+
.reply-input-wrapper[data-v-67a03ee2] .input-section {
|
|
1206
1212
|
margin: 0;
|
|
1207
1213
|
}
|
|
1208
|
-
.reply-input-wrapper[data-v-
|
|
1214
|
+
.reply-input-wrapper[data-v-67a03ee2] .superdoc-field {
|
|
1209
1215
|
font-size: 14px;
|
|
1210
1216
|
line-height: 20px;
|
|
1211
1217
|
border: none;
|
|
@@ -1216,23 +1222,23 @@ img[data-v-c95b2073] {
|
|
|
1216
1222
|
max-height: 132px;
|
|
1217
1223
|
resize: none;
|
|
1218
1224
|
}
|
|
1219
|
-
.reply-input-wrapper[data-v-
|
|
1220
|
-
.reply-input-wrapper[data-v-
|
|
1225
|
+
.reply-input-wrapper[data-v-67a03ee2] .superdoc-field:focus,
|
|
1226
|
+
.reply-input-wrapper[data-v-67a03ee2] .superdoc-field:active {
|
|
1221
1227
|
border: none;
|
|
1222
1228
|
box-shadow: none;
|
|
1223
1229
|
outline: none;
|
|
1224
1230
|
}
|
|
1225
|
-
.reply-input-wrapper[data-v-
|
|
1231
|
+
.reply-input-wrapper[data-v-67a03ee2] .sd-editor-placeholder::before {
|
|
1226
1232
|
content: 'Reply or add others with @';
|
|
1227
1233
|
}
|
|
1228
|
-
.reply-actions[data-v-
|
|
1234
|
+
.reply-actions[data-v-67a03ee2] {
|
|
1229
1235
|
display: flex;
|
|
1230
1236
|
justify-content: flex-end;
|
|
1231
1237
|
align-items: center;
|
|
1232
1238
|
gap: 16px;
|
|
1233
1239
|
margin-top: 8px;
|
|
1234
1240
|
}
|
|
1235
|
-
.reply-btn-cancel[data-v-
|
|
1241
|
+
.reply-btn-cancel[data-v-67a03ee2] {
|
|
1236
1242
|
background: none;
|
|
1237
1243
|
border: none;
|
|
1238
1244
|
font-size: 13px;
|
|
@@ -1243,10 +1249,10 @@ img[data-v-c95b2073] {
|
|
|
1243
1249
|
font-family: inherit;
|
|
1244
1250
|
transition: color 150ms;
|
|
1245
1251
|
}
|
|
1246
|
-
.reply-btn-cancel[data-v-
|
|
1252
|
+
.reply-btn-cancel[data-v-67a03ee2]:hover {
|
|
1247
1253
|
color: var(--sd-ui-text, #212121);
|
|
1248
1254
|
}
|
|
1249
|
-
.reply-btn-primary[data-v-
|
|
1255
|
+
.reply-btn-primary[data-v-67a03ee2] {
|
|
1250
1256
|
background: var(--sd-ui-action, #1355ff);
|
|
1251
1257
|
border: none;
|
|
1252
1258
|
font-size: 13px;
|
|
@@ -1258,19 +1264,19 @@ img[data-v-c95b2073] {
|
|
|
1258
1264
|
font-family: inherit;
|
|
1259
1265
|
transition: background 150ms;
|
|
1260
1266
|
}
|
|
1261
|
-
.reply-btn-primary[data-v-
|
|
1267
|
+
.reply-btn-primary[data-v-67a03ee2]:hover {
|
|
1262
1268
|
background: var(--sd-ui-action-hover, #0f44cc);
|
|
1263
1269
|
}
|
|
1264
|
-
.reply-btn-primary.sd-is-disabled[data-v-
|
|
1270
|
+
.reply-btn-primary.sd-is-disabled[data-v-67a03ee2] {
|
|
1265
1271
|
background: var(--sd-color-gray-400, #dbdbdb);
|
|
1266
1272
|
color: var(--sd-color-gray-600, #888888);
|
|
1267
1273
|
cursor: default;
|
|
1268
1274
|
pointer-events: none;
|
|
1269
1275
|
}
|
|
1270
|
-
.existing-internal-input[data-v-
|
|
1276
|
+
.existing-internal-input[data-v-67a03ee2] {
|
|
1271
1277
|
margin-bottom: 10px;
|
|
1272
1278
|
}
|
|
1273
|
-
.sd-internal-dropdown[data-v-
|
|
1279
|
+
.sd-internal-dropdown[data-v-67a03ee2] {
|
|
1274
1280
|
display: inline-block;
|
|
1275
1281
|
}
|
|
1276
1282
|
|
|
@@ -1673,11 +1679,11 @@ img[data-v-c95b2073] {
|
|
|
1673
1679
|
pointer-events: auto;
|
|
1674
1680
|
}
|
|
1675
1681
|
|
|
1676
|
-
.superdoc[data-v-
|
|
1682
|
+
.superdoc[data-v-8d8777e2] {
|
|
1677
1683
|
display: flex;
|
|
1678
1684
|
position: relative;
|
|
1679
1685
|
}
|
|
1680
|
-
.sd-visually-hidden[data-v-
|
|
1686
|
+
.sd-visually-hidden[data-v-8d8777e2] {
|
|
1681
1687
|
position: absolute;
|
|
1682
1688
|
width: 1px;
|
|
1683
1689
|
height: 1px;
|
|
@@ -1688,30 +1694,30 @@ img[data-v-c95b2073] {
|
|
|
1688
1694
|
white-space: nowrap;
|
|
1689
1695
|
border: 0;
|
|
1690
1696
|
}
|
|
1691
|
-
.right-sidebar[data-v-
|
|
1697
|
+
.right-sidebar[data-v-8d8777e2] {
|
|
1692
1698
|
min-width: 320px;
|
|
1693
1699
|
height: 100%;
|
|
1694
1700
|
}
|
|
1695
|
-
.floating-comments[data-v-
|
|
1701
|
+
.floating-comments[data-v-8d8777e2] {
|
|
1696
1702
|
min-width: 300px;
|
|
1697
1703
|
width: 300px;
|
|
1698
1704
|
height: 100%;
|
|
1699
1705
|
overflow: visible;
|
|
1700
1706
|
}
|
|
1701
|
-
.superdoc__layers[data-v-
|
|
1707
|
+
.superdoc__layers[data-v-8d8777e2] {
|
|
1702
1708
|
height: 100%;
|
|
1703
1709
|
position: relative;
|
|
1704
1710
|
box-sizing: border-box;
|
|
1705
1711
|
}
|
|
1706
|
-
.superdoc__document[data-v-
|
|
1712
|
+
.superdoc__document[data-v-8d8777e2] {
|
|
1707
1713
|
width: 100%;
|
|
1708
1714
|
position: relative;
|
|
1709
1715
|
}
|
|
1710
|
-
.superdoc__sub-document[data-v-
|
|
1716
|
+
.superdoc__sub-document[data-v-8d8777e2] {
|
|
1711
1717
|
width: 100%;
|
|
1712
1718
|
position: relative;
|
|
1713
1719
|
}
|
|
1714
|
-
.superdoc__selection-layer[data-v-
|
|
1720
|
+
.superdoc__selection-layer[data-v-8d8777e2] {
|
|
1715
1721
|
position: absolute;
|
|
1716
1722
|
min-width: 100%;
|
|
1717
1723
|
min-height: 100%;
|
|
@@ -1722,13 +1728,13 @@ img[data-v-c95b2073] {
|
|
|
1722
1728
|
/* SD-3497: PDF whiteboard overlay sits above the rendered PDF canvas but below
|
|
1723
1729
|
the PDF comment anchors (z-index 6 in PdfCommentsLayer) so anchors stay
|
|
1724
1730
|
clickable, and below the selection layer (z-index 10). */
|
|
1725
|
-
.superdoc__whiteboard-layer[data-v-
|
|
1731
|
+
.superdoc__whiteboard-layer[data-v-8d8777e2] {
|
|
1726
1732
|
z-index: 4;
|
|
1727
1733
|
}
|
|
1728
|
-
.superdoc__temp-selection[data-v-
|
|
1734
|
+
.superdoc__temp-selection[data-v-8d8777e2] {
|
|
1729
1735
|
position: absolute;
|
|
1730
1736
|
}
|
|
1731
|
-
.superdoc__right-sidebar[data-v-
|
|
1737
|
+
.superdoc__right-sidebar[data-v-8d8777e2] {
|
|
1732
1738
|
width: 320px;
|
|
1733
1739
|
min-width: 320px;
|
|
1734
1740
|
padding: 0 10px;
|
|
@@ -1736,7 +1742,7 @@ img[data-v-c95b2073] {
|
|
|
1736
1742
|
position: relative;
|
|
1737
1743
|
z-index: 2;
|
|
1738
1744
|
}
|
|
1739
|
-
.superdoc__compact-comment-popover[data-v-
|
|
1745
|
+
.superdoc__compact-comment-popover[data-v-8d8777e2] {
|
|
1740
1746
|
position: absolute;
|
|
1741
1747
|
top: 12px;
|
|
1742
1748
|
right: 12px;
|
|
@@ -1745,14 +1751,14 @@ img[data-v-c95b2073] {
|
|
|
1745
1751
|
}
|
|
1746
1752
|
|
|
1747
1753
|
/* Tools styles */
|
|
1748
|
-
.tools[data-v-
|
|
1754
|
+
.tools[data-v-8d8777e2] {
|
|
1749
1755
|
position: absolute;
|
|
1750
1756
|
z-index: 3;
|
|
1751
1757
|
display: flex;
|
|
1752
1758
|
flex-direction: column;
|
|
1753
1759
|
gap: var(--sd-ui-tools-gap, 6px);
|
|
1754
1760
|
}
|
|
1755
|
-
.tools-item[data-v-
|
|
1761
|
+
.tools-item[data-v-8d8777e2] {
|
|
1756
1762
|
display: flex;
|
|
1757
1763
|
align-items: center;
|
|
1758
1764
|
justify-content: center;
|
|
@@ -1763,10 +1769,10 @@ img[data-v-c95b2073] {
|
|
|
1763
1769
|
cursor: pointer;
|
|
1764
1770
|
position: relative;
|
|
1765
1771
|
}
|
|
1766
|
-
.tools-item i[data-v-
|
|
1772
|
+
.tools-item i[data-v-8d8777e2] {
|
|
1767
1773
|
cursor: pointer;
|
|
1768
1774
|
}
|
|
1769
|
-
.superdoc__tools-icon[data-v-
|
|
1775
|
+
.superdoc__tools-icon[data-v-8d8777e2] {
|
|
1770
1776
|
width: var(--sd-ui-tools-icon-size, 20px);
|
|
1771
1777
|
height: var(--sd-ui-tools-icon-size, 20px);
|
|
1772
1778
|
flex-shrink: 0;
|
|
@@ -1781,22 +1787,22 @@ img[data-v-c95b2073] {
|
|
|
1781
1787
|
|
|
1782
1788
|
/* 834px is iPad screen size in portrait orientation */
|
|
1783
1789
|
@media (max-width: 834px) {
|
|
1784
|
-
.superdoc .superdoc__layers[data-v-
|
|
1790
|
+
.superdoc .superdoc__layers[data-v-8d8777e2] {
|
|
1785
1791
|
margin: 0;
|
|
1786
1792
|
border: 0 !important;
|
|
1787
1793
|
box-shadow: none;
|
|
1788
1794
|
}
|
|
1789
|
-
.superdoc__sub-document[data-v-
|
|
1795
|
+
.superdoc__sub-document[data-v-8d8777e2] {
|
|
1790
1796
|
max-width: 100%;
|
|
1791
1797
|
}
|
|
1792
|
-
.superdoc__right-sidebar[data-v-
|
|
1798
|
+
.superdoc__right-sidebar[data-v-8d8777e2] {
|
|
1793
1799
|
padding: 10px;
|
|
1794
1800
|
position: relative;
|
|
1795
1801
|
}
|
|
1796
1802
|
}
|
|
1797
1803
|
|
|
1798
1804
|
/* AI Writer styles */
|
|
1799
|
-
.ai-writer-container[data-v-
|
|
1805
|
+
.ai-writer-container[data-v-8d8777e2] {
|
|
1800
1806
|
position: fixed;
|
|
1801
1807
|
z-index: 1000;
|
|
1802
1808
|
background: white;
|
|
@@ -1812,10 +1818,10 @@ img[data-v-c95b2073] {
|
|
|
1812
1818
|
transform: translateY(-50%);
|
|
1813
1819
|
z-index: 50;
|
|
1814
1820
|
} */
|
|
1815
|
-
.ai-tool > svg[data-v-
|
|
1821
|
+
.ai-tool > svg[data-v-8d8777e2] {
|
|
1816
1822
|
fill: transparent;
|
|
1817
1823
|
}
|
|
1818
|
-
.ai-tool[data-v-
|
|
1824
|
+
.ai-tool[data-v-8d8777e2]::before {
|
|
1819
1825
|
content: '';
|
|
1820
1826
|
position: absolute;
|
|
1821
1827
|
width: 20px;
|
|
@@ -1836,7 +1842,7 @@ img[data-v-c95b2073] {
|
|
|
1836
1842
|
filter: brightness(1.2);
|
|
1837
1843
|
transition: filter 0.2s ease;
|
|
1838
1844
|
}
|
|
1839
|
-
.ai-tool[data-v-
|
|
1845
|
+
.ai-tool[data-v-8d8777e2]:hover::before {
|
|
1840
1846
|
filter: brightness(1.3);
|
|
1841
1847
|
}
|
|
1842
1848
|
|