@pdftools/four-heights-pdf-web-viewer 4.3.6

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.
Files changed (367) hide show
  1. package/LICENSE.md +446 -0
  2. package/README.md +145 -0
  3. package/css/pdf-web-viewer.css +2407 -0
  4. package/doc/PdfWebViewer.pdf +0 -0
  5. package/es6/common/Checkbox.d.ts +9 -0
  6. package/es6/common/Checkbox.js +8 -0
  7. package/es6/common/Color.d.ts +23 -0
  8. package/es6/common/Color.js +118 -0
  9. package/es6/common/ColorPicker.d.ts +15 -0
  10. package/es6/common/ColorPicker.js +46 -0
  11. package/es6/common/Contextbar.d.ts +6 -0
  12. package/es6/common/Contextbar.js +19 -0
  13. package/es6/common/DragMoveHandler.d.ts +51 -0
  14. package/es6/common/DragMoveHandler.js +175 -0
  15. package/es6/common/Dropdown.d.ts +36 -0
  16. package/es6/common/Dropdown.js +76 -0
  17. package/es6/common/DropdownMenu.d.ts +9 -0
  18. package/es6/common/DropdownMenu.js +10 -0
  19. package/es6/common/DropdownSeparator.d.ts +3 -0
  20. package/es6/common/DropdownSeparator.js +6 -0
  21. package/es6/common/Icon.d.ts +13 -0
  22. package/es6/common/Icon.js +8 -0
  23. package/es6/common/Loader.d.ts +3 -0
  24. package/es6/common/Loader.js +6 -0
  25. package/es6/common/RangeSlider.d.ts +17 -0
  26. package/es6/common/RangeSlider.js +42 -0
  27. package/es6/common/StrokeStylePicker.d.ts +11 -0
  28. package/es6/common/StrokeStylePicker.js +20 -0
  29. package/es6/common/StrokeWidthPicker.d.ts +11 -0
  30. package/es6/common/StrokeWidthPicker.js +20 -0
  31. package/es6/common/Toolbar.d.ts +10 -0
  32. package/es6/common/Toolbar.js +6 -0
  33. package/es6/common/ToolbarButton.d.ts +14 -0
  34. package/es6/common/ToolbarButton.js +21 -0
  35. package/es6/common/ToolbarFileButton.d.ts +15 -0
  36. package/es6/common/ToolbarFileButton.js +27 -0
  37. package/es6/common/ToolbarItemGroup.d.ts +8 -0
  38. package/es6/common/ToolbarItemGroup.js +12 -0
  39. package/es6/common/ToolbarSeparator.d.ts +3 -0
  40. package/es6/common/ToolbarSeparator.js +6 -0
  41. package/es6/common/Tools.d.ts +10 -0
  42. package/es6/common/Tools.js +89 -0
  43. package/es6/common/TooltipManager.d.ts +12 -0
  44. package/es6/common/TooltipManager.js +54 -0
  45. package/es6/common/TranslationManager.d.ts +11 -0
  46. package/es6/common/TranslationManager.js +61 -0
  47. package/es6/common/classNames.d.ts +2 -0
  48. package/es6/common/classNames.js +18 -0
  49. package/es6/common/formatDate.d.ts +1 -0
  50. package/es6/common/formatDate.js +1 -0
  51. package/es6/common/icons.d.ts +13 -0
  52. package/es6/common/icons.js +412 -0
  53. package/es6/common/utils.d.ts +2 -0
  54. package/es6/common/utils.js +19 -0
  55. package/es6/custom/history.d.ts +2 -0
  56. package/es6/custom/history.js +59 -0
  57. package/es6/index.d.ts +5 -0
  58. package/es6/index.js +5 -0
  59. package/es6/lib/hyperapp/index.d.ts +108 -0
  60. package/es6/lib/hyperapp/index.js +327 -0
  61. package/es6/modules/CanvasLayer.d.ts +32 -0
  62. package/es6/modules/CanvasLayer.js +83 -0
  63. package/es6/modules/CanvasModule.d.ts +59 -0
  64. package/es6/modules/CanvasModule.js +98 -0
  65. package/es6/modules/eraser/EraserLayer.d.ts +13 -0
  66. package/es6/modules/eraser/EraserLayer.js +141 -0
  67. package/es6/modules/eraser/EraserModule.d.ts +19 -0
  68. package/es6/modules/eraser/EraserModule.js +34 -0
  69. package/es6/modules/eraser/EraserToolbar.d.ts +10 -0
  70. package/es6/modules/eraser/EraserToolbar.js +30 -0
  71. package/es6/modules/form-fields/CheckBoxWidget.d.ts +9 -0
  72. package/es6/modules/form-fields/CheckBoxWidget.js +45 -0
  73. package/es6/modules/form-fields/ComboBoxWidget.d.ts +22 -0
  74. package/es6/modules/form-fields/ComboBoxWidget.js +152 -0
  75. package/es6/modules/form-fields/EditFormFieldLayer.d.ts +17 -0
  76. package/es6/modules/form-fields/EditFormFieldLayer.js +238 -0
  77. package/es6/modules/form-fields/FormFieldModule.d.ts +15 -0
  78. package/es6/modules/form-fields/FormFieldModule.js +27 -0
  79. package/es6/modules/form-fields/ListBoxWidget.d.ts +9 -0
  80. package/es6/modules/form-fields/ListBoxWidget.js +73 -0
  81. package/es6/modules/form-fields/RadioButtonWidget.d.ts +9 -0
  82. package/es6/modules/form-fields/RadioButtonWidget.js +45 -0
  83. package/es6/modules/form-fields/SelectListWidget.d.ts +9 -0
  84. package/es6/modules/form-fields/SelectListWidget.js +45 -0
  85. package/es6/modules/form-fields/TextBoxWidget.d.ts +9 -0
  86. package/es6/modules/form-fields/TextBoxWidget.js +53 -0
  87. package/es6/modules/form-fields/WidgetBase.d.ts +23 -0
  88. package/es6/modules/form-fields/WidgetBase.js +29 -0
  89. package/es6/modules/freetext-annotation/AddFreetextAnnotationLayer.d.ts +19 -0
  90. package/es6/modules/freetext-annotation/AddFreetextAnnotationLayer.js +181 -0
  91. package/es6/modules/freetext-annotation/AddFreetextAnnotationToolbar.d.ts +21 -0
  92. package/es6/modules/freetext-annotation/AddFreetextAnnotationToolbar.js +37 -0
  93. package/es6/modules/freetext-annotation/EditFreetextAnnotationLayer.d.ts +20 -0
  94. package/es6/modules/freetext-annotation/EditFreetextAnnotationLayer.js +211 -0
  95. package/es6/modules/freetext-annotation/EditFreetextAnnotationToolbar.d.ts +50 -0
  96. package/es6/modules/freetext-annotation/EditFreetextAnnotationToolbar.js +118 -0
  97. package/es6/modules/freetext-annotation/FreetextAnnotationModule.d.ts +28 -0
  98. package/es6/modules/freetext-annotation/FreetextAnnotationModule.js +58 -0
  99. package/es6/modules/freetext-annotation/RichTextEditor.d.ts +31 -0
  100. package/es6/modules/freetext-annotation/RichTextEditor.js +223 -0
  101. package/es6/modules/highlight-annotation/AddHighlightAnnotationLayer.d.ts +31 -0
  102. package/es6/modules/highlight-annotation/AddHighlightAnnotationLayer.js +289 -0
  103. package/es6/modules/highlight-annotation/AddHighlightAnnotationToolbar.d.ts +20 -0
  104. package/es6/modules/highlight-annotation/AddHighlightAnnotationToolbar.js +52 -0
  105. package/es6/modules/highlight-annotation/EditHighlightAnnotationLayer.d.ts +15 -0
  106. package/es6/modules/highlight-annotation/EditHighlightAnnotationLayer.js +104 -0
  107. package/es6/modules/highlight-annotation/EditHighlightAnnotationToolbar.d.ts +15 -0
  108. package/es6/modules/highlight-annotation/EditHighlightAnnotationToolbar.js +28 -0
  109. package/es6/modules/highlight-annotation/HighlightAnnotationModule.d.ts +27 -0
  110. package/es6/modules/highlight-annotation/HighlightAnnotationModule.js +54 -0
  111. package/es6/modules/image-annotations/ImageAnnotationModule.d.ts +23 -0
  112. package/es6/modules/image-annotations/ImageAnnotationModule.js +169 -0
  113. package/es6/modules/index.d.ts +13 -0
  114. package/es6/modules/index.js +13 -0
  115. package/es6/modules/ink-annotation/AddInkAnnotationLayer.d.ts +40 -0
  116. package/es6/modules/ink-annotation/AddInkAnnotationLayer.js +503 -0
  117. package/es6/modules/ink-annotation/AddInkAnnotationToolbar.d.ts +30 -0
  118. package/es6/modules/ink-annotation/AddInkAnnotationToolbar.js +53 -0
  119. package/es6/modules/ink-annotation/EditInkAnnotationLayer.d.ts +20 -0
  120. package/es6/modules/ink-annotation/EditInkAnnotationLayer.js +137 -0
  121. package/es6/modules/ink-annotation/EditInkAnnotationToolbar.d.ts +25 -0
  122. package/es6/modules/ink-annotation/EditInkAnnotationToolbar.js +47 -0
  123. package/es6/modules/ink-annotation/InkAnnotationModule.d.ts +27 -0
  124. package/es6/modules/ink-annotation/InkAnnotationModule.js +50 -0
  125. package/es6/modules/popup/Popup.d.ts +64 -0
  126. package/es6/modules/popup/Popup.js +360 -0
  127. package/es6/modules/popup/PopupLayer.d.ts +31 -0
  128. package/es6/modules/popup/PopupLayer.js +509 -0
  129. package/es6/modules/popup/PopupModule.d.ts +16 -0
  130. package/es6/modules/popup/PopupModule.js +25 -0
  131. package/es6/modules/print-service/PrintServiceDialog.d.ts +30 -0
  132. package/es6/modules/print-service/PrintServiceDialog.js +134 -0
  133. package/es6/modules/print-service/PrintServiceLayer.d.ts +24 -0
  134. package/es6/modules/print-service/PrintServiceLayer.js +310 -0
  135. package/es6/modules/print-service/PrintServiceModule.d.ts +18 -0
  136. package/es6/modules/print-service/PrintServiceModule.js +30 -0
  137. package/es6/modules/shape-annotations/AddShapeAnnotationLayer.d.ts +24 -0
  138. package/es6/modules/shape-annotations/AddShapeAnnotationLayer.js +210 -0
  139. package/es6/modules/shape-annotations/AddShapeAnnotationToolbar.d.ts +26 -0
  140. package/es6/modules/shape-annotations/AddShapeAnnotationToolbar.js +69 -0
  141. package/es6/modules/shape-annotations/EditShapeAnnotationLayer.d.ts +19 -0
  142. package/es6/modules/shape-annotations/EditShapeAnnotationLayer.js +148 -0
  143. package/es6/modules/shape-annotations/EditShapeAnnotationToolbar.d.ts +24 -0
  144. package/es6/modules/shape-annotations/EditShapeAnnotationToolbar.js +57 -0
  145. package/es6/modules/shape-annotations/ShapeAnnotationModule.d.ts +28 -0
  146. package/es6/modules/shape-annotations/ShapeAnnotationModule.js +50 -0
  147. package/es6/modules/stamp-annotation/AddStampAnnotationLayer.d.ts +19 -0
  148. package/es6/modules/stamp-annotation/AddStampAnnotationLayer.js +257 -0
  149. package/es6/modules/stamp-annotation/AddStampAnnotationToolbar.d.ts +17 -0
  150. package/es6/modules/stamp-annotation/AddStampAnnotationToolbar.js +68 -0
  151. package/es6/modules/stamp-annotation/StampAnnotationModule.d.ts +20 -0
  152. package/es6/modules/stamp-annotation/StampAnnotationModule.js +35 -0
  153. package/es6/modules/text-annotation/AddTextAnnotationLayer.d.ts +14 -0
  154. package/es6/modules/text-annotation/AddTextAnnotationLayer.js +132 -0
  155. package/es6/modules/text-annotation/AddTextAnnotationToolbar.d.ts +15 -0
  156. package/es6/modules/text-annotation/AddTextAnnotationToolbar.js +27 -0
  157. package/es6/modules/text-annotation/TextAnnotationModule.d.ts +19 -0
  158. package/es6/modules/text-annotation/TextAnnotationModule.js +34 -0
  159. package/es6/pdf-viewer-api/ImageContainer.d.ts +10 -0
  160. package/es6/pdf-viewer-api/ImageContainer.js +43 -0
  161. package/es6/pdf-viewer-api/PdfViewerApi.d.ts +463 -0
  162. package/es6/pdf-viewer-api/PdfViewerApi.js +732 -0
  163. package/es6/pdf-viewer-api/PdfViewingWrapper.d.ts +178 -0
  164. package/es6/pdf-viewer-api/PdfViewingWrapper.js +2037 -0
  165. package/es6/pdf-viewer-api/annotationDefaultBehaviors.d.ts +3 -0
  166. package/es6/pdf-viewer-api/annotationDefaultBehaviors.js +30 -0
  167. package/es6/pdf-viewer-api/enums.d.ts +100 -0
  168. package/es6/pdf-viewer-api/enums.js +113 -0
  169. package/es6/pdf-viewer-api/index.d.ts +3 -0
  170. package/es6/pdf-viewer-api/index.js +3 -0
  171. package/es6/pdf-viewer-api/types.d.ts +284 -0
  172. package/es6/pdf-viewer-api/types.js +6 -0
  173. package/es6/pdf-viewer-canvas/CanvasEvents.d.ts +76 -0
  174. package/es6/pdf-viewer-canvas/CanvasEvents.js +345 -0
  175. package/es6/pdf-viewer-canvas/PdfViewerCanvas.d.ts +175 -0
  176. package/es6/pdf-viewer-canvas/PdfViewerCanvas.js +1226 -0
  177. package/es6/pdf-viewer-canvas/state/annotations.d.ts +36 -0
  178. package/es6/pdf-viewer-canvas/state/annotations.js +157 -0
  179. package/es6/pdf-viewer-canvas/state/appState.d.ts +10 -0
  180. package/es6/pdf-viewer-canvas/state/appState.js +60 -0
  181. package/es6/pdf-viewer-canvas/state/canvas.d.ts +31 -0
  182. package/es6/pdf-viewer-canvas/state/canvas.js +41 -0
  183. package/es6/pdf-viewer-canvas/state/document.d.ts +50 -0
  184. package/es6/pdf-viewer-canvas/state/document.js +99 -0
  185. package/es6/pdf-viewer-canvas/state/pointer.d.ts +31 -0
  186. package/es6/pdf-viewer-canvas/state/pointer.js +31 -0
  187. package/es6/pdf-viewer-canvas/state/scroll.d.ts +22 -0
  188. package/es6/pdf-viewer-canvas/state/scroll.js +25 -0
  189. package/es6/pdf-viewer-canvas/state/search.d.ts +36 -0
  190. package/es6/pdf-viewer-canvas/state/search.js +27 -0
  191. package/es6/pdf-viewer-canvas/state/store.d.ts +39 -0
  192. package/es6/pdf-viewer-canvas/state/store.js +52 -0
  193. package/es6/pdf-viewer-canvas/state/viewer.d.ts +91 -0
  194. package/es6/pdf-viewer-canvas/state/viewer.js +175 -0
  195. package/es6/pdf-viewer-canvas/view-layers/AnnotationSelectionLayer.d.ts +28 -0
  196. package/es6/pdf-viewer-canvas/view-layers/AnnotationSelectionLayer.js +452 -0
  197. package/es6/pdf-viewer-canvas/view-layers/BusyStateLayer.d.ts +9 -0
  198. package/es6/pdf-viewer-canvas/view-layers/BusyStateLayer.js +25 -0
  199. package/es6/pdf-viewer-canvas/view-layers/PdfDocumentLayer.d.ts +10 -0
  200. package/es6/pdf-viewer-canvas/view-layers/PdfDocumentLayer.js +149 -0
  201. package/es6/pdf-viewer-canvas/view-layers/ScrollLayer.d.ts +48 -0
  202. package/es6/pdf-viewer-canvas/view-layers/ScrollLayer.js +308 -0
  203. package/es6/pdf-viewer-canvas/view-layers/TextSelectionLayer.d.ts +19 -0
  204. package/es6/pdf-viewer-canvas/view-layers/TextSelectionLayer.js +289 -0
  205. package/es6/pdf-viewer-canvas/view-layers/ViewLayerBase.d.ts +31 -0
  206. package/es6/pdf-viewer-canvas/view-layers/ViewLayerBase.js +106 -0
  207. package/es6/pdf-viewer-canvas/view-layers/canvasShapes.d.ts +11 -0
  208. package/es6/pdf-viewer-canvas/view-layers/canvasShapes.js +149 -0
  209. package/es6/pdf-viewer-canvas/view-layers/canvasUtlis.d.ts +3 -0
  210. package/es6/pdf-viewer-canvas/view-layers/canvasUtlis.js +10 -0
  211. package/es6/pdf-viewer-canvas/view-layers/views/AnnotationBorder.d.ts +52 -0
  212. package/es6/pdf-viewer-canvas/view-layers/views/AnnotationBorder.js +377 -0
  213. package/es6/pdf-viewer-canvas/view-layers/views/AnnotationContextBar.d.ts +47 -0
  214. package/es6/pdf-viewer-canvas/view-layers/views/AnnotationContextBar.js +102 -0
  215. package/es6/pdf-viewer-canvas/view-layers/views/TextSelectionContextBar.d.ts +14 -0
  216. package/es6/pdf-viewer-canvas/view-layers/views/TextSelectionContextBar.js +36 -0
  217. package/es6/pdf-viewing/PdfViewing.d.ts +4865 -0
  218. package/es6/pdf-viewing/PdfViewing.js +9611 -0
  219. package/es6/pdf-web-viewer/PdfWebViewer.d.ts +372 -0
  220. package/es6/pdf-web-viewer/PdfWebViewer.js +1386 -0
  221. package/es6/pdf-web-viewer/UserSettings.d.ts +8 -0
  222. package/es6/pdf-web-viewer/UserSettings.js +40 -0
  223. package/es6/pdf-web-viewer/WebViewerOptions.d.ts +387 -0
  224. package/es6/pdf-web-viewer/WebViewerOptions.js +582 -0
  225. package/es6/pdf-web-viewer/state/index.d.ts +80 -0
  226. package/es6/pdf-web-viewer/state/index.js +98 -0
  227. package/es6/pdf-web-viewer/state/layout.d.ts +24 -0
  228. package/es6/pdf-web-viewer/state/layout.js +21 -0
  229. package/es6/pdf-web-viewer/state/mobile.d.ts +16 -0
  230. package/es6/pdf-web-viewer/state/mobile.js +11 -0
  231. package/es6/pdf-web-viewer/state/navigationPanel.d.ts +61 -0
  232. package/es6/pdf-web-viewer/state/navigationPanel.js +84 -0
  233. package/es6/pdf-web-viewer/state/passwordForm.d.ts +18 -0
  234. package/es6/pdf-web-viewer/state/passwordForm.js +21 -0
  235. package/es6/pdf-web-viewer/state/pdfDocument.d.ts +31 -0
  236. package/es6/pdf-web-viewer/state/pdfDocument.js +41 -0
  237. package/es6/pdf-web-viewer/state/search.d.ts +29 -0
  238. package/es6/pdf-web-viewer/state/search.js +23 -0
  239. package/es6/pdf-web-viewer/views/App.d.ts +4 -0
  240. package/es6/pdf-web-viewer/views/App.js +19 -0
  241. package/es6/pdf-web-viewer/views/CustomButtons.d.ts +9 -0
  242. package/es6/pdf-web-viewer/views/CustomButtons.js +18 -0
  243. package/es6/pdf-web-viewer/views/DropZone.d.ts +9 -0
  244. package/es6/pdf-web-viewer/views/DropZone.js +53 -0
  245. package/es6/pdf-web-viewer/views/Layout.d.ts +4 -0
  246. package/es6/pdf-web-viewer/views/Layout.js +22 -0
  247. package/es6/pdf-web-viewer/views/annotationbar/Annotationbar.d.ts +4 -0
  248. package/es6/pdf-web-viewer/views/annotationbar/Annotationbar.js +21 -0
  249. package/es6/pdf-web-viewer/views/appbar/AddonsToolbar.d.ts +4 -0
  250. package/es6/pdf-web-viewer/views/appbar/AddonsToolbar.js +35 -0
  251. package/es6/pdf-web-viewer/views/appbar/AnnotationsMenu.d.ts +4 -0
  252. package/es6/pdf-web-viewer/views/appbar/AnnotationsMenu.js +22 -0
  253. package/es6/pdf-web-viewer/views/appbar/AppBar.d.ts +4 -0
  254. package/es6/pdf-web-viewer/views/appbar/AppBar.js +26 -0
  255. package/es6/pdf-web-viewer/views/appbar/DocumentBar.d.ts +4 -0
  256. package/es6/pdf-web-viewer/views/appbar/DocumentBar.js +36 -0
  257. package/es6/pdf-web-viewer/views/appbar/Menu.d.ts +4 -0
  258. package/es6/pdf-web-viewer/views/appbar/Menu.js +80 -0
  259. package/es6/pdf-web-viewer/views/appbar/NavigationBar.d.ts +4 -0
  260. package/es6/pdf-web-viewer/views/appbar/NavigationBar.js +74 -0
  261. package/es6/pdf-web-viewer/views/appbar/SearchBar.d.ts +4 -0
  262. package/es6/pdf-web-viewer/views/appbar/SearchBar.js +83 -0
  263. package/es6/pdf-web-viewer/views/appbar/SearchOptions.d.ts +10 -0
  264. package/es6/pdf-web-viewer/views/appbar/SearchOptions.js +55 -0
  265. package/es6/pdf-web-viewer/views/appbar/ViewBar.d.ts +4 -0
  266. package/es6/pdf-web-viewer/views/appbar/ViewBar.js +52 -0
  267. package/es6/pdf-web-viewer/views/appbar/ZoomBar.d.ts +4 -0
  268. package/es6/pdf-web-viewer/views/appbar/ZoomBar.js +18 -0
  269. package/es6/pdf-web-viewer/views/modal/ApplicationError.d.ts +4 -0
  270. package/es6/pdf-web-viewer/views/modal/ApplicationError.js +25 -0
  271. package/es6/pdf-web-viewer/views/modal/LoadApplication.d.ts +3 -0
  272. package/es6/pdf-web-viewer/views/modal/LoadApplication.js +6 -0
  273. package/es6/pdf-web-viewer/views/modal/LoadFile.d.ts +3 -0
  274. package/es6/pdf-web-viewer/views/modal/LoadFile.js +10 -0
  275. package/es6/pdf-web-viewer/views/modal/Modal.d.ts +4 -0
  276. package/es6/pdf-web-viewer/views/modal/Modal.js +39 -0
  277. package/es6/pdf-web-viewer/views/modal/OpenFile.d.ts +4 -0
  278. package/es6/pdf-web-viewer/views/modal/OpenFile.js +30 -0
  279. package/es6/pdf-web-viewer/views/modal/OpenFileError.d.ts +4 -0
  280. package/es6/pdf-web-viewer/views/modal/OpenFileError.js +13 -0
  281. package/es6/pdf-web-viewer/views/modal/PasswordForm.d.ts +4 -0
  282. package/es6/pdf-web-viewer/views/modal/PasswordForm.js +54 -0
  283. package/es6/pdf-web-viewer/views/modal/SaveFile.d.ts +4 -0
  284. package/es6/pdf-web-viewer/views/modal/SaveFile.js +10 -0
  285. package/es6/pdf-web-viewer/views/modal/UnsavedChanges.d.ts +4 -0
  286. package/es6/pdf-web-viewer/views/modal/UnsavedChanges.js +32 -0
  287. package/es6/pdf-web-viewer/views/navigation/AnnotationList.d.ts +8 -0
  288. package/es6/pdf-web-viewer/views/navigation/AnnotationList.js +26 -0
  289. package/es6/pdf-web-viewer/views/navigation/AnnotationListItem.d.ts +8 -0
  290. package/es6/pdf-web-viewer/views/navigation/AnnotationListItem.js +158 -0
  291. package/es6/pdf-web-viewer/views/navigation/AnnotationNavigation.d.ts +4 -0
  292. package/es6/pdf-web-viewer/views/navigation/AnnotationNavigation.js +11 -0
  293. package/es6/pdf-web-viewer/views/navigation/NavigationPanel.d.ts +4 -0
  294. package/es6/pdf-web-viewer/views/navigation/NavigationPanel.js +50 -0
  295. package/es6/pdf-web-viewer/views/navigation/OutlineList.d.ts +12 -0
  296. package/es6/pdf-web-viewer/views/navigation/OutlineList.js +19 -0
  297. package/es6/pdf-web-viewer/views/navigation/OutlineNavigation.d.ts +4 -0
  298. package/es6/pdf-web-viewer/views/navigation/OutlineNavigation.js +10 -0
  299. package/es6/pdf-web-viewer/views/navigation/ThumbnailNavigation.d.ts +16 -0
  300. package/es6/pdf-web-viewer/views/navigation/ThumbnailNavigation.js +32 -0
  301. package/package.json +24 -0
  302. package/pdfwebviewer/PdfViewing.data +0 -0
  303. package/pdfwebviewer/PdfViewing_Main.js +1 -0
  304. package/pdfwebviewer/PdfViewing_Main.wasm +0 -0
  305. package/pdfwebviewer/PdfViewing_Worker.js +1 -0
  306. package/pdfwebviewer/PdfViewing_Worker.wasm +0 -0
  307. package/pdfwebviewer/pdf-web-viewer.css +2407 -0
  308. package/pdfwebviewer/pdf-web-viewer.development.js +25955 -0
  309. package/pdfwebviewer/pdf-web-viewer.min.js +1 -0
  310. package/pdfwebviewer/translations.de.json +151 -0
  311. package/pdfwebviewer/translations.en.json +151 -0
  312. package/pdfwebviewer/translations.fr.json +151 -0
  313. package/pdfwebviewer/translations.it.json +151 -0
  314. package/scss/common/_breakpoints.scss +44 -0
  315. package/scss/common/_buttons.scss +42 -0
  316. package/scss/common/_colorpicker.scss +89 -0
  317. package/scss/common/_common.scss +21 -0
  318. package/scss/common/_contextbar.scss +44 -0
  319. package/scss/common/_dropdown.scss +176 -0
  320. package/scss/common/_icon.scss +9 -0
  321. package/scss/common/_index.scss +19 -0
  322. package/scss/common/_loader.scss +30 -0
  323. package/scss/common/_rangeslider.scss +24 -0
  324. package/scss/common/_scrollbars.scss +64 -0
  325. package/scss/common/_stroke-style-picker.scss +64 -0
  326. package/scss/common/_stroke-width-picker.scss +23 -0
  327. package/scss/common/_toolbar.scss +117 -0
  328. package/scss/common/_tooltip.scss +39 -0
  329. package/scss/modules/_eraser.scss +28 -0
  330. package/scss/modules/_forms.scss +56 -0
  331. package/scss/modules/_highlightannotation.scss +12 -0
  332. package/scss/modules/_index.scss +5 -0
  333. package/scss/modules/_inkannotation.scss +41 -0
  334. package/scss/modules/_stampannotation.scss +19 -0
  335. package/scss/pdf-viewer-canvas/_annotationborder.scss +107 -0
  336. package/scss/pdf-viewer-canvas/_busy-loader.scss +53 -0
  337. package/scss/pdf-viewer-canvas/_freetexteditor.scss +28 -0
  338. package/scss/pdf-viewer-canvas/_index.scss +7 -0
  339. package/scss/pdf-viewer-canvas/_layout.scss +52 -0
  340. package/scss/pdf-viewer-canvas/_popup.scss +217 -0
  341. package/scss/pdf-viewer-canvas/_printservice.scss +171 -0
  342. package/scss/pdf-viewer-canvas/_textselection.scss +17 -0
  343. package/scss/pdf-web-viewer/_annotationbar.scss +47 -0
  344. package/scss/pdf-web-viewer/_index.scss +8 -0
  345. package/scss/pdf-web-viewer/_layout.scss +63 -0
  346. package/scss/pdf-web-viewer/_modal.scss +186 -0
  347. package/scss/pdf-web-viewer/_navigationpanel.scss +398 -0
  348. package/scss/pdf-web-viewer/_searchbar.scss +47 -0
  349. package/scss/pdf-web-viewer/_toolbar.scss +134 -0
  350. package/scss/pdf-web-viewer/_viewer.scss +54 -0
  351. package/scss/pdf-web-viewer.scss +1 -0
  352. package/scss/themes/default/_light.scss +32 -0
  353. package/scss/themes/default/_mixins.scss +129 -0
  354. package/scss/themes/default/_theme.scss +161 -0
  355. package/scss/themes/pdf-web-viewer.scss +1 -0
  356. package/umd/pdf-web-viewer.development.js +25955 -0
  357. package/umd/pdf-web-viewer.development.js.map +1 -0
  358. package/umd/pdf-web-viewer.min.js +1 -0
  359. package/wasm/PdfViewing.data +0 -0
  360. package/wasm/PdfViewing_Main.js +1 -0
  361. package/wasm/PdfViewing_Main.wasm +0 -0
  362. package/wasm/PdfViewing_Worker.js +1 -0
  363. package/wasm/PdfViewing_Worker.wasm +0 -0
  364. package/wasm/translations.de.json +151 -0
  365. package/wasm/translations.en.json +151 -0
  366. package/wasm/translations.fr.json +151 -0
  367. package/wasm/translations.it.json +151 -0
