@vitrosoftware/common-ui-ts 1.1.76 → 1.1.78

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 (273) hide show
  1. package/css/common.css +2 -1
  2. package/css/std/controls/action-handler/action-handler.css +1 -1
  3. package/css/std/controls/bim-viewer/annotation.css +85 -0
  4. package/css/std/controls/bim-viewer/bim-viewer-index.css +1100 -0
  5. package/css/std/controls/bim-viewer/bim-viewer.css +53 -0
  6. package/css/std/controls/bim-viewer/comparison-popup.css +92 -0
  7. package/css/std/controls/bim-viewer/context-menu.css +54 -0
  8. package/css/std/controls/bim-viewer/dialog.css +50 -0
  9. package/css/std/controls/bim-viewer/nav-cube.css +18 -0
  10. package/css/std/controls/bim-viewer/prop-inspector.css +86 -0
  11. package/css/std/controls/bim-viewer/section-planes.css +8 -0
  12. package/css/std/controls/bim-viewer/sidebar.css +226 -0
  13. package/css/std/controls/bim-viewer/storey-views.css +57 -0
  14. package/css/std/controls/bim-viewer/style.css +56 -0
  15. package/css/std/controls/bim-viewer/toolbar.css +208 -0
  16. package/css/std/controls/bim-viewer/treeview.css +103 -0
  17. package/css/std/controls/file-version-select/file-version-select.css +160 -0
  18. package/css/std/controls/lookup-picker/lookup-picker-selected-item.css +0 -1
  19. package/css/std/controls/lookup-picker/lookup-picker.css +1 -1
  20. package/css/std/controls/pdf-viewer/custom.css +38 -19
  21. package/css/std/controls/pdf-viewer/pdf-viewer-index.css +5503 -0
  22. package/css/std/controls/pdf-viewer/pdf-viewer.css +12 -11
  23. package/css/std/controls/pdf-viewer/viewer.css +188 -158
  24. package/css/std/controls/tooltip/tooltip.css +2 -1
  25. package/css/third-party/jquery-growl/jquery.growl.css +96 -0
  26. package/css/third-party/uikit/uikit.css +12083 -0
  27. package/dist/index.css +218 -57
  28. package/dist/index.js +522 -279
  29. package/dist/index.js.map +1 -1
  30. package/dist/src/constants/Control.d.ts +11 -0
  31. package/dist/src/constants/Ctrl.d.ts +30 -0
  32. package/dist/src/constants/Event.d.ts +13 -0
  33. package/dist/src/constants/Factory.d.ts +3 -0
  34. package/dist/src/constants/KeyCode.d.ts +3 -0
  35. package/dist/src/constants/Placement.d.ts +7 -0
  36. package/dist/src/constants/Unit.d.ts +3 -0
  37. package/dist/src/controls/ActionHandler/ActionHandler.d.ts +31 -0
  38. package/dist/src/controls/ActionHandler/ActionHandlerConstants.d.ts +32 -0
  39. package/dist/src/controls/ActionHandler/ActionInfo.d.ts +12 -0
  40. package/dist/src/controls/ActionHandler/ActionInfoItem.d.ts +13 -0
  41. package/dist/src/controls/ActionHandler/UpdatingPopover.d.ts +2 -0
  42. package/dist/src/controls/Activity/Activity.d.ts +9 -0
  43. package/dist/src/controls/ActivityItem/ActivityItem.d.ts +16 -0
  44. package/dist/src/controls/ActivityItem/ActivityMessage.d.ts +6 -0
  45. package/dist/src/controls/Alert/Alert.d.ts +19 -0
  46. package/dist/src/controls/Alert/AlertConstants.d.ts +5 -0
  47. package/dist/src/controls/Avatar/Avatar.d.ts +8 -0
  48. package/dist/src/controls/BimViewer/BimViewer.d.ts +6 -0
  49. package/dist/src/controls/BimViewer/BimViewerContext.d.ts +20 -0
  50. package/dist/src/controls/BimViewer/Viewer.d.ts +6 -0
  51. package/dist/src/controls/Breadcrumbs/Breadcrumbs.d.ts +13 -0
  52. package/dist/src/controls/Breadcrumbs/Item.d.ts +10 -0
  53. package/dist/src/controls/Button/Button.d.ts +14 -0
  54. package/dist/src/controls/Checkbox/Checkbox.d.ts +11 -0
  55. package/dist/src/controls/CommandMenu/CommandMenu.d.ts +6 -0
  56. package/dist/src/controls/CommandMenu/CommandMenuButton.d.ts +13 -0
  57. package/dist/src/controls/CommandMenu/CommandMenuDropdownButton.d.ts +18 -0
  58. package/dist/src/controls/CommandMenu/CommandMenuItemHeader.d.ts +11 -0
  59. package/dist/src/controls/CommandMenu/CommandMenuLookupPicker.d.ts +32 -0
  60. package/dist/src/controls/CommandMenu/CommandMenuSubItem.d.ts +13 -0
  61. package/dist/src/controls/ComponentLoader/ComponentLoader.d.ts +8 -0
  62. package/dist/src/controls/ComponentLoader/ComponentLoaderContextImpl.d.ts +11 -0
  63. package/dist/src/controls/ControlGroup/ControlGroup.d.ts +7 -0
  64. package/dist/src/controls/Criterion/ConditionSelect.d.ts +9 -0
  65. package/dist/src/controls/Criterion/Criterion.d.ts +23 -0
  66. package/dist/src/controls/DatePicker/DatePicker.d.ts +29 -0
  67. package/dist/src/controls/DatePicker/DatePickerConstants.d.ts +12 -0
  68. package/dist/src/controls/Dialog/Dialog.d.ts +23 -0
  69. package/dist/src/controls/Dialog/DialogButton.d.ts +8 -0
  70. package/dist/src/controls/Dialog/DialogCloseButton.d.ts +8 -0
  71. package/dist/src/controls/Dialog/DialogComponent.d.ts +8 -0
  72. package/dist/src/controls/Dialog/DialogConstants.d.ts +5 -0
  73. package/dist/src/controls/Dialog/DialogContent.d.ts +7 -0
  74. package/dist/src/controls/Dialog/DialogFooter.d.ts +11 -0
  75. package/dist/src/controls/Dialog/DialogHeader.d.ts +8 -0
  76. package/dist/src/controls/DropdownButton/DropdownButton.d.ts +13 -0
  77. package/dist/src/controls/FieldIterator/FieldIterator.d.ts +24 -0
  78. package/dist/src/controls/FileVersionSelect/FileVersionItem.d.ts +6 -0
  79. package/dist/src/controls/FileVersionSelect/FileVersionSelect.d.ts +12 -0
  80. package/dist/src/controls/FileVersionSelect/Item.d.ts +10 -0
  81. package/dist/src/controls/Icon/Icon.d.ts +11 -0
  82. package/dist/src/controls/ImagePicker/ImagePicker.d.ts +16 -0
  83. package/dist/src/controls/ImagePicker/ImagePickerConstants.d.ts +8 -0
  84. package/dist/src/controls/Input/Input.d.ts +32 -0
  85. package/dist/src/controls/Input/InputConstants.d.ts +4 -0
  86. package/dist/src/controls/IssueTile/IssueTile.d.ts +26 -0
  87. package/dist/src/controls/IssueTile/IssueTileConstants.d.ts +3 -0
  88. package/dist/src/controls/IssueTile/IssueTileFooter.d.ts +8 -0
  89. package/dist/src/controls/IssueTile/IssueTileHeader.d.ts +18 -0
  90. package/dist/src/controls/Label/Label.d.ts +9 -0
  91. package/dist/src/controls/Label/LabelConstants.d.ts +3 -0
  92. package/dist/src/controls/Login/Login.d.ts +16 -0
  93. package/dist/src/controls/Login/LoginConstants.d.ts +17 -0
  94. package/dist/src/controls/Login/LoginFooter.d.ts +10 -0
  95. package/dist/src/controls/LookupPicker/LookupPickerConstants.d.ts +3 -0
  96. package/dist/src/controls/LookupPicker/SelectedValueList.d.ts +14 -0
  97. package/dist/src/controls/LookupPicker/ValueList.d.ts +22 -0
  98. package/dist/src/controls/LookupPicker/ValueListItem.d.ts +11 -0
  99. package/dist/src/controls/MessageInput/MessageInput.d.ts +12 -0
  100. package/dist/src/controls/MessageInput/MessageInputConstants.d.ts +3 -0
  101. package/dist/src/controls/MicroFrontend/MicroFrontend.d.ts +8 -0
  102. package/dist/src/controls/MicroFrontend/MicroFrontendState.d.ts +8 -0
  103. package/dist/src/controls/MicroFrontend/renderMicrofrontend.d.ts +2 -0
  104. package/dist/src/controls/NumberInput/NumberInput.d.ts +30 -0
  105. package/dist/src/controls/NumberInput/NumberInputConstants.d.ts +12 -0
  106. package/dist/src/controls/PasswordInput/PasswordInput.d.ts +31 -0
  107. package/dist/src/controls/PasswordInput/PasswordInputConstants.d.ts +4 -0
  108. package/dist/src/controls/PdfViewer/PdfViewerContext.d.ts +7 -2
  109. package/dist/src/controls/RouteItem/RouteItem.d.ts +17 -0
  110. package/dist/src/controls/ScrollBar/ScrollBar.d.ts +9 -0
  111. package/dist/src/controls/Search/CheckboxList.d.ts +12 -0
  112. package/dist/src/controls/Search/Filter.d.ts +21 -0
  113. package/dist/src/controls/Search/Input.d.ts +21 -0
  114. package/dist/src/controls/Search/Search.d.ts +29 -0
  115. package/dist/src/controls/Search/SearchConstants.d.ts +4 -0
  116. package/dist/src/controls/Sidebar/Item.d.ts +9 -0
  117. package/dist/src/controls/Sidebar/LinkItem.d.ts +17 -0
  118. package/dist/src/controls/Sidebar/Section.d.ts +11 -0
  119. package/dist/src/controls/Sidebar/SectionList.d.ts +10 -0
  120. package/dist/src/controls/Sidebar/Sidebar.d.ts +14 -0
  121. package/dist/src/controls/Sidebar/SidebarConstants.d.ts +4 -0
  122. package/dist/src/controls/Splitter/Splitter.d.ts +18 -0
  123. package/dist/src/controls/Splitter/SplitterConstants.d.ts +9 -0
  124. package/dist/src/controls/TabGroup/OverflowButton.d.ts +7 -0
  125. package/dist/src/controls/TabGroup/Tab.d.ts +10 -0
  126. package/dist/src/controls/TabGroup/TabGroup.d.ts +10 -0
  127. package/dist/src/controls/TabGroup/TabGroupComponent.d.ts +9 -0
  128. package/dist/src/controls/TabGroup/TabGroupConstants.d.ts +4 -0
  129. package/dist/src/controls/TabGroup/TabGroupHeader.d.ts +9 -0
  130. package/dist/src/controls/TableView/TableView.d.ts +26 -0
  131. package/dist/src/controls/TableView/TableViewContext.d.ts +1 -0
  132. package/dist/src/controls/TableView/TreeGrid.d.ts +17 -0
  133. package/dist/src/controls/TableView/TreeGridTableViewContextImpl.d.ts +92 -0
  134. package/dist/src/controls/TaskTile/TaskTile.d.ts +18 -0
  135. package/dist/src/controls/TelerikUploader/TelerikUploader.d.ts +11 -0
  136. package/dist/src/controls/TelerikUploader/TelerikUploaderConstants.d.ts +16 -0
  137. package/dist/src/controls/TelerikUploader/TelerikUploaderContextImpl.d.ts +39 -0
  138. package/dist/src/controls/TimePicker/TimePicker.d.ts +23 -0
  139. package/dist/src/controls/TimePicker/TimePickerConstants.d.ts +12 -0
  140. package/dist/src/controls/Tooltip/Tooltip.d.ts +10 -0
  141. package/dist/src/controls/Tooltip/TooltipConstants.d.ts +6 -0
  142. package/dist/src/controls/TopLevelMenu/LinkItem.d.ts +9 -0
  143. package/dist/src/controls/TopLevelMenu/TopLevelMenu.d.ts +9 -0
  144. package/dist/src/controls/TreeView/JsTreeViewContextImpl.d.ts +35 -0
  145. package/dist/src/controls/TreeView/TreeView.d.ts +13 -0
  146. package/dist/src/controls/TreeView/TreeViewConfig.d.ts +34 -0
  147. package/dist/src/controls/TreeView/TreeViewConstants.d.ts +52 -0
  148. package/dist/src/controls/UserLookupPicker/UserLookupPicker.d.ts +40 -0
  149. package/dist/src/controls/UserProfile/UserProfile.d.ts +12 -0
  150. package/dist/src/controls/UserProfile/UserProfileMenuItem.d.ts +11 -0
  151. package/dist/src/controls/View/View.d.ts +7 -0
  152. package/dist/src/controls/ViewPart/ViewPart.d.ts +10 -0
  153. package/dist/src/exceptions/impl/AbortExceptionImpl.d.ts +3 -0
  154. package/dist/{index.d.ts → src/index.d.ts} +8 -0
  155. package/lib/jquery-dialogextend/jquery.dialogextend.min.js +2 -0
  156. package/lib/jquery-growl/jquery.growl.js +315 -0
  157. package/lib/jszip/jszip-utils.min.js +1 -0
  158. package/lib/jszip/jszip.min.js +13 -0
  159. package/lib/third-party.js +1379 -15
  160. package/lib/uikit/uikit-icons.min.js +1 -0
  161. package/lib/uikit/uikit.min.js +1 -0
  162. package/lib/webL10n/l10n.js +1028 -0
  163. package/lib/xeokit/VitroFastNavPlugin.js +920 -0
  164. package/lib/xeokit/VitroTreeViewPlugin.js +650 -0
  165. package/lib/xeokit/xeokit-sdk.es.js +188506 -0
  166. package/package.json +5 -3
  167. package/src/controls/BimViewer/js/bim-viewer.js +2697 -0
  168. package/src/controls/BimViewer/js/init-viewer-page.js +24 -0
  169. package/src/controls/PdfViewer/js/init-viewer-page.js +1 -2
  170. package/src/controls/PdfViewer/js/pdf-viewer.js +60 -56
  171. package/css/std/controls/pdf-viewer/img/annotation-check.svg +0 -11
  172. package/css/std/controls/pdf-viewer/img/annotation-comment.svg +0 -16
  173. package/css/std/controls/pdf-viewer/img/annotation-help.svg +0 -26
  174. package/css/std/controls/pdf-viewer/img/annotation-insert.svg +0 -10
  175. package/css/std/controls/pdf-viewer/img/annotation-key.svg +0 -11
  176. package/css/std/controls/pdf-viewer/img/annotation-newparagraph.svg +0 -11
  177. package/css/std/controls/pdf-viewer/img/annotation-noicon.svg +0 -7
  178. package/css/std/controls/pdf-viewer/img/annotation-note.svg +0 -42
  179. package/css/std/controls/pdf-viewer/img/annotation-paperclip.svg +0 -6
  180. package/css/std/controls/pdf-viewer/img/annotation-paragraph.svg +0 -16
  181. package/css/std/controls/pdf-viewer/img/annotation-pushpin.svg +0 -7
  182. package/css/std/controls/pdf-viewer/img/close-compare-viewer.png +0 -0
  183. package/css/std/controls/pdf-viewer/img/close-compare-viewer_active.png +0 -0
  184. package/css/std/controls/pdf-viewer/img/compare-overlay.png +0 -0
  185. package/css/std/controls/pdf-viewer/img/compare-side-by-side.png +0 -0
  186. package/css/std/controls/pdf-viewer/img/cursor-editorFreeText.svg +0 -3
  187. package/css/std/controls/pdf-viewer/img/cursor-editorInk.svg +0 -4
  188. package/css/std/controls/pdf-viewer/img/delete-active.png +0 -0
  189. package/css/std/controls/pdf-viewer/img/delete.png +0 -0
  190. package/css/std/controls/pdf-viewer/img/dlg-compare-ico.png +0 -0
  191. package/css/std/controls/pdf-viewer/img/do-compare.png +0 -0
  192. package/css/std/controls/pdf-viewer/img/draw-annotation-arrow.png +0 -0
  193. package/css/std/controls/pdf-viewer/img/draw-annotation-cloud.png +0 -0
  194. package/css/std/controls/pdf-viewer/img/draw-annotation-ellipse.png +0 -0
  195. package/css/std/controls/pdf-viewer/img/draw-annotation-line.png +0 -0
  196. package/css/std/controls/pdf-viewer/img/draw-annotation-polygon.png +0 -0
  197. package/css/std/controls/pdf-viewer/img/draw-annotation-rect.png +0 -0
  198. package/css/std/controls/pdf-viewer/img/draw-annotation-toolbar-arrow.png +0 -0
  199. package/css/std/controls/pdf-viewer/img/draw-annotation-toolbar-cloud.png +0 -0
  200. package/css/std/controls/pdf-viewer/img/draw-annotation-toolbar-ellipse.png +0 -0
  201. package/css/std/controls/pdf-viewer/img/draw-annotation-toolbar-line.png +0 -0
  202. package/css/std/controls/pdf-viewer/img/draw-annotation-toolbar-polygon.png +0 -0
  203. package/css/std/controls/pdf-viewer/img/draw-annotation-toolbar-rect.png +0 -0
  204. package/css/std/controls/pdf-viewer/img/draw-annotation-toolbar.png +0 -0
  205. package/css/std/controls/pdf-viewer/img/draw-annotation.png +0 -0
  206. package/css/std/controls/pdf-viewer/img/dropdown-arrow.png +0 -0
  207. package/css/std/controls/pdf-viewer/img/findbarButton-next.svg +0 -3
  208. package/css/std/controls/pdf-viewer/img/findbarButton-previous.svg +0 -3
  209. package/css/std/controls/pdf-viewer/img/finish-align.png +0 -0
  210. package/css/std/controls/pdf-viewer/img/finish-align_active.png +0 -0
  211. package/css/std/controls/pdf-viewer/img/fit-to-view.png +0 -0
  212. package/css/std/controls/pdf-viewer/img/fit-to-view_active.png +0 -0
  213. package/css/std/controls/pdf-viewer/img/gv-toolbarButton-download.svg +0 -3
  214. package/css/std/controls/pdf-viewer/img/gv-toolbarButton-openinapp.svg +0 -11
  215. package/css/std/controls/pdf-viewer/img/hide-annotation.png +0 -0
  216. package/css/std/controls/pdf-viewer/img/hide-colors.png +0 -0
  217. package/css/std/controls/pdf-viewer/img/hide-colors_active.png +0 -0
  218. package/css/std/controls/pdf-viewer/img/layer-unvisible.png +0 -0
  219. package/css/std/controls/pdf-viewer/img/layer-visible.png +0 -0
  220. package/css/std/controls/pdf-viewer/img/loading-dark.svg +0 -24
  221. package/css/std/controls/pdf-viewer/img/loading-icon.gif +0 -0
  222. package/css/std/controls/pdf-viewer/img/loading.svg +0 -1
  223. package/css/std/controls/pdf-viewer/img/overlay.png +0 -0
  224. package/css/std/controls/pdf-viewer/img/overlay_active.png +0 -0
  225. package/css/std/controls/pdf-viewer/img/pan.png +0 -0
  226. package/css/std/controls/pdf-viewer/img/pan_active.png +0 -0
  227. package/css/std/controls/pdf-viewer/img/panel-visibility.png +0 -0
  228. package/css/std/controls/pdf-viewer/img/panel-visibility_active.png +0 -0
  229. package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-documentProperties.svg +0 -3
  230. package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-firstPage.svg +0 -3
  231. package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-handTool.svg +0 -3
  232. package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-lastPage.svg +0 -3
  233. package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-rotateCcw.svg +0 -3
  234. package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-rotateCw.svg +0 -3
  235. package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-scrollHorizontal.svg +0 -3
  236. package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-scrollPage.svg +0 -3
  237. package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-scrollVertical.svg +0 -3
  238. package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-scrollWrapped.svg +0 -3
  239. package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-selectTool.svg +0 -3
  240. package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-spreadEven.svg +0 -3
  241. package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-spreadNone.svg +0 -3
  242. package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-spreadOdd.svg +0 -3
  243. package/css/std/controls/pdf-viewer/img/shadow.png +0 -0
  244. package/css/std/controls/pdf-viewer/img/show-annotation.png +0 -0
  245. package/css/std/controls/pdf-viewer/img/side-by-side.png +0 -0
  246. package/css/std/controls/pdf-viewer/img/side-by-side_active.png +0 -0
  247. package/css/std/controls/pdf-viewer/img/sidebar-notes-toggle.png +0 -0
  248. package/css/std/controls/pdf-viewer/img/spinner.gif +0 -0
  249. package/css/std/controls/pdf-viewer/img/toolbarButton-bookmark.svg +0 -3
  250. package/css/std/controls/pdf-viewer/img/toolbarButton-currentOutlineItem.svg +0 -3
  251. package/css/std/controls/pdf-viewer/img/toolbarButton-download.svg +0 -4
  252. package/css/std/controls/pdf-viewer/img/toolbarButton-editorFreeText.svg +0 -3
  253. package/css/std/controls/pdf-viewer/img/toolbarButton-editorInk.svg +0 -4
  254. package/css/std/controls/pdf-viewer/img/toolbarButton-editorStamp.svg +0 -8
  255. package/css/std/controls/pdf-viewer/img/toolbarButton-menuArrow.svg +0 -3
  256. package/css/std/controls/pdf-viewer/img/toolbarButton-openFile.svg +0 -3
  257. package/css/std/controls/pdf-viewer/img/toolbarButton-pageDown.svg +0 -3
  258. package/css/std/controls/pdf-viewer/img/toolbarButton-pageUp.svg +0 -3
  259. package/css/std/controls/pdf-viewer/img/toolbarButton-presentationMode.svg +0 -3
  260. package/css/std/controls/pdf-viewer/img/toolbarButton-print.svg +0 -3
  261. package/css/std/controls/pdf-viewer/img/toolbarButton-search.svg +0 -3
  262. package/css/std/controls/pdf-viewer/img/toolbarButton-secondaryToolbarToggle.svg +0 -3
  263. package/css/std/controls/pdf-viewer/img/toolbarButton-sidebarToggle.svg +0 -3
  264. package/css/std/controls/pdf-viewer/img/toolbarButton-viewAttachments.svg +0 -3
  265. package/css/std/controls/pdf-viewer/img/toolbarButton-viewLayers.svg +0 -3
  266. package/css/std/controls/pdf-viewer/img/toolbarButton-viewOutline.svg +0 -3
  267. package/css/std/controls/pdf-viewer/img/toolbarButton-viewThumbnail.svg +0 -3
  268. package/css/std/controls/pdf-viewer/img/toolbarButton-zoomIn.svg +0 -3
  269. package/css/std/controls/pdf-viewer/img/toolbarButton-zoomOut.svg +0 -3
  270. package/css/std/controls/pdf-viewer/img/treeitem-collapsed.svg +0 -1
  271. package/css/std/controls/pdf-viewer/img/treeitem-expanded.svg +0 -1
  272. package/css/std/controls/pdf-viewer/img/zoom.png +0 -0
  273. package/css/std/controls/pdf-viewer/img/zoom_active.png +0 -0
