@blendviewer/vision-scope 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -16
- package/dist/index.js +176708 -125370
- package/dist/styles/document.css +15 -0
- package/dist/vision-scope.css +1 -1
- package/package.json +19 -6
package/dist/styles/document.css
CHANGED
|
@@ -495,6 +495,21 @@ button.pdf-toolbar-btn::-moz-focus-inner {
|
|
|
495
495
|
overflow-wrap: break-word;
|
|
496
496
|
}
|
|
497
497
|
|
|
498
|
+
.document-text-chunked {
|
|
499
|
+
display: block;
|
|
500
|
+
white-space: normal;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
.document-text-chunk {
|
|
504
|
+
white-space: pre-wrap;
|
|
505
|
+
word-wrap: break-word;
|
|
506
|
+
overflow-wrap: break-word;
|
|
507
|
+
font-family: inherit;
|
|
508
|
+
font-size: inherit;
|
|
509
|
+
line-height: inherit;
|
|
510
|
+
color: inherit;
|
|
511
|
+
}
|
|
512
|
+
|
|
498
513
|
/* Plain text + Markdown — scroll inside the document viewport (PDF uses .pdf-main-viewer) */
|
|
499
514
|
.vision-scope-document > .document-markdown,
|
|
500
515
|
.vision-scope-document > .document-text {
|