@@ -0,0 +1,2407 @@
1
+ /***********************
2
+ * colors
3
+ ***********************/
4
+ .pwv-WebViewer {
5
+ --pwv-text-color: #282724;
6
+ --pwv-text-muted-color: #b5b4b0;
7
+ --pwv-text-contrast-color: #ffffff;
8
+ --pwv-selection-color: #006395;
9
+ --pwv-ui-color-100: #f8f7f7;
10
+ --pwv-ui-color-200: #f0f0ef;
11
+ --pwv-ui-color-300: #dad9d8;
12
+ --pwv-ui-color-400: #b5b4b0;
13
+ --pwv-ui-color-500: #676765;
14
+ --pwv-ui-color-600: #282724;
15
+ --pwv-ui-color-700: #000000;
16
+ --pwv-brand-color-100: #ecf6fe;
17
+ --pwv-brand-color-200: #d8edfd;
18
+ --pwv-brand-color-300: #b6ddfb;
19
+ --pwv-brand-color-400: #80c8ff;
20
+ --pwv-brand-color-500: #0d8ff2;
21
+ --pwv-brand-color-600: #0b81da;
22
+ --pwv-brand-color-700: #0f558a;
23
+ --pwv-drop-shadow-1: 0 0 4px rgba(0, 0, 0, 0.1);
24
+ --pwv-drop-shadow-2: 0 0 8px rgba(0, 0, 0, 0.2);
25
+ --pwv-drop-shadow-3: 0 3px 8px rgba(0, 0, 0, 0.3);
26
+ }
27
+
28
+ /***********************
29
+ * viewer
30
+ ***********************/
31
+ /***********************
32
+ * dialog
33
+ ***********************/
34
+ /***********************
35
+ * button
36
+ ***********************/
37
+ /***********************
38
+ * popup
39
+ ***********************/
40
+ /***********************
41
+ * toolbar
42
+ ***********************/
43
+ /***********************
44
+ * dropdown
45
+ ***********************/
46
+ /***********************
47
+ * scrollbar
48
+ ***********************/
49
+ /***********************
50
+ * acroForms
51
+ ***********************/
52
+ /***********************
53
+ * loader
54
+ ***********************/
55
+ /***********************
56
+ * mixins
57
+ ***********************/
58
+ .pwv-disabled {
59
+ opacity: 0.4;
60
+ }
61
+
62
+ .pwv-WebViewer--sm .pwv-SmHidden {
63
+ display: none !important;
64
+ }
65
+
66
+ .pwv-WebViewer--md .pwv-MdHidden {
67
+ display: none !important;
68
+ }
69
+
70
+ .pwv-WebViewer--lg .pwv-LgHidden {
71
+ display: none !important;
72
+ }
73
+
74
+ .pwv-Toolbar {
75
+ display: flex;
76
+ position: relative;
77
+ min-height: 42px;
78
+ background-color: var(--pwv-ui-color-100);
79
+ color: var(--pwv-text-color);
80
+ }
81
+ .pwv-Toolbar--wrap {
82
+ flex-wrap: wrap;
83
+ }
84
+ .pwv-Toolbar--paddingRight {
85
+ padding-right: 47px;
86
+ }
87
+ .pwv-Toolbar--center {
88
+ justify-content: center;
89
+ }
90
+ .pwv-ToolbarItemGroup {
91
+ display: flex;
92
+ }
93
+ .pwv-ToolbarItemGroup--pushLeft {
94
+ margin-left: auto;
95
+ }
96
+ .pwv-ToolbarItemGroup--pushRight {
97
+ position: absolute;
98
+ right: 0;
99
+ top: 0;
100
+ z-index: 2;
101
+ }
102
+ .pwv-ToolbarItem {
103
+ position: relative;
104
+ box-sizing: border-box;
105
+ display: flex;
106
+ align-items: center;
107
+ justify-content: center;
108
+ padding: 0;
109
+ border: solid 1px transparent;
110
+ border-radius: 0.5rem;
111
+ height: 42px;
112
+ min-width: 42px;
113
+ margin: 4px;
114
+ background-color: var(--pwv-ui-color-100);
115
+ color: var(--pwv-text-color);
116
+ cursor: default;
117
+ }
118
+ .pwv-ToolbarButton {
119
+ position: relative;
120
+ box-sizing: border-box;
121
+ display: flex;
122
+ align-items: center;
123
+ justify-content: center;
124
+ padding: 0;
125
+ border: solid 1px transparent;
126
+ border-radius: 0.5rem;
127
+ height: 42px;
128
+ min-width: 42px;
129
+ margin: 4px;
130
+ background-color: var(--pwv-ui-color-100);
131
+ color: var(--pwv-text-color);
132
+ cursor: default;
133
+ }
134
+ .pwv-ToolbarButton:focus {
135
+ outline: none;
136
+ }
137
+ .pwv-ToolbarButton:not(:disabled):hover {
138
+ color: var(--pwv-text-color);
139
+ background-color: var(--pwv-ui-color-200);
140
+ border: solid 1px transparent;
141
+ }
142
+ .pwv-ToolbarButton:not(:disabled):focus {
143
+ color: var(--pwv-text-color);
144
+ background-color: var(--pwv-ui-color-200);
145
+ border: solid 1px transparent;
146
+ }
147
+ .pwv-ToolbarButton:not(:disabled):active {
148
+ color: var(--pwv-brand-color-700);
149
+ background-color: var(--pwv-ui-color-200);
150
+ border: solid 1px transparent;
151
+ }
152
+ .pwv-ToolbarButton:not(:disabled):active svg,
153
+ .pwv-ToolbarButton:not(:disabled):active img {
154
+ transform: scale(0.94);
155
+ }
156
+ .pwv-ToolbarButton--selected {
157
+ color: var(--pwv-brand-color-500) !important;
158
+ background-color: var(--pwv-ui-color-200) !important;
159
+ border: solid 1px transparent !important;
160
+ }
161
+ .pwv-ToolbarButton--disabled {
162
+ color: var(--pwv-text-muted-color) !important;
163
+ background-color: var(--pwv-ui-color-100);
164
+ border: solid 1px transparent;
165
+ cursor: default;
166
+ }
167
+ .pwv-ToolbarButton .pwv-icon {
168
+ display: block;
169
+ height: 1rem;
170
+ }
171
+ .pwv-ToolbarButton .pwv-icon svg {
172
+ height: 1rem;
173
+ }
174
+ .pwv-ToolbarButton__Text {
175
+ display: inline-block;
176
+ padding: 0 0.5rem;
177
+ }
178
+ .pwv-Toolbar .pwv-CustomButtons {
179
+ display: flex;
180
+ }
181
+ .pwv-Toolbar .pwv-DropdownPanel {
182
+ z-index: 5;
183
+ top: 48px;
184
+ }
185
+ .pwv-Toolbar input {
186
+ border: none;
187
+ font-size: 1em;
188
+ height: 28px;
189
+ box-sizing: border-box;
190
+ padding: 3px 6px;
191
+ }
192
+ .pwv-Toolbar .pwv-ToolbarSeparator {
193
+ display: flex;
194
+ justify-content: center;
195
+ align-items: center;
196
+ width: 21px;
197
+ }
198
+ .pwv-WebViewer--sm .pwv-Toolbar .pwv-ToolbarSeparator, .pwv-WebViewer--md .pwv-Toolbar .pwv-ToolbarSeparator {
199
+ width: 10.5px;
200
+ }
201
+ .pwv-WebViewer--sm .pwv-Toolbar .pwv-ToolbarSeparator {
202
+ display: none;
203
+ }
204
+ .pwv-Toolbar .pwv-ToolbarSeparator span {
205
+ display: block;
206
+ background-color: var(--pwv-text-color);
207
+ opacity: 0.2;
208
+ width: 1px;
209
+ height: 50%;
210
+ box-sizing: border-box;
211
+ }
212
+
213
+ .pwv-btn {
214
+ display: flex;
215
+ align-items: center;
216
+ justify-content: center;
217
+ height: 42px;
218
+ padding: 0 1rem;
219
+ margin: 0.5rem;
220
+ color: var(--pwv-text-contrast-color);
221
+ background-color: transparent;
222
+ border: 1px solid var(--pwv-brand-color-400);
223
+ border-radius: 8px;
224
+ transition: all 0.2s;
225
+ }
226
+ .pwv-WebViewer--sm .pwv-btn {
227
+ margin: 0.5rem;
228
+ }
229
+ .pwv-btn:not(:disabled):hover {
230
+ color: var(--pwv-text-contrast-color);
231
+ background-color: transparent;
232
+ border: 1px solid var(--pwv-brand-color-100);
233
+ }
234
+ .pwv-btn:not(:disabled):focus {
235
+ color: var(--pwv-text-contrast-color);
236
+ background-color: transparent;
237
+ border: 1px solid var(--pwv-brand-color-100);
238
+ }
239
+ .pwv-btn:not(:disabled):active {
240
+ transform: scale(0.98);
241
+ color: var(--pwv-text-contrast-color);
242
+ background-color: transparent;
243
+ border: 1px solid var(--pwv-brand-color-100);
244
+ }
245
+ .pwv-btn:disabled {
246
+ color: var(--pwv-text-contrast-color);
247
+ background-color: transparent;
248
+ border: solid 1px var(--pwv-brand-color-100);
249
+ opacity: 0.25;
250
+ }
251
+ .pwv-btn-row {
252
+ display: flex;
253
+ justify-content: center;
254
+ margin-top: 1rem;
255
+ }
256
+ .pwv-WebViewer--sm .pwv-btn-row {
257
+ flex-direction: column;
258
+ }
259
+
260
+ @keyframes tooltipFadeInDelay {
261
+ 0%, 95% {
262
+ opacity: 0;
263
+ }
264
+ 100% {
265
+ opacity: 1;
266
+ }
267
+ }
268
+ [data-pwv-tooltip]:hover::after {
269
+ content: attr(data-pwv-tooltip);
270
+ position: absolute;
271
+ background-color: var(--pwv-brand-color-500);
272
+ color: #fff;
273
+ padding: 5px 8px;
274
+ z-index: 10000;
275
+ white-space: nowrap;
276
+ font-size: 0.8rem;
277
+ animation: tooltipFadeInDelay 1s ease-in;
278
+ transform: translateX(-50%);
279
+ left: 50%;
280
+ }
281
+ [data-pwv-tooltip].pwv-tooltip-top::after {
282
+ top: -20px;
283
+ }
284
+ [data-pwv-tooltip].pwv-tooltip-bottom::after {
285
+ top: 46px;
286
+ }
287
+ [data-pwv-tooltip].pwv-tooltip-left::after {
288
+ transform: translateX(-100%);
289
+ left: 50%;
290
+ }
291
+ [data-pwv-tooltip].pwv-tooltip-right::after {
292
+ transform: translateX(0);
293
+ left: 50%;
294
+ }
295
+
296
+ .pwv-contextbar {
297
+ cursor: default;
298
+ z-index: 10;
299
+ padding: 0;
300
+ box-shadow: var(--pwv-drop-shadow-2);
301
+ }
302
+ .pwv-contextbar .pwv-Toolbar {
303
+ position: relative;
304
+ z-index: 2;
305
+ min-height: 37.8px;
306
+ }
307
+ .pwv-contextbar .pwv-ToolbarButton,
308
+ .pwv-contextbar .pwv-ToolbarItem {
309
+ min-height: 37.8px;
310
+ }
311
+ .pwv-contextbar .pwv-ToolbarButton > button,
312
+ .pwv-contextbar .pwv-ToolbarItem > button {
313
+ min-height: 37.8px;
314
+ }
315
+ .pwv-contextbar:after {
316
+ content: "";
317
+ position: absolute;
318
+ left: 50%;
319
+ transform: translateX(-8px) rotate(45deg);
320
+ box-sizing: border-box;
321
+ width: 16px;
322
+ height: 16px;
323
+ box-shadow: var(--pwv-drop-shadow-2);
324
+ background-color: var(--pwv-ui-color-100);
325
+ z-index: 1;
326
+ display: none;
327
+ }
328
+ .pwv-contextbar-bottom .pwv-contextbar:after {
329
+ top: -8px;
330
+ display: block;
331
+ }
332
+ .pwv-contextbar-top .pwv-contextbar:after {
333
+ bottom: -8px;
334
+ display: block;
335
+ }
336
+
337
+ .pwv-icon svg {
338
+ fill: currentColor;
339
+ }
340
+ .pwv-icon img {
341
+ height: 1.13rem;
342
+ max-width: 100%;
343
+ }
344
+
345
+ .pwv-Dropdown {
346
+ cursor: default;
347
+ position: relative;
348
+ }
349
+ .pwv-Dropdown > button {
350
+ margin: 0;
351
+ display: flex;
352
+ align-items: center;
353
+ border: none;
354
+ background-color: transparent;
355
+ font-size: 1em;
356
+ height: 100%;
357
+ width: 100%;
358
+ color: inherit;
359
+ position: relative;
360
+ box-sizing: border-box;
361
+ display: flex;
362
+ align-items: center;
363
+ justify-content: center;
364
+ padding: 0;
365
+ border: solid 1px transparent;
366
+ border-radius: 0.5rem;
367
+ height: 42px;
368
+ min-width: 42px;
369
+ margin: 4px;
370
+ background-color: var(--pwv-ui-color-100);
371
+ color: var(--pwv-text-color);
372
+ cursor: default;
373
+ padding: 0 5px;
374
+ }
375
+ .pwv-Dropdown > button:focus {
376
+ outline: none;
377
+ }
378
+ .pwv-Dropdown > button:enabled:hover {
379
+ color: var(--pwv-text-color);
380
+ background-color: var(--pwv-ui-color-200);
381
+ border: solid 1px transparent;
382
+ }
383
+ .pwv-Dropdown > button:enabled:active {
384
+ color: var(--pwv-brand-color-700);
385
+ background-color: var(--pwv-ui-color-200);
386
+ border: solid 1px transparent;
387
+ }
388
+ .pwv-Dropdown > button:enabled:active svg,
389
+ .pwv-Dropdown > button:enabled:active img {
390
+ transform: scale(0.94);
391
+ }
392
+ .pwv-Dropdown > button:enabled:focus {
393
+ color: var(--pwv-text-color);
394
+ background-color: var(--pwv-ui-color-200);
395
+ border: solid 1px transparent;
396
+ }
397
+ .pwv-Dropdown > button .pwv-Dropdown-text {
398
+ display: block;
399
+ white-space: nowrap;
400
+ overflow: hidden;
401
+ text-overflow: ellipsis;
402
+ padding: 0 4px 0 14px;
403
+ }
404
+ .pwv-Dropdown > button .pwv-Dropdown-text .pwv-icon {
405
+ width: 18px;
406
+ }
407
+ .pwv-Dropdown > button .pwv-Dropdown-text .pwv-icon svg {
408
+ height: 18px;
409
+ }
410
+ .pwv-Dropdown > button .pwv-Dropdown-caret {
411
+ padding-left: 8px;
412
+ display: inline-block;
413
+ }
414
+ .pwv-Dropdown > button .pwv-Dropdown-caret .pwv-icon {
415
+ width: 1.2rem;
416
+ text-align: right;
417
+ }
418
+ .pwv-Dropdown > button .pwv-Dropdown-caret .pwv-icon svg {
419
+ height: 12px;
420
+ }
421
+ .pwv-Dropdown > button:focus {
422
+ outline: none;
423
+ }
424
+ .pwv-Dropdown--open .pwv-DropdownPanel {
425
+ display: block;
426
+ }
427
+ .pwv-DropdownItem {
428
+ display: flex;
429
+ align-items: center;
430
+ box-sizing: border-box;
431
+ white-space: nowrap;
432
+ padding: 0 1rem;
433
+ min-height: 42px;
434
+ background-color: var(--pwv-ui-color-100);
435
+ color: var(--pwv-text-color);
436
+ margin: 4px;
437
+ min-height: 42px;
438
+ width: calc(100% - 8px);
439
+ border: none;
440
+ border: solid 1px transparent;
441
+ border-radius: 0.5rem;
442
+ }
443
+ .pwv-DropdownItem:hover {
444
+ color: var(--pwv-brand-color-600);
445
+ background-color: var(--pwv-ui-color-200);
446
+ border: solid 1px transparent;
447
+ }
448
+ .pwv-DropdownItem .pwv-icon {
449
+ display: inline-block;
450
+ margin-right: 0.25rem;
451
+ width: 1.5rem;
452
+ }
453
+ .pwv-DropdownItem .pwv-icon svg {
454
+ height: 1rem;
455
+ fill: currentColor;
456
+ }
457
+
458
+ .pwv-DropdownPanel {
459
+ display: none;
460
+ position: absolute;
461
+ overflow-y: auto;
462
+ top: 34px;
463
+ min-width: 100%;
464
+ box-shadow: var(--pwv-drop-shadow-2);
465
+ z-index: 100;
466
+ background-color: var(--pwv-ui-color-100);
467
+ }
468
+ .pwv-DropdownPanel.pwv-DropdownPanel--scroll {
469
+ min-width: calc(100% + 20px);
470
+ }
471
+ .pwv-DropdownPanel ul {
472
+ list-style: none;
473
+ padding: 0;
474
+ margin: 0;
475
+ }
476
+ .pwv-DropdownPanel ul li {
477
+ white-space: nowrap;
478
+ cursor: pointer;
479
+ }
480
+ .pwv-DropdownPanel .pwv-Dropdown-item-text {
481
+ white-space: nowrap;
482
+ }
483
+
484
+ .pwv-DropdownSeparator {
485
+ box-sizing: border-box;
486
+ display: flex;
487
+ justify-content: center;
488
+ align-items: center;
489
+ height: 10.5px;
490
+ width: 100% !important;
491
+ }
492
+ .pwv-DropdownSeparator span {
493
+ display: block;
494
+ background-color: var(--pwv-text-color);
495
+ opacity: 0.2;
496
+ width: 100%;
497
+ flex-grow: 1;
498
+ height: 1px;
499
+ box-sizing: border-box;
500
+ }
501
+
502
+ .pwv-Dropdown--alignLeft {
503
+ text-align: left;
504
+ }
505
+ .pwv-Dropdown--alignLeft > button {
506
+ justify-content: space-between;
507
+ }
508
+ .pwv-Dropdown--alignLeft .pwv-DropdownPanel {
509
+ left: 0;
510
+ }
511
+
512
+ .pwv-Dropdown--alignRight {
513
+ text-align: right;
514
+ }
515
+ .pwv-Dropdown--alignRight > button {
516
+ justify-content: flex-end;
517
+ }
518
+ .pwv-Dropdown--alignRight .pwv-DropdownPanel {
519
+ right: 0;
520
+ text-align: right;
521
+ }
522
+ .pwv-Dropdown--alignRight .pwv-DropdownItem {
523
+ justify-content: flex-end;
524
+ }
525
+
526
+ .pwv-Dropdown--alignCenter {
527
+ text-align: center;
528
+ }
529
+ .pwv-Dropdown--alignCenter > button {
530
+ justify-content: center;
531
+ }
532
+ .pwv-Dropdown--alignCenter .pwv-DropdownPanel {
533
+ right: 0;
534
+ }
535
+
536
+ .pwv-Loader {
537
+ margin: 30px 0;
538
+ display: flex;
539
+ justify-content: center;
540
+ align-items: center;
541
+ position: relative;
542
+ top: 0;
543
+ left: 0;
544
+ right: 0;
545
+ bottom: 0;
546
+ z-index: 101;
547
+ }
548
+ .pwv-Loader > div {
549
+ width: 2.5rem;
550
+ height: 2.5rem;
551
+ border-radius: 50%;
552
+ border: solid 4px var(--pwv-ui-color-300);
553
+ border-top-color: var(--pwv-ui-color-400);
554
+ position: relative;
555
+ animation: pwv-rotate 0.8s linear infinite;
556
+ }
557
+
558
+ @keyframes pwv-rotate {
559
+ 0% {
560
+ transform: rotate(0deg);
561
+ }
562
+ 100% {
563
+ transform: rotate(360deg);
564
+ }
565
+ }
566
+ .pwv-ColorPicker > button {
567
+ padding: 0;
568
+ flex-direction: column;
569
+ justify-content: center;
570
+ }
571
+ .pwv-ColorPicker > button .pwv-icon {
572
+ display: block;
573
+ height: 18px;
574
+ }
575
+ .pwv-ColorPicker > button .pwv-icon svg {
576
+ height: 15px;
577
+ }
578
+ .pwv-ColorPicker > button .pwv-ColorPicker__selectedColor {
579
+ height: 5px;
580
+ width: 20px;
581
+ }
582
+ .pwv-ColorPicker .pwv-DropdownPanel {
583
+ left: 0;
584
+ right: auto;
585
+ width: 120px;
586
+ }
587
+ .pwv-ColorPicker .pwv-DropdownPanel.pwv-DropdownPanel-wide {
588
+ width: 160px;
589
+ }
590
+
591
+ .pwv-ColorPicker--buttons {
592
+ padding-left: 8px;
593
+ padding-right: 8px;
594
+ }
595
+ .pwv-ColorPicker--buttons .pwv-ColorPicker__Button {
596
+ margin: 3px;
597
+ width: 28px;
598
+ height: 28px;
599
+ border-radius: 50%;
600
+ }
601
+
602
+ .pwv-ColorPicker__Button {
603
+ position: relative;
604
+ margin: 6px;
605
+ border: solid 2px transparent;
606
+ border-radius: 50%;
607
+ padding: 0;
608
+ width: 28px;
609
+ height: 28px;
610
+ box-sizing: border-box;
611
+ overflow: hidden;
612
+ }
613
+ .pwv-ColorPicker__Button::before {
614
+ content: "";
615
+ position: absolute;
616
+ top: -1px;
617
+ left: 0;
618
+ width: 40px;
619
+ border: 1px solid var(--pwv-text-muted-color);
620
+ transform: rotate(45deg);
621
+ transform-origin: top left;
622
+ z-index: 1;
623
+ }
624
+ .pwv-ColorPicker__Button::after {
625
+ content: "";
626
+ position: absolute;
627
+ top: -1px;
628
+ right: 0;
629
+ width: 40px;
630
+ border: 1px solid var(--pwv-text-muted-color);
631
+ transform: rotate(-45deg);
632
+ transform-origin: top right;
633
+ z-index: 1;
634
+ }
635
+ .pwv-ColorPicker__Button:hover {
636
+ border-color: var(--pwv-text-muted-color);
637
+ }
638
+ .pwv-ColorPicker__Button:active {
639
+ border-color: var(--pwv-text-muted-color);
640
+ }
641
+ .pwv-ColorPicker__Button.pwv-selected {
642
+ border-color: var(--pwv-text-color);
643
+ }
644
+ .pwv-ColorPicker__Button div {
645
+ z-index: 10;
646
+ position: absolute;
647
+ top: 0;
648
+ left: 0;
649
+ bottom: 0;
650
+ right: 0;
651
+ }
652
+
653
+ .pwv-vertical-scrollbar,
654
+ .pwv-horizontal-scrollbar {
655
+ cursor: default !important;
656
+ z-index: 7;
657
+ position: absolute;
658
+ background-color: var(--pwv-ui-color-300);
659
+ }
660
+ .pwv-vertical-scrollbar > div,
661
+ .pwv-horizontal-scrollbar > div {
662
+ position: absolute;
663
+ }
664
+
665
+ .pwv-scrollbar-handle {
666
+ background-color: var(--pwv-ui-color-400);
667
+ transition: background-color 0.5s;
668
+ }
669
+
670
+ .pwv-horizontal-scrollbar {
671
+ bottom: 0;
672
+ right: 0;
673
+ left: 0;
674
+ height: 4px;
675
+ border-left: 15px solid transparent;
676
+ border-right: 15px solid transparent;
677
+ transition: height 0.5s;
678
+ }
679
+ .pwv-horizontal-scrollbar .pwv-scrollbar-handle {
680
+ height: 100%;
681
+ }
682
+
683
+ .pwv-vertical-scrollbar {
684
+ width: 4px;
685
+ top: 0;
686
+ bottom: 0;
687
+ right: 0;
688
+ border-top: 15px solid transparent;
689
+ border-bottom: 15px solid transparent;
690
+ transition: width 0.5s;
691
+ }
692
+ .pwv-vertical-scrollbar .pwv-scrollbar-handle {
693
+ width: 100%;
694
+ }
695
+
696
+ .pwv-scrollbar-hover.pwv-vertical-scrollbar,
697
+ .pwv-scrollbar-dragging.pwv-vertical-scrollbar {
698
+ width: 15px;
699
+ transition: width 0.5s;
700
+ }
701
+ .pwv-scrollbar-hover.pwv-horizontal-scrollbar,
702
+ .pwv-scrollbar-dragging.pwv-horizontal-scrollbar {
703
+ height: 15px;
704
+ transition: height 0.5s;
705
+ }
706
+ .pwv-scrollbar-hover .pwv-scrollbar-handle,
707
+ .pwv-scrollbar-dragging .pwv-scrollbar-handle {
708
+ background-color: var(--pwv-brand-color-500) !important;
709
+ transition: background-color 0.5s;
710
+ }
711
+
712
+ .pwv-scrollbar-scrolling .pwv-scrollbar-handle {
713
+ background-color: var(--pwv-brand-color-500);
714
+ transition: background-color 0.5s;
715
+ }
716
+
717
+ .pwv-RangeSlider.pwv-Dropdown .pwv-Dropdown-text {
718
+ padding: 0;
719
+ width: 2.5rem;
720
+ text-align: right;
721
+ }
722
+ .pwv-RangeSlider .pwv-Dropdown-label {
723
+ margin-right: auto;
724
+ }
725
+ .pwv-RangeSlider .pwv-Dropdown-label .pwv-icon {
726
+ width: 15px;
727
+ display: inline-block;
728
+ padding-top: 4px;
729
+ }
730
+ .pwv-RangeSlider .pwv-Dropdown-label .pwv-icon svg {
731
+ height: 15px;
732
+ }
733
+ .pwv-RangeSlider button {
734
+ justify-content: flex-end;
735
+ }
736
+
737
+ .pwv-stroke-width-picker {
738
+ width: 115px;
739
+ }
740
+ .pwv-stroke-width-picker button {
741
+ padding-left: 8px;
742
+ }
743
+ .pwv-stroke-width-picker button .pwv-stroke-width {
744
+ width: auto;
745
+ flex: 1;
746
+ margin-left: 12px;
747
+ }
748
+
749
+ .pwv-stroke-width-picker-item {
750
+ display: flex;
751
+ align-items: center;
752
+ justify-content: space-between;
753
+ flex: 1;
754
+ }
755
+
756
+ .pwv-stroke-width {
757
+ display: block;
758
+ width: 40px;
759
+ margin-top: 2px;
760
+ background-color: currentColor;
761
+ }
762
+
763
+ .pwv-stroke-style-picker {
764
+ width: 50px;
765
+ }
766
+ .pwv-stroke-style-picker-line .pwv-stroke-style-picker-button > span {
767
+ height: 1;
768
+ border-left: none;
769
+ border-bottom: none;
770
+ border-right: none;
771
+ }
772
+ .pwv-stroke-style-picker-circle .pwv-stroke-style-picker-button > span {
773
+ border-radius: 50%;
774
+ }
775
+
776
+ .pwv-stroke-style-picker-button > span {
777
+ display: block;
778
+ width: 18px;
779
+ height: 18px;
780
+ box-sizing: border-box;
781
+ border-color: currentColor;
782
+ border-width: 1px;
783
+ border-style: solid;
784
+ }
785
+ .pwv-stroke-style-picker-button.pwv-stroke-style-dashed > span {
786
+ border-style: dashed;
787
+ }
788
+
789
+ .pwv-stroke-style-picker-item {
790
+ display: flex;
791
+ align-items: center;
792
+ justify-content: flex-end;
793
+ height: 21px;
794
+ }
795
+ .pwv-stroke-style-picker-item:hover > span {
796
+ border-top-color: var(--pwv-brand-color-500);
797
+ }
798
+ .pwv-stroke-style-picker-item > span {
799
+ display: block;
800
+ width: 40px;
801
+ height: 2px;
802
+ box-sizing: border-box;
803
+ border-top-color: currentColor;
804
+ border-top-width: 2px;
805
+ border-top-style: solid;
806
+ }
807
+ .pwv-stroke-style-picker-item.pwv-stroke-style-dashed > span {
808
+ border-top-style: dashed;
809
+ }
810
+
811
+ .pwv-opacityslider .pwv-Dropdown-text {
812
+ width: 55px;
813
+ }
814
+
815
+ .pwv-Dropdown-line-width {
816
+ width: 50px;
817
+ }
818
+ .pwv-Dropdown-line-width .pwv-DropdownPanel {
819
+ width: 75px;
820
+ min-width: 75px;
821
+ }
822
+ .pwv-Dropdown-line-width ul li {
823
+ padding: 0 10px;
824
+ }
825
+ .pwv-Dropdown-line-width .pwv-line-width {
826
+ display: flex;
827
+ align-items: center;
828
+ width: 100%;
829
+ height: 25px;
830
+ padding: 0;
831
+ }
832
+ .pwv-Dropdown-line-width .pwv-line-width > div {
833
+ width: 100%;
834
+ background-color: var(--pwv-text-color);
835
+ }
836
+ .pwv-Dropdown-line-width .pwv-line-width:hover > div {
837
+ background-color: var(--pwv-text-color);
838
+ }
839
+ .pwv-Dropdown-line-width button .pwv-line-width {
840
+ width: 18px;
841
+ }
842
+ .pwv-Dropdown-line-width button .pwv-line-width > div {
843
+ width: 18px;
844
+ }
845
+
846
+ .pwv-highlightannotation-toolbar {
847
+ position: absolute;
848
+ z-index: 10;
849
+ top: 10px;
850
+ left: 10px;
851
+ }
852
+ .pwv-highlightannotation-toolbar .pwv-contextbar::after {
853
+ display: none;
854
+ }
855
+
856
+ .pwv-stampannotation-dropdown .pwv-DropdownPanel {
857
+ width: 224px;
858
+ }
859
+ .pwv-stampannotation-dropdown .pwv-DropdownPanel.pwv-DropdownPanel--scroll {
860
+ width: 244px;
861
+ }
862
+ .pwv-stampannotation-dropdown button img {
863
+ max-height: 28px;
864
+ }
865
+ .pwv-stampannotation-dropdown ul img {
866
+ max-height: 50px;
867
+ max-width: 200px;
868
+ }
869
+
870
+ .pwv-eraserInfoBar {
871
+ display: flex;
872
+ align-items: center;
873
+ justify-content: center;
874
+ background-color: var(--pwv-brand-color-500);
875
+ color: var(--pwv-text-contrast-color);
876
+ }
877
+ .pwv-eraserInfoBar > span {
878
+ margin-left: auto;
879
+ font-weight: bold;
880
+ }
881
+ .pwv-eraserInfoBar .pwv-ToolbarButton {
882
+ background-color: transparent;
883
+ border: none;
884
+ max-height: 31.5px;
885
+ margin-left: auto;
886
+ color: var(--pwv-text-contrast-color);
887
+ }
888
+ .pwv-eraserInfoBar .pwv-ToolbarButton:hover, .pwv-eraserInfoBar .pwv-ToolbarButton:active {
889
+ background-color: transparent;
890
+ color: var(--pwv-text-contrast-color);
891
+ }
892
+
893
+ .pwv-formField {
894
+ position: absolute;
895
+ z-index: 4;
896
+ border: dotted 2px var(--pwv-selection-color);
897
+ }
898
+ .pwv-formField__Element {
899
+ position: absolute;
900
+ display: flex;
901
+ transform-origin: top left;
902
+ border: none;
903
+ top: 0;
904
+ left: 0;
905
+ bottom: 0;
906
+ right: 0;
907
+ box-sizing: border-box;
908
+ width: 100%;
909
+ }
910
+ .pwv-formField__ComboBox {
911
+ background-color: var(--pwv-text-contrast-color);
912
+ }
913
+ .pwv-formField__ComboBox button {
914
+ position: absolute;
915
+ top: 0;
916
+ right: 0;
917
+ bottom: 0;
918
+ width: 1.75rem;
919
+ display: flex;
920
+ align-items: center;
921
+ justify-content: center;
922
+ background-color: var(--pwv-text-contrast-color);
923
+ border: none;
924
+ }
925
+ .pwv-formField__ComboBox button:active {
926
+ background-color: lime;
927
+ }
928
+ .pwv-formField__ComboBox .pwv-icon {
929
+ display: block;
930
+ height: 18px;
931
+ }
932
+ .pwv-formField__ComboBox .pwv-icon svg {
933
+ height: 15px;
934
+ }
935
+ .pwv-formField__SelectList {
936
+ background-color: var(--pwv-text-contrast-color);
937
+ }
938
+ .pwv-formField__ListBox {
939
+ background-color: var(--pwv-text-contrast-color);
940
+ }
941
+ .pwv-formField__TextBox {
942
+ background-color: var(--pwv-text-contrast-color);
943
+ resize: none;
944
+ }
945
+
946
+ .pwv-ViewerCanvas {
947
+ display: flex;
948
+ flex-grow: 1;
949
+ align-items: stretch;
950
+ }
951
+
952
+ .pwv-canvas-toolbar {
953
+ flex-grow: 0;
954
+ flex-shrink: 0;
955
+ position: relative;
956
+ top: 0;
957
+ left: 0;
958
+ right: 0;
959
+ z-index: 10;
960
+ }
961
+ .pwv-canvas-toolbar .pwv-DropdownPanel {
962
+ top: 38px !important;
963
+ }
964
+
965
+ .pwv-canvas-container {
966
+ display: flex;
967
+ align-items: stretch;
968
+ flex-direction: column;
969
+ position: relative;
970
+ flex-grow: 1;
971
+ }
972
+ .pwv-canvas-container > * {
973
+ -webkit-user-select: none;
974
+ -moz-user-select: none;
975
+ -ms-user-select: none;
976
+ user-select: none;
977
+ }
978
+
979
+ .pwv-canvas-layers {
980
+ flex-grow: 1;
981
+ position: relative;
982
+ padding: 0;
983
+ margin: 0;
984
+ overflow: hidden;
985
+ touch-action: none;
986
+ background-color: var(--pwv-ui-color-200);
987
+ }
988
+ .pwv-canvas-layers > div {
989
+ position: absolute;
990
+ top: 0;
991
+ left: 0;
992
+ right: 0;
993
+ bottom: 0;
994
+ padding: 0;
995
+ margin: 0;
996
+ overflow: hidden;
997
+ }
998
+
999
+ .pwv-BusyLoader {
1000
+ position: absolute;
1001
+ bottom: 16px;
1002
+ left: 20px;
1003
+ right: 20px;
1004
+ z-index: 100;
1005
+ }
1006
+ .pwv-BusyLoader > div {
1007
+ position: relative;
1008
+ display: flex;
1009
+ justify-content: space-between;
1010
+ width: 42px;
1011
+ height: 21px;
1012
+ transition: all 300ms ease-in-out 0s;
1013
+ z-index: 1;
1014
+ margin: auto;
1015
+ }
1016
+ .pwv-BusyLoader > div .rect-1,
1017
+ .pwv-BusyLoader > div .rect-2,
1018
+ .pwv-BusyLoader > div .rect-3,
1019
+ .pwv-BusyLoader > div .rect-4,
1020
+ .pwv-BusyLoader > div .rect-5 {
1021
+ width: 15%;
1022
+ height: 100%;
1023
+ background-color: var(--pwv-brand-color-500);
1024
+ animation: rectangle-bounce 1s infinite ease-in-out;
1025
+ }
1026
+ .pwv-BusyLoader > div .rect-2 {
1027
+ animation-delay: -0.9s;
1028
+ }
1029
+ .pwv-BusyLoader > div .rect-3 {
1030
+ animation-delay: -0.8s;
1031
+ }
1032
+ .pwv-BusyLoader > div .rect-4 {
1033
+ animation-delay: -0.7s;
1034
+ }
1035
+ .pwv-BusyLoader > div .rect-5 {
1036
+ animation-delay: -0.6s;
1037
+ }
1038
+
1039
+ @keyframes rectangle-bounce {
1040
+ 0%, 40%, 100% {
1041
+ transform: scaleY(0.4);
1042
+ }
1043
+ 20% {
1044
+ transform: scaleY(1);
1045
+ }
1046
+ }
1047
+ .pwv-annotation-selection {
1048
+ box-sizing: border-box;
1049
+ z-index: 5;
1050
+ }
1051
+ .pwv-annotation-selection .pwv-contextbar {
1052
+ position: absolute;
1053
+ left: 0;
1054
+ transition: opacity 0.3s;
1055
+ }
1056
+ .pwv-annotation-selection.pwv-contextbar-top .pwv-contextbar {
1057
+ top: -70px;
1058
+ }
1059
+ .pwv-annotation-selection.pwv-contextbar-bottom .pwv-contextbar {
1060
+ bottom: -70px;
1061
+ }
1062
+
1063
+ .pwv-annotation-moving .pwv-annotation-border,
1064
+ .pwv-annotation-resizing .pwv-annotation-border {
1065
+ border-style: dotted;
1066
+ }
1067
+ .pwv-annotation-moving .pwv-annotation-border-draghandle,
1068
+ .pwv-annotation-resizing .pwv-annotation-border-draghandle {
1069
+ background-color: var(--pwv-selection-color);
1070
+ top: 0;
1071
+ left: 0;
1072
+ bottom: 0;
1073
+ right: 0;
1074
+ opacity: 0.33;
1075
+ }
1076
+ .pwv-annotation-moving .pwv-contextbar,
1077
+ .pwv-annotation-resizing .pwv-contextbar {
1078
+ opacity: 0;
1079
+ transition: opacity 0.1s;
1080
+ }
1081
+
1082
+ .pwv-annotation-border {
1083
+ position: absolute;
1084
+ top: 0;
1085
+ left: 0;
1086
+ right: 0;
1087
+ bottom: 0;
1088
+ border: 2px solid var(--pwv-selection-color);
1089
+ box-sizing: border-box;
1090
+ }
1091
+
1092
+ .pwv-annotation-border-draghandle {
1093
+ position: absolute;
1094
+ top: 3px;
1095
+ left: 3px;
1096
+ bottom: 3px;
1097
+ right: 3px;
1098
+ border: none;
1099
+ cursor: move;
1100
+ z-index: 12;
1101
+ }
1102
+
1103
+ .pwv-annotation-border-resizehandle-nw,
1104
+ .pwv-annotation-border-resizehandle-ne,
1105
+ .pwv-annotation-border-resizehandle-sw,
1106
+ .pwv-annotation-border-resizehandle-se {
1107
+ position: absolute;
1108
+ border: 2px solid var(--pwv-selection-color);
1109
+ background-color: var(--pwv-selection-color);
1110
+ box-sizing: border-box;
1111
+ width: 16px;
1112
+ height: 16px;
1113
+ }
1114
+ .pwv-annotation-moving .pwv-annotation-border-resizehandle-nw,
1115
+ .pwv-annotation-moving .pwv-annotation-border-resizehandle-ne,
1116
+ .pwv-annotation-moving .pwv-annotation-border-resizehandle-sw,
1117
+ .pwv-annotation-moving .pwv-annotation-border-resizehandle-se {
1118
+ display: none !important;
1119
+ }
1120
+ .pwv-annotation-resizing .pwv-annotation-border-resizehandle-nw,
1121
+ .pwv-annotation-resizing .pwv-annotation-border-resizehandle-ne,
1122
+ .pwv-annotation-resizing .pwv-annotation-border-resizehandle-sw,
1123
+ .pwv-annotation-resizing .pwv-annotation-border-resizehandle-se {
1124
+ display: none !important;
1125
+ }
1126
+
1127
+ .pwv-annotation-border-resizehandle-nw {
1128
+ top: -14px;
1129
+ left: -14px;
1130
+ cursor: nw-resize;
1131
+ }
1132
+
1133
+ .pwv-annotation-border-resizehandle-ne {
1134
+ top: -14px;
1135
+ right: -14px;
1136
+ cursor: ne-resize;
1137
+ }
1138
+
1139
+ .pwv-annotation-border-resizehandle-sw {
1140
+ bottom: -14px;
1141
+ left: -14px;
1142
+ cursor: sw-resize;
1143
+ }
1144
+
1145
+ .pwv-annotation-border-resizehandle-se {
1146
+ bottom: -14px;
1147
+ right: -14px;
1148
+ cursor: se-resize;
1149
+ }
1150
+
1151
+ .pwv-textselection-contextbar {
1152
+ position: absolute;
1153
+ top: 0;
1154
+ left: 0;
1155
+ }
1156
+ .pwv-textselection-contextbar .pwv-ColorPicker .pwv-icon {
1157
+ height: 18px;
1158
+ }
1159
+ .pwv-textselection-contextbar .pwv-ColorPicker .pwv-icon svg {
1160
+ height: 18px;
1161
+ }
1162
+ .pwv-textselection-contextbar .pwv-ColorPicker__selectedColor {
1163
+ display: none;
1164
+ }
1165
+
1166
+ .pwv-popup {
1167
+ position: absolute;
1168
+ background-color: var(--pwv-ui-color-200);
1169
+ box-shadow: var(--pwv-drop-shadow-3);
1170
+ box-sizing: border-box;
1171
+ border: solid 0 transparent;
1172
+ z-index: 10;
1173
+ opacity: 0.75;
1174
+ }
1175
+ .pwv-popup:hover {
1176
+ opacity: 0.85;
1177
+ }
1178
+ .pwv-popup.pwv-popup-selected {
1179
+ opacity: 1;
1180
+ z-index: 12;
1181
+ }
1182
+ .pwv-mobile-popup .pwv-popup {
1183
+ top: 0;
1184
+ left: 0;
1185
+ bottom: 0;
1186
+ right: 0;
1187
+ opacity: 1 !important;
1188
+ }
1189
+
1190
+ .pwv-popup-header .pwv-Toolbar {
1191
+ margin: 5px;
1192
+ }
1193
+
1194
+ .pwv-popup-header-info {
1195
+ position: absolute;
1196
+ box-sizing: border-box;
1197
+ left: 0;
1198
+ right: 0;
1199
+ bottom: 0;
1200
+ height: 25px;
1201
+ padding: 4px 25px 0 0.3rem;
1202
+ display: flex;
1203
+ justify-content: space-between;
1204
+ font-size: 0.8rem;
1205
+ font-weight: 400;
1206
+ }
1207
+
1208
+ .pwv-popup-header-modified {
1209
+ margin-right: 5px;
1210
+ }
1211
+
1212
+ .pwv-popup-toolbar {
1213
+ background: var(--pwv-ui-color-200);
1214
+ position: absolute;
1215
+ top: 5px;
1216
+ left: 5px;
1217
+ right: 5px;
1218
+ height: 40px;
1219
+ display: flex;
1220
+ justify-content: space-between;
1221
+ box-sizing: border-box;
1222
+ z-index: 2;
1223
+ }
1224
+ .pwv-popup-toolbar .pwv-commandbar-item {
1225
+ width: 50px;
1226
+ height: 40px !important;
1227
+ }
1228
+
1229
+ .pwv-popup-subject {
1230
+ position: absolute;
1231
+ top: 50px;
1232
+ left: 5px;
1233
+ right: 5px;
1234
+ height: 35px;
1235
+ z-index: 1;
1236
+ }
1237
+ .pwv-popup-subject input {
1238
+ color: var(--pwv-text-color);
1239
+ background: var(--pwv-text-contrast-color);
1240
+ border: none;
1241
+ padding: 0.3rem;
1242
+ box-sizing: border-box;
1243
+ font-size: 0.9rem !important;
1244
+ width: 100%;
1245
+ height: 100%;
1246
+ }
1247
+ .pwv-popup-subject div {
1248
+ display: flex;
1249
+ align-items: center;
1250
+ color: var(--pwv-text-color);
1251
+ background-color: var(--pwv-text-contrast-color);
1252
+ user-select: text;
1253
+ border: none;
1254
+ font-size: 0.9rem !important;
1255
+ padding: 0.3rem;
1256
+ box-sizing: border-box;
1257
+ height: 100%;
1258
+ user-select: text;
1259
+ overflow: auto;
1260
+ }
1261
+
1262
+ .pwv-popup-content {
1263
+ position: absolute;
1264
+ top: 88px;
1265
+ left: 5px;
1266
+ right: 5px;
1267
+ bottom: 25px;
1268
+ z-index: 1;
1269
+ }
1270
+ .pwv-popup-content textarea {
1271
+ color: var(--pwv-text-color);
1272
+ background: var(--pwv-text-contrast-color);
1273
+ border: none;
1274
+ padding: 0.3rem;
1275
+ box-sizing: border-box;
1276
+ resize: none;
1277
+ font-size: 0.9rem !important;
1278
+ width: 100%;
1279
+ height: 100%;
1280
+ }
1281
+ .pwv-popup-content div {
1282
+ color: var(--pwv-text-color);
1283
+ background-color: var(--pwv-text-contrast-color);
1284
+ user-select: text;
1285
+ border: none;
1286
+ padding: 0.3rem;
1287
+ box-sizing: border-box;
1288
+ font-size: 0.9rem !important;
1289
+ height: 100%;
1290
+ user-select: text;
1291
+ overflow: auto;
1292
+ white-space: pre-wrap;
1293
+ }
1294
+
1295
+ .pwv-popup-content-no-subject {
1296
+ top: 55px;
1297
+ }
1298
+
1299
+ .pwv-popup-draghandle {
1300
+ position: absolute;
1301
+ top: 5px;
1302
+ right: 55px;
1303
+ left: 150px;
1304
+ height: 40px;
1305
+ z-index: 5;
1306
+ cursor: move;
1307
+ }
1308
+
1309
+ .pwv-popup-resizer {
1310
+ position: absolute;
1311
+ bottom: 0;
1312
+ right: 0;
1313
+ width: 22px;
1314
+ height: 22px;
1315
+ cursor: se-resize;
1316
+ z-index: 5;
1317
+ }
1318
+ .pwv-popup-resizer::before, .pwv-popup-resizer::after {
1319
+ position: absolute;
1320
+ border-top: solid 2px var(--pwv-text-muted-color);
1321
+ content: "";
1322
+ box-sizing: border-box;
1323
+ transform: rotate(-45deg);
1324
+ }
1325
+ .pwv-popup-resizer::before {
1326
+ top: 8px;
1327
+ left: 8px;
1328
+ width: 12px;
1329
+ height: 12px;
1330
+ }
1331
+ .pwv-popup-resizer::after {
1332
+ top: 12px;
1333
+ left: 12px;
1334
+ width: 6px;
1335
+ height: 6px;
1336
+ }
1337
+
1338
+ .pwv-popup-view-only .pwv-Toolbar {
1339
+ background: transparent;
1340
+ }
1341
+ .pwv-popup-view-only .pwv-Toolbar .pwv-ToolbarButton {
1342
+ width: 40px !important;
1343
+ height: 34px !important;
1344
+ margin-top: -4px;
1345
+ margin-right: -4px;
1346
+ color: inherit;
1347
+ background: transparent;
1348
+ }
1349
+ .pwv-popup-view-only .pwv-popup-draghandle {
1350
+ left: 2px;
1351
+ top: 2px;
1352
+ height: 34px;
1353
+ }
1354
+ .pwv-popup-view-only .pwv-popup-view-only-content {
1355
+ position: absolute;
1356
+ top: 34px;
1357
+ bottom: 24px;
1358
+ left: 0;
1359
+ right: 0;
1360
+ padding: 4px 10px;
1361
+ display: flex;
1362
+ flex-direction: column;
1363
+ overflow: auto;
1364
+ user-select: text;
1365
+ background-color: rgba(255, 255, 255, 0.15);
1366
+ }
1367
+ .pwv-popup-view-only .pwv-popup-view-only-content h4 {
1368
+ margin: 0 0 4px 0;
1369
+ }
1370
+ .pwv-popup-view-only .pwv-popup-view-only-content div {
1371
+ font-weight: 400;
1372
+ }
1373
+ .pwv-popup-view-only .pwv-popup-header-info {
1374
+ padding-left: 10px;
1375
+ }
1376
+
1377
+ .pwv-freetexteditor {
1378
+ /* border: solid 1px #999999; */
1379
+ }
1380
+
1381
+ .pwv-freetexteditor-toolbar {
1382
+ position: absolute;
1383
+ top: -105px;
1384
+ left: 0;
1385
+ }
1386
+
1387
+ .pwv-freetext-subject {
1388
+ display: flex;
1389
+ align-items: center;
1390
+ height: 42px;
1391
+ min-width: 42px;
1392
+ margin: 4px;
1393
+ background-color: var(--pwv-ui-color-100);
1394
+ color: var(--pwv-text-color);
1395
+ }
1396
+ .pwv-freetext-subject input {
1397
+ width: 220px;
1398
+ height: 30px;
1399
+ border: none;
1400
+ padding: 0.3rem;
1401
+ box-sizing: border-box;
1402
+ resize: none;
1403
+ font-size: 0.9rem !important;
1404
+ }
1405
+
1406
+ .pwv-print-dialog {
1407
+ display: inline-block;
1408
+ box-sizing: border-box;
1409
+ position: absolute;
1410
+ width: 300px;
1411
+ height: 240px;
1412
+ margin-left: -150px;
1413
+ margin-top: -120px;
1414
+ top: 50%;
1415
+ left: 50%;
1416
+ border-radius: 10px;
1417
+ background-color: #ffffff;
1418
+ box-shadow: var(--pwv-drop-shadow-3);
1419
+ }
1420
+ .pwv-print-dialog input[type=radio] {
1421
+ display: none;
1422
+ }
1423
+ .pwv-print-dialog .pwv-print-radio {
1424
+ display: inline-block;
1425
+ width: 12px;
1426
+ height: 12px;
1427
+ border-radius: 100%;
1428
+ border: 1px #008bd2 solid;
1429
+ }
1430
+ .pwv-print-dialog input[type=radio]:checked + .pwv-print-radio {
1431
+ background: #008bd2;
1432
+ }
1433
+ .pwv-print-dialog label > span {
1434
+ margin-right: 10px;
1435
+ }
1436
+ .pwv-print-dialog .pwv-checkbox-btn {
1437
+ border: none;
1438
+ background-color: transparent;
1439
+ display: flex;
1440
+ align-items: center;
1441
+ box-sizing: border-box;
1442
+ flex-wrap: nowrap;
1443
+ width: 100%;
1444
+ height: 12px;
1445
+ font-size: 1em;
1446
+ white-space: nowrap;
1447
+ }
1448
+ .pwv-print-dialog .pwv-checkbox-btn .pwv-icon {
1449
+ display: block;
1450
+ height: 18px;
1451
+ margin-right: 6px;
1452
+ }
1453
+ .pwv-print-dialog .pwv-checkbox-btn .pwv-icon svg {
1454
+ height: 18px;
1455
+ fill: var(--pwv-brand-color-500);
1456
+ }
1457
+
1458
+ .pwv-print-option {
1459
+ display: flex;
1460
+ align-items: center;
1461
+ justify-content: space-between;
1462
+ height: 28px;
1463
+ }
1464
+
1465
+ .pwv-print-invalid-range-text-container {
1466
+ min-height: 16px;
1467
+ }
1468
+ .pwv-print-invalid-range-text-container .pwv-print-invalid-range-text {
1469
+ text-align: right;
1470
+ color: #ff0000;
1471
+ font-size: 8pt;
1472
+ display: none;
1473
+ }
1474
+
1475
+ .pwv-print-title {
1476
+ font-size: large;
1477
+ font-weight: bold;
1478
+ display: flex;
1479
+ margin-bottom: 10px;
1480
+ }
1481
+ .pwv-print-title span {
1482
+ padding-right: 10px;
1483
+ }
1484
+
1485
+ .pwv-print-body {
1486
+ position: absolute;
1487
+ box-sizing: border-box;
1488
+ height: 100%;
1489
+ width: 100%;
1490
+ padding: 15px;
1491
+ }
1492
+
1493
+ .pwv-print-bottom {
1494
+ display: flex;
1495
+ align-items: center;
1496
+ justify-content: flex-end;
1497
+ position: absolute;
1498
+ bottom: 15px;
1499
+ left: 15px;
1500
+ right: 15px;
1501
+ }
1502
+ .pwv-print-bottom-center {
1503
+ justify-content: center;
1504
+ }
1505
+
1506
+ .pwv-print-button-print {
1507
+ width: 100px;
1508
+ height: 30px;
1509
+ background-color: #008bd2;
1510
+ color: white;
1511
+ border: none;
1512
+ margin-left: 15px;
1513
+ }
1514
+
1515
+ .pwv-print-button-cancel {
1516
+ width: 100px;
1517
+ height: 30px;
1518
+ border: solid 1px #008bd2;
1519
+ background-color: #ffffff;
1520
+ }
1521
+
1522
+ .pwv-print-icon {
1523
+ display: block;
1524
+ height: 18px;
1525
+ }
1526
+ .pwv-print-icon svg {
1527
+ height: 18px;
1528
+ }
1529
+
1530
+ .pwv-print-page-range {
1531
+ max-width: 140px;
1532
+ border: 1px #008bd2 solid;
1533
+ }
1534
+ .pwv-print-page-range.pwv-print-invalid-input {
1535
+ background: rgba(255, 108, 120, 0.4588235294);
1536
+ }
1537
+
1538
+ .pwv-print-page-range::placeholder {
1539
+ font-style: italic;
1540
+ color: #999999;
1541
+ }
1542
+
1543
+ body[data-pdfwebviewerprinting] #outerContainer {
1544
+ display: none;
1545
+ }
1546
+
1547
+ body[data-pdfwebviewerprinting] #printContainer {
1548
+ display: block;
1549
+ }
1550
+
1551
+ .pwv-WebViewer {
1552
+ display: flex;
1553
+ flex-direction: column;
1554
+ position: absolute;
1555
+ top: 0;
1556
+ left: 0;
1557
+ right: 0;
1558
+ bottom: 0;
1559
+ overflow: hidden;
1560
+ font-size: inherit;
1561
+ font-family: inherit;
1562
+ background-color: var(--pwv-ui-color-200);
1563
+ }
1564
+ .pwv-WebViewer > * {
1565
+ -webkit-user-select: none;
1566
+ -moz-user-select: none;
1567
+ -ms-user-select: none;
1568
+ user-select: none;
1569
+ }
1570
+ .pwv-WebViewer input,
1571
+ .pwv-WebViewer select,
1572
+ .pwv-WebViewer textarea,
1573
+ .pwv-WebViewer button {
1574
+ font-family: inherit;
1575
+ font-size: inherit;
1576
+ touch-action: manipulation;
1577
+ }
1578
+ .pwv-WebViewer input:focus,
1579
+ .pwv-WebViewer select:focus,
1580
+ .pwv-WebViewer textarea:focus,
1581
+ .pwv-WebViewer button:focus {
1582
+ outline: none;
1583
+ }
1584
+
1585
+ .pwv-Viewer {
1586
+ display: flex;
1587
+ flex-direction: column;
1588
+ flex-grow: 1;
1589
+ }
1590
+
1591
+ .pwv-ViewerContent {
1592
+ display: flex;
1593
+ height: 100%;
1594
+ z-index: 1;
1595
+ position: relative;
1596
+ flex-grow: 1;
1597
+ }
1598
+ .pwv-WebViewer--sm .pwv-ViewerContent {
1599
+ flex-direction: column;
1600
+ }
1601
+
1602
+ .pwv-document-view {
1603
+ position: relative;
1604
+ display: flex;
1605
+ flex-grow: 1;
1606
+ }
1607
+ .pwv-document-view.pwv-annotationbar-top {
1608
+ flex-direction: column-reverse;
1609
+ }
1610
+ .pwv-document-view.pwv-annotationbar-bottom {
1611
+ flex-direction: column;
1612
+ }
1613
+
1614
+ .pwv-modal {
1615
+ position: absolute;
1616
+ top: 0;
1617
+ left: 0;
1618
+ right: 0;
1619
+ bottom: 0;
1620
+ z-index: 100;
1621
+ background-color: var(--pwv-brand-color-500);
1622
+ display: flex;
1623
+ justify-content: center;
1624
+ align-items: center;
1625
+ }
1626
+ .pwv-modal--loadApplication, .pwv-modal--loadFile, .pwv-modal--saveFile {
1627
+ background-color: transparent;
1628
+ }
1629
+ .pwv-modal--loadApplication .pwv-modal-dialog, .pwv-modal--loadFile .pwv-modal-dialog, .pwv-modal--saveFile .pwv-modal-dialog {
1630
+ background-color: transparent;
1631
+ border: none;
1632
+ }
1633
+ .pwv-modal--loadApplication .pwv-modal-dialog h2, .pwv-modal--loadFile .pwv-modal-dialog h2, .pwv-modal--saveFile .pwv-modal-dialog h2 {
1634
+ display: none;
1635
+ }
1636
+ .pwv-modal--loadApplication::before, .pwv-modal--loadFile::before, .pwv-modal--saveFile::before {
1637
+ content: " ";
1638
+ position: absolute;
1639
+ inset: 0;
1640
+ background-color: var(--pwv-ui-color-200);
1641
+ opacity: 0.5;
1642
+ z-index: 1;
1643
+ }
1644
+
1645
+ .pwv-Viewer--loadFile button,
1646
+ .pwv-Viewer--loadFile input,
1647
+ .pwv-Viewer--loadFile .pwv-ToolbarButton,
1648
+ .pwv-Viewer--loadFile .pwv-ToolbarItem,
1649
+ .pwv-Viewer--loadFile .pwv-NavigationPanel__Content > div,
1650
+ .pwv-Viewer--saveFile button,
1651
+ .pwv-Viewer--saveFile input,
1652
+ .pwv-Viewer--saveFile .pwv-ToolbarButton,
1653
+ .pwv-Viewer--saveFile .pwv-ToolbarItem,
1654
+ .pwv-Viewer--saveFile .pwv-NavigationPanel__Content > div {
1655
+ opacity: 0.5;
1656
+ }
1657
+
1658
+ .pwv-modal-dialog {
1659
+ display: flex;
1660
+ flex-direction: column;
1661
+ text-align: left;
1662
+ z-index: 2;
1663
+ color: var(--pwv-text-contrast-color);
1664
+ border: dashed 2px var(--pwv-brand-color-400);
1665
+ border-radius: 20px;
1666
+ background-color: var(--pwv-brand-color-500);
1667
+ }
1668
+ .pwv-dropzone-dragover .pwv-openfile .pwv-modal-dialog {
1669
+ transition: border-color 0.3s;
1670
+ border: dashed 2px var(--pwv-brand-color-200);
1671
+ }
1672
+ .pwv-WebViewer--sm .pwv-modal-dialog {
1673
+ width: 100%;
1674
+ margin: 20px;
1675
+ }
1676
+ .pwv-WebViewer--md .pwv-modal-dialog {
1677
+ width: 600px;
1678
+ }
1679
+ .pwv-WebViewer--lg .pwv-modal-dialog {
1680
+ width: 760px;
1681
+ }
1682
+
1683
+ .pwv-modal-header {
1684
+ padding: 0.25rem 1rem;
1685
+ display: flex;
1686
+ justify-content: center;
1687
+ align-items: center;
1688
+ align-content: center;
1689
+ }
1690
+ .pwv-modal-header h2 {
1691
+ display: none;
1692
+ padding: 0;
1693
+ margin: 0;
1694
+ text-transform: uppercase;
1695
+ font-size: 2.2rem;
1696
+ font-weight: 200;
1697
+ opacity: 1;
1698
+ }
1699
+ .pwv-modal-header .pwv-icon {
1700
+ padding-top: 2rem;
1701
+ }
1702
+ .pwv-modal-header .pwv-icon svg {
1703
+ height: 70px;
1704
+ fill: var(--pwv-text-contrast-color);
1705
+ opacity: 0.75;
1706
+ }
1707
+
1708
+ .pwv-modal-body {
1709
+ text-align: center;
1710
+ padding: 2rem;
1711
+ }
1712
+ .pwv-WebViewer--sm .pwv-modal-body {
1713
+ padding: 1rem;
1714
+ }
1715
+ .pwv-modal-body .pwv-modal-message {
1716
+ font-size: 1.25em;
1717
+ margin: 0 0 2rem 0;
1718
+ }
1719
+ .pwv-modal-body .pwv-modal-message p {
1720
+ margin: 0 0 0.25em 0;
1721
+ padding: 0;
1722
+ }
1723
+ .pwv-modal-body .pwv-modal-message h2 {
1724
+ text-transform: uppercase;
1725
+ font-size: 2em;
1726
+ font-weight: 200;
1727
+ opacity: 0.75;
1728
+ margin: 0;
1729
+ padding: 0;
1730
+ }
1731
+ .pwv-modal-body .pwv-form-row {
1732
+ padding: 0 0 1rem 0;
1733
+ display: flex;
1734
+ flex-direction: column;
1735
+ align-items: center;
1736
+ }
1737
+ .pwv-modal-body .pwv-form-field {
1738
+ background-color: var(--pwv-text-contrast-color);
1739
+ position: relative;
1740
+ width: 60%;
1741
+ }
1742
+ .pwv-WebViewer--sm .pwv-modal-body .pwv-form-field {
1743
+ width: calc(100% - 1rem);
1744
+ }
1745
+ .pwv-modal-body .pwv-form-field .pwv-input {
1746
+ position: relative;
1747
+ background-color: transparent;
1748
+ border: none;
1749
+ box-sizing: border-box;
1750
+ width: 100%;
1751
+ height: 2.2rem;
1752
+ line-height: 2rem;
1753
+ padding: 0 0.5rem;
1754
+ text-align: center;
1755
+ z-index: 2;
1756
+ color: var(--pwv-text-color);
1757
+ }
1758
+ .pwv-modal-body .pwv-form-field .pwv-form-error {
1759
+ display: flex;
1760
+ background-color: var(--pwv-ui-color-200);
1761
+ height: 2.2rem;
1762
+ justify-content: center;
1763
+ align-items: center;
1764
+ color: red;
1765
+ }
1766
+ .pwv-modal-body .pwv-form-field .pwv-form-error .pwv-icon {
1767
+ margin-right: 0.5rem;
1768
+ }
1769
+ .pwv-modal-body .pwv-form-field .pwv-form-error .pwv-icon svg {
1770
+ height: 1rem;
1771
+ }
1772
+ .pwv-modal-body .pwv-form-field.pwv-form-has-error .pwv-form-error {
1773
+ display: flex;
1774
+ }
1775
+
1776
+ .pwv-modal-body-noborder {
1777
+ height: 100%;
1778
+ width: 100%;
1779
+ display: flex;
1780
+ align-items: center;
1781
+ justify-content: center;
1782
+ }
1783
+
1784
+ .pwv-AppBar .pwv-Toolbar {
1785
+ margin-bottom: 2px;
1786
+ }
1787
+
1788
+ .pwv-DocumentBar {
1789
+ margin-right: auto;
1790
+ }
1791
+
1792
+ .pwv-WebViewer--sm .pwv-NavigationBar .pwv-ToolbarButton {
1793
+ min-width: 21px;
1794
+ }
1795
+
1796
+ .pwv-WebViewer--sm .pwv-ZoomBar {
1797
+ display: none;
1798
+ }
1799
+
1800
+ .pwv-WebViewer--sm .pwv-ViewBar {
1801
+ display: none;
1802
+ }
1803
+
1804
+ .pwv-AddonsBar {
1805
+ margin-left: auto;
1806
+ }
1807
+
1808
+ .pwv-SearchBar {
1809
+ justify-content: flex-end;
1810
+ }
1811
+ .pwv-WebViewer--md .pwv-SearchBar, .pwv-WebViewer--sm .pwv-SearchBar {
1812
+ margin-top: -44px;
1813
+ }
1814
+
1815
+ .pwv-AnnotationMenu .pwv-DropdownPanel {
1816
+ right: 0;
1817
+ }
1818
+
1819
+ .pwv-search-toolbar-result-index {
1820
+ padding: 0 10px;
1821
+ min-width: 100px;
1822
+ text-align: center;
1823
+ }
1824
+
1825
+ .pwv-navigation-toolbar-pageinput {
1826
+ box-sizing: border-box;
1827
+ padding-left: 0;
1828
+ padding-right: 0;
1829
+ justify-content: space-between;
1830
+ }
1831
+ .pwv-navigation-toolbar-pageinput input {
1832
+ width: 2.2rem;
1833
+ text-align: right;
1834
+ background-color: transparent;
1835
+ color: var(--pwv-brand-color-500);
1836
+ padding-left: 0;
1837
+ padding-right: 0.2rem;
1838
+ }
1839
+ .pwv-navigation-toolbar-pageinput input:hover, .pwv-navigation-toolbar-pageinput input:focus {
1840
+ background-color: #ffffff;
1841
+ }
1842
+ .pwv-navigation-toolbar-pageinput > span {
1843
+ display: block;
1844
+ padding: 3px;
1845
+ }
1846
+ .pwv-navigation-toolbar-pageinput > label {
1847
+ display: block;
1848
+ min-width: 2.2rem;
1849
+ padding-left: 0.2rem;
1850
+ }
1851
+
1852
+ .pwv-Dropdown-zoom {
1853
+ width: 84px;
1854
+ }
1855
+ .pwv-Dropdown-zoom > button {
1856
+ justify-content: flex-end;
1857
+ }
1858
+ .pwv-Dropdown-zoom.pwv-Dropdown .pwv-Dropdown-text {
1859
+ padding: 0 4px 0 4px;
1860
+ }
1861
+
1862
+ .pwv-page-layout-mode .pwv-DropdownPanel {
1863
+ left: auto;
1864
+ right: 0;
1865
+ }
1866
+
1867
+ .pwv-page-layout-mode-item {
1868
+ display: flex;
1869
+ align-items: center;
1870
+ }
1871
+
1872
+ .pwv-page-layout-mode-icon {
1873
+ display: block;
1874
+ height: 1rem;
1875
+ }
1876
+ .pwv-page-layout-mode-icon svg {
1877
+ height: 1rem;
1878
+ }
1879
+
1880
+ .pwv-WebViewer.pwv-WebViewer--sm .pwv-canvas-toolbar .pwv-Toolbar {
1881
+ margin-top: -44px;
1882
+ }
1883
+
1884
+ .pwv-searchbar-input {
1885
+ padding: 0 10px;
1886
+ }
1887
+ .pwv-searchbar-input input {
1888
+ padding: 0 5px;
1889
+ border: none;
1890
+ min-width: 250px;
1891
+ height: 32px;
1892
+ line-height: 32px;
1893
+ }
1894
+ .pwv-WebViewer--sm .pwv-searchbar-input input {
1895
+ min-width: 150px;
1896
+ width: 150px;
1897
+ }
1898
+
1899
+ .pwv-searchoptions .pwv-checkbox-btn {
1900
+ border: none;
1901
+ background-color: transparent;
1902
+ display: flex;
1903
+ align-items: center;
1904
+ box-sizing: border-box;
1905
+ flex-wrap: nowrap;
1906
+ width: 100%;
1907
+ height: 42px;
1908
+ font-size: 1em;
1909
+ padding: 4px;
1910
+ white-space: nowrap;
1911
+ }
1912
+ .pwv-searchoptions .pwv-checkbox-btn .pwv-icon {
1913
+ display: block;
1914
+ height: 18px;
1915
+ margin-right: 6px;
1916
+ }
1917
+ .pwv-searchoptions .pwv-checkbox-btn .pwv-icon svg {
1918
+ height: 18px;
1919
+ fill: var(--pwv-brand-color-500);
1920
+ }
1921
+ .pwv-searchoptions .pwv-DropdownPanel {
1922
+ min-width: 150px;
1923
+ padding: 8px;
1924
+ z-index: 5;
1925
+ }
1926
+ .pwv-searchoptions .pwv-DropdownPanel li {
1927
+ padding: 4px;
1928
+ }
1929
+
1930
+ .pwv-NavigationPanel {
1931
+ display: flex;
1932
+ align-items: stretch;
1933
+ justify-content: stretch;
1934
+ transition: width 0.5s;
1935
+ }
1936
+ .pwv-WebViewer--md .pwv-NavigationPanel {
1937
+ width: 0;
1938
+ padding-left: 2px;
1939
+ }
1940
+ .pwv-WebViewer--lg .pwv-NavigationPanel {
1941
+ width: 0;
1942
+ padding-left: 2px;
1943
+ }
1944
+ .pwv-WebViewer--sm .pwv-NavigationPanel {
1945
+ display: none;
1946
+ border-top: solid 1px var(--pwv-ui-color-200);
1947
+ }
1948
+ .pwv-NavigationPanel--open {
1949
+ transition: width 0.5s;
1950
+ }
1951
+ .pwv-WebViewer--md .pwv-NavigationPanel--open {
1952
+ width: 260px;
1953
+ }
1954
+ .pwv-WebViewer--lg .pwv-NavigationPanel--open {
1955
+ width: 320px;
1956
+ }
1957
+ .pwv-WebViewer--sm .pwv-NavigationPanel--open {
1958
+ display: flex;
1959
+ height: 280px;
1960
+ min-height: 50%;
1961
+ max-height: 50vh;
1962
+ }
1963
+ .pwv-WebViewer--sm .pwv-NavigationPanel--open .pwv-Toolbar {
1964
+ min-height: auto;
1965
+ }
1966
+ .pwv-NavigationPanel__Box {
1967
+ flex: 1;
1968
+ display: flex;
1969
+ flex-direction: column;
1970
+ }
1971
+ .pwv-WebViewer--md .pwv-NavigationPanel__Box {
1972
+ width: 260px;
1973
+ }
1974
+ .pwv-WebViewer--lg .pwv-NavigationPanel__Box {
1975
+ width: 320px;
1976
+ }
1977
+ .pwv-NavigationPanel__Content {
1978
+ margin-top: 2px;
1979
+ background-color: var(--pwv-ui-color-100);
1980
+ display: flex;
1981
+ position: relative;
1982
+ flex: 1;
1983
+ overflow: auto;
1984
+ }
1985
+ .pwv-WebViewer--md .pwv-NavigationPanel__Content {
1986
+ width: 260px;
1987
+ }
1988
+ .pwv-WebViewer--lg .pwv-NavigationPanel__Content {
1989
+ width: 320px;
1990
+ }
1991
+ .pwv-NavigationPanel__Content > div {
1992
+ position: absolute;
1993
+ top: 0;
1994
+ left: 0;
1995
+ right: 0;
1996
+ bottom: 0;
1997
+ }
1998
+ .pwv-WebViewer--sm .pwv-NavigationPanel__Content {
1999
+ margin-top: 0;
2000
+ }
2001
+ .pwv-NavigationPanel__NoItems {
2002
+ text-align: center;
2003
+ margin-top: 2rem;
2004
+ font-size: 1rem;
2005
+ color: var(--pwv-text-muted-color);
2006
+ }
2007
+
2008
+ @keyframes rotate {
2009
+ from {
2010
+ transform: rotate(0);
2011
+ }
2012
+ to {
2013
+ transform: rotate(360deg);
2014
+ }
2015
+ }
2016
+ .pwv-ItemLoader {
2017
+ display: flex;
2018
+ align-items: center;
2019
+ justify-content: center;
2020
+ width: 100%;
2021
+ height: 100%;
2022
+ margin: auto;
2023
+ }
2024
+ .pwv-ItemLoader:before {
2025
+ content: " ";
2026
+ width: 18px;
2027
+ height: 18px;
2028
+ border: 2px solid var(--pwv-ui-color-300);
2029
+ border-top-color: var(--pwv-ui-color-400);
2030
+ border-radius: 50%;
2031
+ animation: rotate 0.9s infinite linear;
2032
+ }
2033
+
2034
+ @keyframes pageRotationFadeInDelay {
2035
+ 0%, 75% {
2036
+ opacity: 0;
2037
+ }
2038
+ 100% {
2039
+ opacity: 1;
2040
+ }
2041
+ }
2042
+ .pwv-thumbnail-navigation ul {
2043
+ list-style: none;
2044
+ margin: 18px 0 30px 0;
2045
+ padding: 0;
2046
+ }
2047
+ .pwv-thumbnail-navigation li {
2048
+ display: flex;
2049
+ flex-direction: column;
2050
+ justify-content: flex-end;
2051
+ align-items: center;
2052
+ height: 260px;
2053
+ position: relative;
2054
+ }
2055
+ .pwv-thumbnail-navigation li .pwv-page-nr {
2056
+ color: var(--pwv-text-color);
2057
+ font-weight: 400;
2058
+ display: flex;
2059
+ flex-direction: column;
2060
+ justify-content: center;
2061
+ align-items: center;
2062
+ padding: 0.75rem;
2063
+ }
2064
+ .pwv-thumbnail-navigation li .pwv-page-placeholder {
2065
+ height: 200px;
2066
+ width: 145px;
2067
+ background-color: #ffffff;
2068
+ display: flex;
2069
+ align-items: center;
2070
+ justify-content: center;
2071
+ }
2072
+ .pwv-thumbnail-navigation li .pwv-page-placeholder,
2073
+ .pwv-thumbnail-navigation li img {
2074
+ max-width: 200px;
2075
+ max-height: 200px;
2076
+ box-sizing: content-box;
2077
+ box-shadow: var(--pwv-drop-shadow-1);
2078
+ transition: box-shadow 0.25s;
2079
+ cursor: pointer;
2080
+ }
2081
+ .pwv-WebViewer--sm .pwv-thumbnail-navigation li .pwv-page-placeholder, .pwv-WebViewer--md .pwv-thumbnail-navigation li .pwv-page-placeholder,
2082
+ .pwv-WebViewer--sm .pwv-thumbnail-navigation li img,
2083
+ .pwv-WebViewer--md .pwv-thumbnail-navigation li img {
2084
+ max-width: 180px;
2085
+ max-height: 180px;
2086
+ }
2087
+ .pwv-thumbnail-navigation li .pwv-page-placeholder:hover,
2088
+ .pwv-thumbnail-navigation li img:hover {
2089
+ transition: box-shadow 0.25s;
2090
+ box-shadow: var(--pwv-drop-shadow-2);
2091
+ }
2092
+ .pwv-thumbnail-navigation li.pwv-selected .pwv-page-placeholder,
2093
+ .pwv-thumbnail-navigation li.pwv-selected img {
2094
+ border: 2px solid var(--pwv-brand-color-500);
2095
+ }
2096
+ .pwv-thumbnail-navigation li .pwv-page-rotation {
2097
+ position: absolute;
2098
+ bottom: 2rem;
2099
+ opacity: 0;
2100
+ transition: opacity 0.25s;
2101
+ background-color: var(--pwv-ui-color-100);
2102
+ box-shadow: var(--pwv-drop-shadow-2);
2103
+ }
2104
+ .pwv-thumbnail-navigation li .pwv-page-rotation button {
2105
+ background-color: transparent;
2106
+ border: none;
2107
+ outline: none;
2108
+ color: var(--pwv-text-color);
2109
+ height: 40px;
2110
+ min-height: 40px;
2111
+ }
2112
+ .pwv-thumbnail-navigation li .pwv-page-rotation button:hover {
2113
+ color: var(--pwv-text-color);
2114
+ }
2115
+ .pwv-thumbnail-navigation li .pwv-page-rotation button svg {
2116
+ height: 1rem;
2117
+ }
2118
+ .pwv-thumbnail-navigation li:hover .pwv-page-rotation {
2119
+ animation: pageRotationFadeInDelay 0.5s ease-in;
2120
+ opacity: 1;
2121
+ }
2122
+ .pwv-thumbnail-navigation-img-container {
2123
+ display: flex;
2124
+ flex-direction: column;
2125
+ justify-content: center;
2126
+ align-items: center;
2127
+ height: 200px;
2128
+ }
2129
+
2130
+ .pwv-outline-navigation {
2131
+ font-size: 1rem;
2132
+ font-weight: 400;
2133
+ padding: 1rem;
2134
+ }
2135
+ .pwv-WebViewer--sm .pwv-outline-navigation, .pwv-WebViewer--md .pwv-outline-navigation {
2136
+ font-size: 0.9rem;
2137
+ }
2138
+ .pwv-outline-navigation ul {
2139
+ list-style: none;
2140
+ margin: 0;
2141
+ padding: 0;
2142
+ }
2143
+ .pwv-outline-navigation ul ul {
2144
+ padding-left: 14px;
2145
+ }
2146
+ .pwv-outline-navigation li {
2147
+ margin: 0;
2148
+ padding: 0;
2149
+ }
2150
+ .pwv-outline-navigation li > div {
2151
+ display: flex;
2152
+ padding: 8px 2px;
2153
+ }
2154
+
2155
+ .pwv-outline-tree-indent,
2156
+ .pwv-outline-tree-btn-expand,
2157
+ .pwv-outline-tree-btn-collapse {
2158
+ display: block;
2159
+ flex-shrink: 0;
2160
+ text-align: center;
2161
+ height: 16px;
2162
+ width: 18px;
2163
+ box-sizing: border-box;
2164
+ padding: 0;
2165
+ margin: 0 2px 0 0;
2166
+ border: none;
2167
+ }
2168
+
2169
+ .pwv-outline-tree-btn-expand,
2170
+ .pwv-outline-tree-btn-collapse {
2171
+ cursor: pointer;
2172
+ }
2173
+ .pwv-outline-tree-btn-expand .pwv-icon,
2174
+ .pwv-outline-tree-btn-collapse .pwv-icon {
2175
+ height: 12px;
2176
+ }
2177
+ .pwv-outline-tree-btn-expand .pwv-icon svg,
2178
+ .pwv-outline-tree-btn-collapse .pwv-icon svg {
2179
+ height: 12px;
2180
+ }
2181
+
2182
+ .pwv-outline-tree-btn-collapse .pwv-icon svg {
2183
+ fill: var(--pwv-brand-color-500);
2184
+ }
2185
+
2186
+ .pwv-outline-tree-lnk {
2187
+ display: block;
2188
+ cursor: pointer;
2189
+ transition: 0.15s;
2190
+ }
2191
+ .pwv-outline-tree-lnk:hover {
2192
+ transition: 0.15s;
2193
+ color: var(--pwv-brand-color-500);
2194
+ }
2195
+
2196
+ .pwv-annotation-navigation {
2197
+ padding: 1rem;
2198
+ margin: 0;
2199
+ }
2200
+ .pwv-annotation-navigation ul {
2201
+ list-style: none;
2202
+ padding: 0;
2203
+ margin: 0 0 24px 0;
2204
+ }
2205
+ .pwv-annotation-navigation h4 {
2206
+ margin: 12px 0 8px 4px;
2207
+ }
2208
+
2209
+ .pwv-annotation-navigation-item {
2210
+ position: relative;
2211
+ margin: 10px 0;
2212
+ padding: 6px 0 6px 0;
2213
+ background-color: #ffffff;
2214
+ border: solid 2px transparent;
2215
+ transition: box-shadow 0.3s;
2216
+ cursor: pointer;
2217
+ box-shadow: var(--pwv-drop-shadow-1);
2218
+ }
2219
+ .pwv-annotation-navigation-item.pwv-selected {
2220
+ border: solid 2px var(--pwv-brand-color-500);
2221
+ }
2222
+ .pwv-annotation-navigation-item.pwv-deleted {
2223
+ opacity: 0.5;
2224
+ }
2225
+ .pwv-annotation-navigation-item:hover {
2226
+ transition: box-shadow 0.3s;
2227
+ box-shadow: var(--pwv-drop-shadow-2);
2228
+ }
2229
+ .pwv-annotation-navigation-item > div {
2230
+ margin: 8px 10px;
2231
+ }
2232
+ .pwv-annotation-navigation-item > div:first-child {
2233
+ display: flex;
2234
+ align-items: center;
2235
+ }
2236
+ .pwv-annotation-navigation-item > div:first-child .pwv-icon {
2237
+ height: 18px;
2238
+ width: 24px;
2239
+ margin-right: 4px;
2240
+ }
2241
+ .pwv-annotation-navigation-item > div:first-child .pwv-icon svg {
2242
+ height: 18px;
2243
+ }
2244
+ .pwv-annotation-navigation-item time {
2245
+ font-style: italic;
2246
+ font-size: 0.9rem;
2247
+ display: inline-block;
2248
+ }
2249
+ .pwv-annotation-navigation-item .pwv-author {
2250
+ font-style: italic;
2251
+ font-size: 0.9rem;
2252
+ font-weight: 500;
2253
+ display: inline-block;
2254
+ margin-right: 4px;
2255
+ }
2256
+ .pwv-annotation-navigation-item .pwv-author:after {
2257
+ content: ",";
2258
+ }
2259
+ .pwv-annotation-navigation-item p,
2260
+ .pwv-annotation-navigation-item h5 {
2261
+ padding: 0;
2262
+ margin: 0 0 4px 0;
2263
+ font-size: 16px;
2264
+ }
2265
+ .pwv-annotation-navigation-item .pwv-icon {
2266
+ height: 18px;
2267
+ }
2268
+ .pwv-annotation-navigation-item .pwv-icon svg {
2269
+ height: 18px;
2270
+ }
2271
+ .pwv-annotation-navigation-item .pwv-icon.pwv-locked-icon {
2272
+ position: absolute;
2273
+ bottom: 4px;
2274
+ right: 4px;
2275
+ }
2276
+ .pwv-annotation-navigation-item .pwv-icon.pwv-locked-icon svg {
2277
+ fill: var(--pwv-text-muted-color);
2278
+ }
2279
+ .pwv-annotation-navigation-item .pwv-ms-custom-history-list {
2280
+ border-top: solid 1px var(--pwv-text-color);
2281
+ }
2282
+ .pwv-annotation-navigation-item .pwv-ms-custom-history-list ul {
2283
+ list-style: none;
2284
+ margin: 0;
2285
+ padding: 0;
2286
+ }
2287
+ .pwv-annotation-navigation-item .pwv-ms-custom-history-list li {
2288
+ margin: 12px 0;
2289
+ }
2290
+ .pwv-annotation-navigation-item .pwv-ms-custom-history-list li > div:first-child {
2291
+ display: flex;
2292
+ color: var(--pwv-text-muted-color);
2293
+ }
2294
+ .pwv-annotation-navigation-item .pwv-ms-custom-history-list li .pwv-icon {
2295
+ height: 13px;
2296
+ width: 17px;
2297
+ margin-right: 6px;
2298
+ }
2299
+ .pwv-annotation-navigation-item .pwv-ms-custom-history-list li .pwv-icon svg {
2300
+ width: 17px;
2301
+ height: 13px;
2302
+ }
2303
+ .pwv-annotation-navigation-item .pwv-ms-custom-history-content {
2304
+ margin-left: 23px;
2305
+ }
2306
+
2307
+ .pwv-overflow-ellipsis {
2308
+ padding-bottom: 5px;
2309
+ display: block;
2310
+ overflow: hidden;
2311
+ white-space: nowrap;
2312
+ text-overflow: ellipsis;
2313
+ }
2314
+
2315
+ .pwv-annotationbar {
2316
+ display: flex;
2317
+ align-content: flex-start;
2318
+ flex-grow: 0;
2319
+ background-color: var(--pwv-ui-color-100);
2320
+ color: var(--pwv-text-color);
2321
+ }
2322
+ .pwv-annotationbar-left .pwv-annotationbar {
2323
+ order: -1;
2324
+ margin-right: 2px;
2325
+ flex-direction: column;
2326
+ width: 50px;
2327
+ padding-top: 10px;
2328
+ }
2329
+ .pwv-annotationbar-right .pwv-annotationbar {
2330
+ margin-left: 2px;
2331
+ flex-direction: column;
2332
+ width: 50px;
2333
+ padding-top: 10px;
2334
+ }
2335
+ .pwv-annotationbar-top .pwv-annotationbar {
2336
+ margin-bottom: 2px;
2337
+ height: 50px;
2338
+ }
2339
+ .pwv-annotationbar-bottom .pwv-annotationbar {
2340
+ order: -1;
2341
+ margin-top: 2px;
2342
+ height: 50px;
2343
+ }
2344
+
2345
+ .pwv-devicetype-mobile .pwv-annotationbar {
2346
+ flex-wrap: wrap;
2347
+ padding-right: 50px;
2348
+ height: auto !important;
2349
+ }
2350
+
2351
+ .pwv-mobile-hide-annotationbar .pwv-annotationbar {
2352
+ display: none;
2353
+ }
2354
+
2355
+ #outerContainer {
2356
+ width: 100%;
2357
+ height: 100%;
2358
+ position: relative;
2359
+ }
2360
+
2361
+ #printContainer {
2362
+ display: none;
2363
+ }
2364
+
2365
+ @media print {
2366
+ /* General rules for printing. */
2367
+ body {
2368
+ height: 200px;
2369
+ }
2370
+ .page {
2371
+ float: left;
2372
+ display: none;
2373
+ border: 200px;
2374
+ box-shadow: none;
2375
+ background-clip: content-box;
2376
+ background-color: rgb(255, 255, 255);
2377
+ }
2378
+ .page[data-loaded] {
2379
+ display: block;
2380
+ }
2381
+ /* Rules for browsers that support PDF.js printing */
2382
+ body[data-pdfwebviewerprinting] #outerContainer {
2383
+ display: none;
2384
+ }
2385
+ body[data-pdfwebviewerprinting] #printContainer {
2386
+ display: block;
2387
+ }
2388
+ #printContainer {
2389
+ height: auto;
2390
+ }
2391
+ /* wrapper around (scaled) print canvas elements */
2392
+ #printContainer > div {
2393
+ position: relative;
2394
+ top: 0;
2395
+ left: 0;
2396
+ width: 1px;
2397
+ height: 1px;
2398
+ overflow: visible;
2399
+ page-break-after: always;
2400
+ page-break-inside: avoid;
2401
+ }
2402
+ #printContainer canvas,
2403
+ #printContainer img {
2404
+ direction: ltr;
2405
+ display: block;
2406
+ }
2407
+ }