@manuscripts/body-editor 3.12.28 → 3.12.29
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/cjs/versions.js
CHANGED
package/dist/es/versions.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '3.12.
|
|
1
|
+
export const VERSION = '3.12.29';
|
|
2
2
|
export const MATHJAX_VERSION = '3.2.2';
|
package/dist/types/versions.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "3.12.
|
|
1
|
+
export declare const VERSION = "3.12.29";
|
|
2
2
|
export declare const MATHJAX_VERSION = "3.2.2";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@manuscripts/body-editor",
|
|
3
3
|
"description": "Prosemirror components for editing and viewing manuscripts",
|
|
4
|
-
"version": "3.12.
|
|
4
|
+
"version": "3.12.29",
|
|
5
5
|
"repository": "github:Atypon-OpenSource/manuscripts-body-editor",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"main": "dist/cjs",
|
|
@@ -502,12 +502,12 @@ ProseMirror .block-embed .position-menu {
|
|
|
502
502
|
|
|
503
503
|
.comment-marker:has(+ .block-contributors),
|
|
504
504
|
.comment-marker:has(+ .block-affiliations) {
|
|
505
|
-
right:
|
|
505
|
+
right: 26px;
|
|
506
506
|
}
|
|
507
507
|
|
|
508
508
|
.block-subtitles .comment-marker {
|
|
509
|
-
top: 0;
|
|
510
|
-
left:
|
|
509
|
+
top: 0 !important;
|
|
510
|
+
left: 0 !important;
|
|
511
511
|
float: right;
|
|
512
512
|
position: relative;
|
|
513
513
|
}
|
|
@@ -1207,6 +1207,7 @@ s[data-track-status='pending'][data-track-op='delete'] {
|
|
|
1207
1207
|
.block-author_notes,
|
|
1208
1208
|
.block-awards,
|
|
1209
1209
|
.block-affiliations,
|
|
1210
|
+
.block-subtitles,
|
|
1210
1211
|
.keywords {
|
|
1211
1212
|
margin: 15px 0px;
|
|
1212
1213
|
}
|
|
@@ -1527,7 +1528,6 @@ th:hover > .table-context-menu-button,
|
|
|
1527
1528
|
|
|
1528
1529
|
.ProseMirror .block-contributors .action-gutter,
|
|
1529
1530
|
.ProseMirror .block-affiliations .action-gutter {
|
|
1530
|
-
right: 20px;
|
|
1531
1531
|
pointer-events: none;
|
|
1532
1532
|
}
|
|
1533
1533
|
|
package/styles/Editor.css
CHANGED
|
@@ -586,6 +586,7 @@
|
|
|
586
586
|
align-items: center;
|
|
587
587
|
cursor: pointer;
|
|
588
588
|
margin-left: var(--body-side-margin);
|
|
589
|
+
margin-bottom: 15px;
|
|
589
590
|
}
|
|
590
591
|
|
|
591
592
|
.ProseMirror .add-subtitle:focus-visible {
|
|
@@ -653,11 +654,11 @@
|
|
|
653
654
|
grid-template-columns: 52px auto 52px;
|
|
654
655
|
}
|
|
655
656
|
.ProseMirror .block-container.block-contributors {
|
|
656
|
-
grid-template-columns: 52px auto 100px
|
|
657
|
+
grid-template-columns: 52px auto 100px 28px;
|
|
657
658
|
}
|
|
658
659
|
|
|
659
660
|
.ProseMirror .block-container.block-affiliations {
|
|
660
|
-
grid-template-columns: 52px auto 100px
|
|
661
|
+
grid-template-columns: 52px auto 100px 28px;
|
|
661
662
|
}
|
|
662
663
|
.ProseMirror .block-container.block-section,
|
|
663
664
|
.ProseMirror .block-container.block-graphical_abstract_section {
|
|
@@ -747,6 +748,7 @@
|
|
|
747
748
|
}
|
|
748
749
|
.ProseMirror .block-subtitles .block-gutter {
|
|
749
750
|
margin-top: 4px;
|
|
751
|
+
margin-bottom: 15px;
|
|
750
752
|
}
|
|
751
753
|
|
|
752
754
|
.ProseMirror
|