@@ -0,0 +1,208 @@
1
+ .toolbar {
2
+ height: 50px;
3
+ background-color: #474747;
4
+ background-image: linear-gradient(hsla(0,0%,32%,.99), hsla(0,0%,27%,.95));
5
+ box-shadow: inset 0 1px 1px hsl(0deg 0% 0% / 15%), inset 0 -1px 0 hsl(0deg 0% 100% / 5%), 0 1px 0 hsl(0deg 0% 0% / 15%), 0 1px 1px hsl(0deg 0% 0% / 10%);
6
+ position: relative;
7
+ z-index: 99000005;
8
+ }
9
+
10
+ input,
11
+ button,
12
+ select {
13
+ font: message-box;
14
+ outline: none;
15
+ }
16
+
17
+ .toolbarButton,
18
+ .secondaryToolbarButton,
19
+ .overlayButton {
20
+ border: 0 none;
21
+ background: none;
22
+ width: 42px;
23
+ height: 42px;
24
+ }
25
+
26
+ .toolbarButton,
27
+ .dropdownToolbarButton,
28
+ .secondaryToolbarButton,
29
+ .overlayButton {
30
+ min-width: 16px;
31
+ padding: 6px 6px;
32
+ border: 1px solid transparent;
33
+ border-radius: 2px;
34
+ color: hsla(0,0%,100%,.8);
35
+ font-size: 12px;
36
+ line-height: 14px;
37
+ -webkit-user-select: none;
38
+ -moz-user-select: none;
39
+ -ms-user-select: none;
40
+ user-select: none;
41
+ cursor: default;
42
+ transition-property: background-color, border-color, box-shadow;
43
+ transition-duration: 150ms;
44
+ transition-timing-function: ease;
45
+ }
46
+
47
+ .toolbarButton,
48
+ .overlayButton,
49
+ .dropdownToolbarButton {
50
+ margin: 4px 4px 4px 0;
51
+ }
52
+
53
+ .splitToolbarButton:first-child,
54
+ .toolbarButton:first-child,
55
+ .splitToolbarButton:last-child,
56
+ .toolbarButton:last-child {
57
+ margin-left: 4px;
58
+ }
59
+
60
+ .toolbar > * {
61
+ position: relative;
62
+ float: left;
63
+ }
64
+
65
+ .toolbarButton::before, .secondaryToolbarButton::before {
66
+ position: absolute;
67
+ display: inline-block;
68
+ top: 6px;
69
+ left: 6px;
70
+ }
71
+
72
+ .toolbarButton > span {
73
+ display: inline-block;
74
+ width: 0;
75
+ height: 0;
76
+ overflow: hidden;
77
+ }
78
+
79
+ .toolbarButton {
80
+ cursor: pointer;
81
+ }
82
+
83
+ .toolbarButton#btnCreateNotes::before {
84
+ /* draw-annotation.svg URL-encoder for svg */
85
+ content: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3179_133189)'%3E%3Crect x='0.5' y='0.5' width='21' height='13' rx='1.5' stroke='white'/%3E%3Cpath d='M4 3.5H18M4 6.5H15M4 9.5H18' stroke='white'/%3E%3Cpath d='M8 14H14V20L11 17L8 14Z' fill='white'/%3E%3Cpath d='M16 17.5H27.5V27.5H6.5V17.5H8' stroke='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3179_133189'%3E%3Crect width='28' height='28' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
86
+ }
87
+
88
+ .toolbarButton#btnToggleNotes::before {
89
+ /* show-annotation.svg URL-encoder for svg */
90
+ content: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3179_133352)'%3E%3Crect x='0.5' y='0.5' width='27' height='21' rx='1.5' stroke='white'/%3E%3Cpath d='M4 4.5H24M4 8.5H17M4 12.5H21M24 16.5H4' stroke='white'/%3E%3Cpath d='M12 22H18V28L15 25L12 22Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3179_133352'%3E%3Crect width='28' height='28' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
91
+ }
92
+
93
+ .toolbarButton#btnToggleSidebarNotes::before {
94
+ /* sidebar-notes-toggle.svg URL-encoder for svg */
95
+ content: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3179_133369)'%3E%3Crect x='0.5' y='0.5' width='27' height='27' stroke='white'/%3E%3Crect x='2' y='3' width='2' height='2' fill='white'/%3E%3Crect x='12' y='4' width='2' height='2' fill='white'/%3E%3Crect x='15' y='6' width='2' height='1' fill='white'/%3E%3Crect x='3' y='6' width='3' height='1' fill='white'/%3E%3Crect x='2' y='20' width='2' height='2' fill='white'/%3E%3Crect x='11' y='23' width='2' height='2' fill='white'/%3E%3Crect x='14' y='24' width='3' height='1' fill='white'/%3E%3Crect x='3' y='23' width='3' height='1' fill='white'/%3E%3Crect x='20.5' y='2.5' width='5' height='3' stroke='white'/%3E%3Crect x='20.5' y='7.5' width='5' height='3' stroke='white'/%3E%3Crect x='20.5' y='12.5' width='5' height='3' stroke='white'/%3E%3Crect x='20.5' y='17.5' width='5' height='3' stroke='white'/%3E%3Crect x='20.5' y='22.5' width='5' height='3' stroke='white'/%3E%3Cpath d='M4.5 10.5V17.5L9.5 22.5M4.5 10.5L9.5 5.5L14.5 10.5M4.5 10.5L9.5 15M9.5 22.5L14.5 17.5V10.5M9.5 22.5V15M14.5 10.5L9.5 15' stroke='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3179_133369'%3E%3Crect width='28' height='28' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
96
+ }
97
+
98
+ .toolbarButton#btnToggleSidebarTreeView::before {
99
+ /* treeview.svg URL-encoder for svg */
100
+ content: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3179_133389)'%3E%3Crect x='0.5' y='0.5' width='2' height='2' stroke='white'/%3E%3Crect x='13.5' y='6.5' width='2' height='2' stroke='white'/%3E%3Crect x='25.5' y='13.5' width='2' height='2' stroke='white'/%3E%3Crect x='25.5' y='19.5' width='2' height='2' stroke='white'/%3E%3Crect x='25.5' y='25.5' width='2' height='2' stroke='white'/%3E%3Cpath d='M1.5 3V26.5H25' stroke='white' stroke-dasharray='2 2'/%3E%3Cpath d='M25 20.5H14.5V14.5M14.5 9V14.5M25 14.5H14.5' stroke='white' stroke-dasharray='2 2'/%3E%3Cpath d='M13 7.5H2' stroke='white' stroke-dasharray='2 2'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3179_133389'%3E%3Crect width='28' height='28' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
101
+ }
102
+
103
+ .toolbarButton#btnCreateSectionPlan::before {
104
+ /* section-plan.svg URL-encoder for svg */
105
+ content: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3179_133315)'%3E%3Cpath d='M11.5 2.5H1V25.5H11.5M15.5 2.5H27V25.5H16.5' stroke='white'/%3E%3Cpath d='M14 28V0' stroke='white' stroke-dasharray='4 4'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3179_133315'%3E%3Crect width='28' height='28' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
106
+ }
107
+
108
+ .toolbarButton#btnClearSectionPlan::before {
109
+ /* section-plan-clear.svg URL-encoder for svg */
110
+ content: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3179_133207)'%3E%3Cpath d='M10 2.5H0.5V25.5H10M15 2.5H24.5V16' stroke='white'/%3E%3Cpath d='M12.5 28V0' stroke='white' stroke-dasharray='4 4'/%3E%3Cpath d='M27.5 17.5L17.5 27.5M17.5 17.5L27.5 27.5' stroke='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3179_133207'%3E%3Crect width='28' height='28' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
111
+ }
112
+
113
+ .toolbarButton#btnToggleSectionPlan::before {
114
+ /* section-plan-toggle.svg URL-encoder for svg */
115
+ content: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3179_133280)'%3E%3Cpath d='M16.5 0.5V27.5H15.2071L10.5 22.7929V5.20711L15.2071 0.5H16.5Z' stroke='white'/%3E%3Cpath d='M16.5 0.5V27.5H15.2071L10.5 22.7929V5.20711L15.2071 0.5H16.5Z' stroke='white'/%3E%3Crect x='0.5' y='7.5' width='27' height='13' stroke='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3179_133280'%3E%3Crect width='28' height='28' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
116
+ }
117
+
118
+ .toolbarButton#btnToggleNotes.show::before {
119
+ /* show-annotation.svg URL-encoder for svg */
120
+ content: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3179_133352)'%3E%3Crect x='0.5' y='0.5' width='27' height='21' rx='1.5' stroke='white'/%3E%3Cpath d='M4 4.5H24M4 8.5H17M4 12.5H21M24 16.5H4' stroke='white'/%3E%3Cpath d='M12 22H18V28L15 25L12 22Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3179_133352'%3E%3Crect width='28' height='28' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
121
+ }
122
+
123
+ .toolbarButton#btnCreateAngleMeasurements::before {
124
+ /* angle-measurements-create.svg URL-encoder for svg */
125
+ content: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3179_132945)'%3E%3Crect x='0.5' y='25.5' width='2' height='2' stroke='white'/%3E%3Crect x='25.5' y='25.5' width='2' height='2' stroke='white'/%3E%3Crect x='25.5' y='0.5' width='2' height='2' stroke='white'/%3E%3Cpath d='M2 26L26 2' stroke='white'/%3E%3Cpath d='M2.5 26.5H25.5' stroke='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3179_132945'%3E%3Crect width='28' height='28' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
126
+ }
127
+
128
+ .toolbarButton#btnToggleAngleMeasurements::before {
129
+ /* angle-measurements-toggle.svg URL-encoder for svg */
130
+ content: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3179_132959)'%3E%3Crect x='0.5' y='25.5' width='2' height='2' stroke='white'/%3E%3Crect x='25.5' y='25.5' width='2' height='2' stroke='white'/%3E%3Crect x='25.5' y='0.5' width='2' height='2' stroke='white'/%3E%3Cpath d='M2 26L26 2' stroke='white' stroke-dasharray='2 2'/%3E%3Cpath d='M2.5 26.5H25.5' stroke='white' stroke-dasharray='2 2'/%3E%3Cpath d='M7.5 12L23 27.5' stroke='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3179_132959'%3E%3Crect width='28' height='28' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
131
+ }
132
+
133
+ .toolbarButton#btnCreateDistanceMeasurements::before {
134
+ /* distance-measurements-create.svg URL-encoder for svg */
135
+ content: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3179_133176)'%3E%3Crect x='0.5' y='13' width='2' height='2' stroke='white'/%3E%3Crect x='25.5' y='13' width='2' height='2' stroke='white'/%3E%3Cpath d='M2.5 14H25.5' stroke='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3179_133176'%3E%3Crect width='28' height='28' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
136
+ }
137
+
138
+ .toolbarButton#btnToggleDistanceMeasurements::before {
139
+ /* distance-measurements-toggle.svg URL-encoder for svg */
140
+ content: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3179_133215)'%3E%3Crect x='0.5' y='13' width='2' height='2' stroke='white'/%3E%3Crect x='25.5' y='13' width='2' height='2' stroke='white'/%3E%3Cpath d='M2.5 14H25.5' stroke='white' stroke-dasharray='2 2'/%3E%3Cpath d='M5 5L23 23' stroke='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3179_133215'%3E%3Crect width='28' height='28' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
141
+ }
142
+
143
+ .toolbarButton#btnToggleSidebarStoreyViews::before {
144
+ /* storey-views-toggle.svg URL-encoder for svg */
145
+ content: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3179_133377)'%3E%3Cpath d='M9.5 1V11.5M9.5 11.5H13.5V17.5H18.5M9.5 11.5H1M27 17.5H18.5M18.5 17.5V27' stroke='white' stroke-width='1.5'/%3E%3Crect x='0.5' y='0.5' width='27' height='27' stroke='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3179_133377'%3E%3Crect width='28' height='28' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
146
+ }
147
+
148
+ .toolbarButton#btnSaveBCFViewpointJSON::before {
149
+ /* bcf-json-save.svg URL-encoder for svg */
150
+ content: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3179_132996)'%3E%3Cpath d='M6 9.25H23' stroke='white'/%3E%3Cpath d='M14.5 0.75V7.75M14.5 7.75L18 4.75M14.5 7.75L11 4.75' stroke='white'/%3E%3Cpath d='M6 27.25H5C3.89543 27.25 3 26.3546 3 25.25V23.5V22.1682C3 21.6587 2.80557 21.1684 2.4564 20.7974L1 19.25L2.4564 17.7026C2.80557 17.3316 3 16.8413 3 16.3318V15V13.75C3 12.6454 3.89543 11.75 5 11.75H6M22 11.75H23C24.1046 11.75 25 12.6454 25 13.75V15V16.3318C25 16.8413 25.1944 17.3316 25.5436 17.7026L27 19.25L25.5436 20.7974C25.1944 21.1684 25 21.6587 25 22.1682V23.5V25.25C25 26.3546 24.1046 27.25 23 27.25H22' stroke='white'/%3E%3Cpath d='M5.5 14.25H8C8.82843 14.25 9.5 14.9216 9.5 15.75V17.75C9.5 18.5784 8.82843 19.25 8 19.25H5.5V14.25Z' stroke='white'/%3E%3Cpath d='M5.5 19.25H8C8.82843 19.25 9.5 19.9216 9.5 20.75V23.75C9.5 24.5784 8.82843 25.25 8 25.25H5.5V19.25Z' stroke='white'/%3E%3Cpath d='M16.5 16.75V16.25C16.5 15.1454 15.6046 14.25 14.5 14.25V14.25C13.3954 14.25 12.5 15.1454 12.5 16.25V23.25C12.5 24.3546 13.3954 25.25 14.5 25.25V25.25C15.6046 25.25 16.5 24.3546 16.5 23.25V22.75' stroke='white'/%3E%3Cpath d='M19.5 25.75V19.25M23.5 14.25H19.5V19.25M19.5 19.25H23' stroke='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3179_132996'%3E%3Crect width='28' height='28' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
151
+ }
152
+
153
+ .toolbarButton#btnLoadBCFViewpointJSON::before {
154
+ /* bcf-json-load.svg URL-encoder for svg */
155
+ content: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3179_132966)'%3E%3Cpath d='M6 9.25H23' stroke='white'/%3E%3Cpath d='M14.5 7.75V0.75M14.5 0.75L18 3.75M14.5 0.75L11 3.75' stroke='white'/%3E%3Cpath d='M6 27.25H5C3.89543 27.25 3 26.3546 3 25.25V23.5V22.1682C3 21.6587 2.80557 21.1684 2.4564 20.7974L1 19.25L2.4564 17.7026C2.80557 17.3316 3 16.8413 3 16.3318V15V13.75C3 12.6454 3.89543 11.75 5 11.75H6M22 11.75H23C24.1046 11.75 25 12.6454 25 13.75V15V16.3318C25 16.8413 25.1944 17.3316 25.5436 17.7026L27 19.25L25.5436 20.7974C25.1944 21.1684 25 21.6587 25 22.1682V23.5V25.25C25 26.3546 24.1046 27.25 23 27.25H22' stroke='white'/%3E%3Cpath d='M5.5 14.25H8C8.82843 14.25 9.5 14.9216 9.5 15.75V17.75C9.5 18.5784 8.82843 19.25 8 19.25H5.5V14.25Z' stroke='white'/%3E%3Cpath d='M5.5 19.25H8C8.82843 19.25 9.5 19.9216 9.5 20.75V23.75C9.5 24.5784 8.82843 25.25 8 25.25H5.5V19.25Z' stroke='white'/%3E%3Cpath d='M16.5 16.75V16.25C16.5 15.1454 15.6046 14.25 14.5 14.25V14.25C13.3954 14.25 12.5 15.1454 12.5 16.25V23.25C12.5 24.3546 13.3954 25.25 14.5 25.25V25.25C15.6046 25.25 16.5 24.3546 16.5 23.25V22.75' stroke='white'/%3E%3Cpath d='M19.5 25.75V19.25M23.5 14.25H19.5V19.25M19.5 19.25H23' stroke='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3179_132966'%3E%3Crect width='28' height='28' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
156
+ }
157
+
158
+ .toolbarButton#btnToggleCompare::before {
159
+ /* compare.svg URL-encoder for svg */
160
+ content: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27.5 0.5L1.5 26.5' stroke='white' stroke-dasharray='1 1'/%3E%3Cpath d='M5.5 21V0.5L16.5 0.5V10' stroke='white'/%3E%3Cpath d='M22.5 7.5V27.5H11.5V17.5' stroke='white'/%3E%3Crect x='7.5' y='3.5' width='2' height='2' stroke='white'/%3E%3Crect x='18.5' y='18.5' width='2' height='2' stroke='white'/%3E%3Crect x='18.5' y='14.5' width='2' height='2' stroke='white'/%3E%3Cpath d='M20.5 10V12.5H18' stroke='white'/%3E%3Crect x='13.5' y='18.5' width='2' height='2' stroke='white'/%3E%3Cpath d='M15.5 14V16.5H13' stroke='white'/%3E%3Crect x='13.5' y='22.5' width='7' height='2' stroke='white'/%3E%3Crect x='7.5' y='11.5' width='2' height='2' stroke='white'/%3E%3Crect x='12.5' y='3.5' width='2' height='2' stroke='white'/%3E%3Crect x='7.5' y='7.5' width='7' height='2' stroke='white'/%3E%3C/svg%3E%0A");
161
+ }
162
+
163
+ .toolbarButton#btnCompareOneOverOne::before {
164
+ /* compare-one-over-one.svg URL-encoder for svg */
165
+ content: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3179_133031)'%3E%3Crect x='0.5' y='4.5' width='22' height='23' stroke='white'/%3E%3Crect x='5.5' y='0.5' width='22' height='23' stroke='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3179_133031'%3E%3Crect width='28' height='28' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
166
+ }
167
+
168
+ .toolbarButton#btnCompareSideBySide::before {
169
+ /* compare-side-by-side.svg URL-encoder for svg */
170
+ content: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2.5' y='0.5' width='12' height='27' stroke='white'/%3E%3Crect x='14.5' y='0.5' width='11' height='27' stroke='white'/%3E%3C/svg%3E%0A");
171
+ }
172
+
173
+ .toolbarButton#btnClearComparison::before {
174
+ /* compare-clear.svg URL-encoder for svg */
175
+ content: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5.5' y='5.5' width='17' height='20' stroke='white'/%3E%3Cpath d='M2 5.5H26' stroke='white'/%3E%3Cpath d='M11.5 9V22' stroke='white'/%3E%3Cpath d='M16.5 9V22' stroke='white'/%3E%3Crect x='8.5' y='2.5' width='11' height='3' stroke='white'/%3E%3C/svg%3E%0A");
176
+ }
177
+
178
+ .toolbarButton#btnToggleTextures::before {
179
+ /* toggle-textures.svg URL-encoder for svg */
180
+ content: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 27V1H14V27H15ZM25.5 0.5V27.5H2.5V0.5H14H25.5Z' stroke='white'/%3E%3Crect x='15' y='1' width='1' height='1' fill='white'/%3E%3Crect x='16' y='2' width='1' height='1' fill='white'/%3E%3Crect x='16' y='4' width='1' height='1' fill='white'/%3E%3Crect x='16' y='6' width='1' height='1' fill='white'/%3E%3Crect x='16' y='8' width='1' height='1' fill='white'/%3E%3Crect x='16' y='10' width='1' height='1' fill='white'/%3E%3Crect x='16' y='12' width='1' height='1' fill='white'/%3E%3Crect x='16' y='14' width='1' height='1' fill='white'/%3E%3Crect x='16' y='16' width='1' height='1' fill='white'/%3E%3Crect x='16' y='18' width='1' height='1' fill='white'/%3E%3Crect x='16' y='20' width='1' height='1' fill='white'/%3E%3Crect x='16' y='22' width='1' height='1' fill='white'/%3E%3Crect x='16' y='24' width='1' height='1' fill='white'/%3E%3Crect x='16' y='26' width='1' height='1' fill='white'/%3E%3Crect x='15' y='3' width='1' height='1' fill='white'/%3E%3Crect x='15' y='5' width='1' height='1' fill='white'/%3E%3Crect x='15' y='7' width='1' height='1' fill='white'/%3E%3Crect x='15' y='9' width='1' height='1' fill='white'/%3E%3Crect x='15' y='11' width='1' height='1' fill='white'/%3E%3Crect x='15' y='13' width='1' height='1' fill='white'/%3E%3Crect x='15' y='15' width='1' height='1' fill='white'/%3E%3Crect x='15' y='17' width='1' height='1' fill='white'/%3E%3Crect x='15' y='19' width='1' height='1' fill='white'/%3E%3Crect x='15' y='21' width='1' height='1' fill='white'/%3E%3Crect x='15' y='23' width='1' height='1' fill='white'/%3E%3Crect x='15' y='25' width='1' height='1' fill='white'/%3E%3Crect x='17' y='1' width='1' height='1' fill='white'/%3E%3Crect x='18' y='2' width='1' height='1' fill='white'/%3E%3Crect x='18' y='4' width='1' height='1' fill='white'/%3E%3Crect x='18' y='6' width='1' height='1' fill='white'/%3E%3Crect x='18' y='8' width='1' height='1' fill='white'/%3E%3Crect x='18' y='10' width='1' height='1' fill='white'/%3E%3Crect x='18' y='12' width='1' height='1' fill='white'/%3E%3Crect x='18' y='14' width='1' height='1' fill='white'/%3E%3Crect x='18' y='16' width='1' height='1' fill='white'/%3E%3Crect x='18' y='18' width='1' height='1' fill='white'/%3E%3Crect x='18' y='20' width='1' height='1' fill='white'/%3E%3Crect x='18' y='22' width='1' height='1' fill='white'/%3E%3Crect x='18' y='24' width='1' height='1' fill='white'/%3E%3Crect x='18' y='26' width='1' height='1' fill='white'/%3E%3Crect x='17' y='3' width='1' height='1' fill='white'/%3E%3Crect x='17' y='5' width='1' height='1' fill='white'/%3E%3Crect x='17' y='7' width='1' height='1' fill='white'/%3E%3Crect x='17' y='9' width='1' height='1' fill='white'/%3E%3Crect x='17' y='11' width='1' height='1' fill='white'/%3E%3Crect x='17' y='13' width='1' height='1' fill='white'/%3E%3Crect x='17' y='15' width='1' height='1' fill='white'/%3E%3Crect x='17' y='17' width='1' height='1' fill='white'/%3E%3Crect x='17' y='19' width='1' height='1' fill='white'/%3E%3Crect x='17' y='21' width='1' height='1' fill='white'/%3E%3Crect x='17' y='23' width='1' height='1' fill='white'/%3E%3Crect x='17' y='25' width='1' height='1' fill='white'/%3E%3Crect x='19' y='1' width='1' height='1' fill='white'/%3E%3Crect x='20' y='2' width='1' height='1' fill='white'/%3E%3Crect x='20' y='4' width='1' height='1' fill='white'/%3E%3Crect x='20' y='6' width='1' height='1' fill='white'/%3E%3Crect x='20' y='8' width='1' height='1' fill='white'/%3E%3Crect x='20' y='10' width='1' height='1' fill='white'/%3E%3Crect x='20' y='12' width='1' height='1' fill='white'/%3E%3Crect x='20' y='14' width='1' height='1' fill='white'/%3E%3Crect x='20' y='16' width='1' height='1' fill='white'/%3E%3Crect x='20' y='18' width='1' height='1' fill='white'/%3E%3Crect x='20' y='20' width='1' height='1' fill='white'/%3E%3Crect x='20' y='22' width='1' height='1' fill='white'/%3E%3Crect x='20' y='24' width='1' height='1' fill='white'/%3E%3Crect x='20' y='26' width='1' height='1' fill='white'/%3E%3Crect x='19' y='3' width='1' height='1' fill='white'/%3E%3Crect x='19' y='5' width='1' height='1' fill='white'/%3E%3Crect x='19' y='7' width='1' height='1' fill='white'/%3E%3Crect x='19' y='9' width='1' height='1' fill='white'/%3E%3Crect x='19' y='11' width='1' height='1' fill='white'/%3E%3Crect x='19' y='13' width='1' height='1' fill='white'/%3E%3Crect x='19' y='15' width='1' height='1' fill='white'/%3E%3Crect x='19' y='17' width='1' height='1' fill='white'/%3E%3Crect x='19' y='19' width='1' height='1' fill='white'/%3E%3Crect x='19' y='21' width='1' height='1' fill='white'/%3E%3Crect x='19' y='23' width='1' height='1' fill='white'/%3E%3Crect x='19' y='25' width='1' height='1' fill='white'/%3E%3Crect x='21' y='1' width='1' height='1' fill='white'/%3E%3Crect x='22' y='2' width='1' height='1' fill='white'/%3E%3Crect x='22' y='4' width='1' height='1' fill='white'/%3E%3Crect x='22' y='6' width='1' height='1' fill='white'/%3E%3Crect x='22' y='8' width='1' height='1' fill='white'/%3E%3Crect x='22' y='10' width='1' height='1' fill='white'/%3E%3Crect x='22' y='12' width='1' height='1' fill='white'/%3E%3Crect x='22' y='14' width='1' height='1' fill='white'/%3E%3Crect x='22' y='16' width='1' height='1' fill='white'/%3E%3Crect x='22' y='18' width='1' height='1' fill='white'/%3E%3Crect x='22' y='20' width='1' height='1' fill='white'/%3E%3Crect x='22' y='22' width='1' height='1' fill='white'/%3E%3Crect x='22' y='24' width='1' height='1' fill='white'/%3E%3Crect x='22' y='26' width='1' height='1' fill='white'/%3E%3Crect x='21' y='3' width='1' height='1' fill='white'/%3E%3Crect x='21' y='5' width='1' height='1' fill='white'/%3E%3Crect x='21' y='7' width='1' height='1' fill='white'/%3E%3Crect x='21' y='9' width='1' height='1' fill='white'/%3E%3Crect x='21' y='11' width='1' height='1' fill='white'/%3E%3Crect x='21' y='13' width='1' height='1' fill='white'/%3E%3Crect x='21' y='15' width='1' height='1' fill='white'/%3E%3Crect x='21' y='17' width='1' height='1' fill='white'/%3E%3Crect x='21' y='19' width='1' height='1' fill='white'/%3E%3Crect x='21' y='21' width='1' height='1' fill='white'/%3E%3Crect x='21' y='23' width='1' height='1' fill='white'/%3E%3Crect x='21' y='25' width='1' height='1' fill='white'/%3E%3Crect x='23' y='1' width='1' height='1' fill='white'/%3E%3Crect x='24' y='2' width='1' height='1' fill='white'/%3E%3Crect x='24' y='4' width='1' height='1' fill='white'/%3E%3Crect x='24' y='6' width='1' height='1' fill='white'/%3E%3Crect x='24' y='8' width='1' height='1' fill='white'/%3E%3Crect x='24' y='10' width='1' height='1' fill='white'/%3E%3Crect x='24' y='12' width='1' height='1' fill='white'/%3E%3Crect x='24' y='14' width='1' height='1' fill='white'/%3E%3Crect x='24' y='16' width='1' height='1' fill='white'/%3E%3Crect x='24' y='18' width='1' height='1' fill='white'/%3E%3Crect x='24' y='20' width='1' height='1' fill='white'/%3E%3Crect x='24' y='22' width='1' height='1' fill='white'/%3E%3Crect x='24' y='24' width='1' height='1' fill='white'/%3E%3Crect x='24' y='26' width='1' height='1' fill='white'/%3E%3Crect x='23' y='3' width='1' height='1' fill='white'/%3E%3Crect x='23' y='5' width='1' height='1' fill='white'/%3E%3Crect x='23' y='7' width='1' height='1' fill='white'/%3E%3Crect x='23' y='9' width='1' height='1' fill='white'/%3E%3Crect x='23' y='11' width='1' height='1' fill='white'/%3E%3Crect x='23' y='13' width='1' height='1' fill='white'/%3E%3Crect x='23' y='15' width='1' height='1' fill='white'/%3E%3Crect x='23' y='17' width='1' height='1' fill='white'/%3E%3Crect x='23' y='19' width='1' height='1' fill='white'/%3E%3Crect x='23' y='21' width='1' height='1' fill='white'/%3E%3Crect x='23' y='23' width='1' height='1' fill='white'/%3E%3Crect x='23' y='25' width='1' height='1' fill='white'/%3E%3C/svg%3E%0A");
181
+ }
182
+
183
+ .toolbarButton.toggled,
184
+ .splitToolbarButton.toggled > .toolbarButton.toggled,
185
+ .secondaryToolbarButton.toggled {
186
+ background-color: hsla(0,0%,0%,.3);
187
+ background-image: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0));
188
+ border-color: hsla(0,0%,0%,.4) hsla(0,0%,0%,.45) hsla(0,0%,0%,.5);
189
+ box-shadow: 0 1px 1px hsl(0deg 0% 0% / 10%) inset, 0 0 1px hsl(0deg 0% 0% / 20%) inset, 0 1px 0 hsl(0deg 0% 100% / 5%);
190
+ transition-property: background-color, border-color, box-shadow;
191
+ transition-duration: 10ms;
192
+ transition-timing-function: linear;
193
+ }
194
+
195
+ .toolbar-dropdown-wrap button,
196
+ .toolbar-dropdown button {
197
+ position: relative;
198
+ }
199
+
200
+ .toolbar-dropdown {
201
+ padding: 0;
202
+ min-width: 53px;
203
+ white-space: nowrap;
204
+ background-color: #474747;
205
+ background-image: linear-gradient(hsla(0,0%,32%,.99), hsla(0,0%,27%,.95));
206
+ box-shadow: inset 0 1px 1px hsl(0deg 0% 0% / 15%), inset 0 -1px 0 hsl(0deg 0% 100% / 5%), 0 1px 0 hsl(0deg 0% 0% / 15%), 0 1px 1px hsl(0deg 0% 0% / 10%);
207
+ }
208
+
@@ -0,0 +1,103 @@
1
+ #treeViewContainerWrap {
2
+ position: absolute;
3
+ height: calc(100% - 32px);
4
+ width: 350px;
5
+ top: 51px;
6
+ left: 0;
7
+ border-right: 6px solid #EEEEEE;
8
+ z-index: 89000005;
9
+ display: none;
10
+ background: #ffffff;
11
+ /*padding-right: 8px;*/
12
+ }
13
+
14
+ #treeViewContainer {
15
+ pointer-events: all;
16
+ height: 100%;
17
+ overflow-y: auto;
18
+ overflow-x: hidden;
19
+ color: black;
20
+ width: 100%;
21
+ padding-left: 10px;
22
+ font-family: 'Roboto', sans-serif;
23
+ font-size: 15px;
24
+ user-select: none;
25
+ -ms-user-select: none;
26
+ -moz-user-select: none;
27
+ -webkit-user-select: none;
28
+ z-index: 89000006;
29
+ background: #ffffff;
30
+ }
31
+
32
+ .treeview-expanded #treeViewContainer {
33
+ display: block;
34
+ }
35
+
36
+ #treeViewContainer ul {
37
+ list-style: none;
38
+ padding-left: 1.75em;
39
+ pointer-events: none;
40
+ }
41
+
42
+ #treeViewContainer ul li {
43
+ position: relative;
44
+ width: 500px;
45
+ pointer-events: none;
46
+ padding-top: 3px;
47
+ padding-bottom: 3px;
48
+ vertical-align: middle;
49
+ }
50
+
51
+ #treeViewContainer ul li a {
52
+ background-color: #eee;
53
+ border-radius: 50%;
54
+ color: #000;
55
+ display: inline-block;
56
+ height: 1.5em;
57
+ left: -1.5em;
58
+ position: absolute;
59
+ text-align: center;
60
+ text-decoration: none;
61
+ width: 1.5em;
62
+ pointer-events: all;
63
+ }
64
+
65
+ #treeViewContainer ul li a.plus {
66
+ background-color: #ded;
67
+ pointer-events: all;
68
+ }
69
+
70
+ #treeViewContainer ul li a.minus {
71
+ background-color: #eee;
72
+ pointer-events: all;
73
+ }
74
+
75
+ #treeViewContainer ul li a:active {
76
+ top: 1px;
77
+ pointer-events: all;
78
+ }
79
+
80
+ #treeViewContainer ul li span:hover {
81
+ color: white;
82
+ cursor: pointer;
83
+ background: black;
84
+ padding-left: 2px;
85
+ pointer-events: all;
86
+ }
87
+
88
+ #treeViewContainer ul li span {
89
+ display: inline-block;
90
+ width: calc(100% - 50px);
91
+ padding-left: 2px;
92
+ pointer-events: all;
93
+ height: 23px;
94
+ }
95
+
96
+ #treeViewContainer .highlighted-node { /* Appearance of node highlighted with TreeViewPlugin#showNode() */
97
+ border: black solid 1px;
98
+ background: yellow;
99
+ color: black;
100
+ padding-left: 1px;
101
+ padding-right: 5px;
102
+ pointer-events: all;
103
+ }
@@ -0,0 +1,160 @@
1
+ .vitro-file-version-select {
2
+ position: relative;
3
+ max-width: 297px;
4
+ margin-left: 20px;
5
+ }
6
+
7
+ .vitro-selected-version {
8
+ display: flex;
9
+ grid-gap: 8px;
10
+ padding: 4px 8px;
11
+ border-radius: 4px;
12
+ background-color: #F3F8FF;
13
+ overflow: hidden;
14
+ min-width: 0;
15
+ align-items: center;
16
+ }
17
+
18
+ .vitro-file-name {
19
+ text-overflow: ellipsis;
20
+ overflow: hidden;
21
+ color: #222D44;
22
+ font-size: 14px;
23
+ line-height: 16px;
24
+ white-space: nowrap;
25
+ }
26
+
27
+ .vitro-position-absolute {
28
+ position: absolute;
29
+ top: 0;
30
+ left: 0;
31
+ z-index: 1;
32
+ box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.09), 0px 0px 4px 0px rgba(0, 0, 0, 0.12);
33
+ background-color: #F3F8FF;
34
+ padding: 8px;
35
+ border-radius: 4px;
36
+ }
37
+
38
+ .vitro-button-collapse-up,
39
+ .vitro-button-collapse-bottom {
40
+ cursor: pointer;
41
+ width: 24px;
42
+ height: 24px;
43
+ min-width: 24px;
44
+ background-size: 100%;
45
+ background-position: center;
46
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4.5 15L12 7.5L19.5 15' stroke='%23222D44' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
47
+ }
48
+
49
+ .vitro-button-collapse-bottom {
50
+ transform: rotate(180deg);
51
+ }
52
+
53
+ .vitro-version-name-red {
54
+ color: #D13438;
55
+ background-color: #FFF2F6;
56
+ }
57
+
58
+ .vitro-version-name-green {
59
+ color: #5DB182;
60
+ background-color: #F3FFFF;
61
+ }
62
+
63
+ .vitro-selected-version .vitro-version-name-green,
64
+ .vitro-selected-version .vitro-version-name-red {
65
+ border-radius: 4px;
66
+ padding: 4px;
67
+ font-size: 14px;
68
+ line-height: 16px;
69
+ font-family: 'InterSemiBold' !important;
70
+ }
71
+
72
+ .vitro-version-list {
73
+ position: absolute;
74
+ top: calc(100% + 8px);
75
+ left: 0;
76
+ padding: 0;
77
+ margin: 0;
78
+ box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
79
+ background: #fff;
80
+ border-radius: 4px;
81
+ max-width: 401px;
82
+ }
83
+
84
+ .vitro-version-list::before {
85
+ content: '';
86
+ display: block;
87
+ width: 26px;
88
+ height: 24px;
89
+ z-index: 1;
90
+ bottom: 100%;
91
+ left: 124px;
92
+ background-position: center 3px;
93
+ position: absolute;
94
+ background-image: url("data:image/svg+xml,%3Csvg width='44' height='42' viewBox='0 0 44 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_dd_778_105705)'%3E%3Cpath d='M20.3117 11.6584C21.0973 10.4213 22.9027 10.4213 23.6883 11.6584L29.5752 20.9278C30.4208 22.2593 29.4642 24 27.8869 24H16.1131C14.5358 24 13.5792 22.2593 14.4248 20.9278L20.3117 11.6584Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_dd_778_105705' x='0.109375' y='0.730469' width='43.7812' height='41.2695' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='4'/%3E%3CfeGaussianBlur stdDeviation='7'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.18 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_778_105705'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation='2'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.14 0'/%3E%3CfeBlend mode='normal' in2='effect1_dropShadow_778_105705' result='effect2_dropShadow_778_105705'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect2_dropShadow_778_105705' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E%0A");
95
+ }
96
+
97
+ .vitro-file-version-item {
98
+ padding: 8px 12px;
99
+ display: flex;
100
+ grid-gap: 8px;
101
+ align-items: flex-start;
102
+ cursor: pointer;
103
+ }
104
+
105
+ .vitro-file-version-item:last-child {
106
+ border-radius: 0 0 4px 4px;
107
+ }
108
+
109
+ .vitro-file-version-item:nth-child(2) {
110
+ border-radius: 4px 4px 0 0;
111
+ }
112
+
113
+ .vitro-file-version-item:nth-child(2):last-child {
114
+ border-radius: 4px;
115
+ }
116
+
117
+ .vitro-file-version-item:hover {
118
+ background-color: #F3F8FF;
119
+ }
120
+
121
+ .vitro-content {
122
+ overflow: hidden;
123
+ }
124
+
125
+ .vitro-file-version-item .vitro-version-name,
126
+ .vitro-file-version-item .vitro-version-name-green,
127
+ .vitro-file-version-item .vitro-version-name-red {
128
+ font-size: 16px;
129
+ line-height: 24px;
130
+ border-radius: 4px;
131
+ padding: 4px;
132
+ }
133
+
134
+ .vitro-file-version-item .vitro-version-name {
135
+ color: #4A556C;
136
+ background-color: #F8F9FA;
137
+ }
138
+
139
+ .vitro-file-version-item .vitro-version-name-green,
140
+ .vitro-file-version-item .vitro-version-name-red {
141
+ font-family: 'InterMedium' !important;
142
+ }
143
+
144
+ .vitro-flex {
145
+ display: flex;
146
+ margin-top: 4px;
147
+ }
148
+
149
+ .vitro-flex span {
150
+ color: #4A556C;
151
+ font-size: 12px;
152
+ line-height: 16px;
153
+ margin-right: 4px;
154
+ white-space: nowrap;
155
+ }
156
+
157
+ .vitro-active,
158
+ .vitro-active:hover {
159
+ background-color: #DCEEFF;
160
+ }
@@ -15,7 +15,6 @@
15
15
  }
16
16
 
17
17
  .vitro-selected-item {
18
- margin-right: 6px;
19
18
  grid-gap: 8px;
20
19
  }
21
20
 
@@ -108,7 +108,7 @@
108
108
  border: none;
109
109
  background: transparent;
110
110
  flex: 1 1;
111
- min-width: 2px;
111
+ min-width: 8px;
112
112
  color: #222D44;
113
113
  font-size: 14px;
114
114
  line-height: 16px;