@vitrosoftware/common-ui-ts 1.1.74 → 1.1.77
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/common.css +2 -1
- package/css/std/controls/action-handler/action-handler.css +3 -2
- package/css/std/controls/bim-viewer/annotation.css +85 -0
- package/css/std/controls/bim-viewer/bim-viewer-index.css +1100 -0
- package/css/std/controls/bim-viewer/bim-viewer.css +53 -0
- package/css/std/controls/bim-viewer/comparison-popup.css +92 -0
- package/css/std/controls/bim-viewer/context-menu.css +54 -0
- package/css/std/controls/bim-viewer/dialog.css +50 -0
- package/css/std/controls/bim-viewer/nav-cube.css +18 -0
- package/css/std/controls/bim-viewer/prop-inspector.css +86 -0
- package/css/std/controls/bim-viewer/section-planes.css +8 -0
- package/css/std/controls/bim-viewer/sidebar.css +226 -0
- package/css/std/controls/bim-viewer/storey-views.css +57 -0
- package/css/std/controls/bim-viewer/style.css +56 -0
- package/css/std/controls/bim-viewer/toolbar.css +208 -0
- package/css/std/controls/bim-viewer/treeview.css +103 -0
- package/css/std/controls/breadcrumbs/breadcrumbs.css +11 -10
- package/css/std/controls/command-menu/command-menu-dropdown-button.css +8 -7
- package/css/std/controls/command-menu/command-menu.css +0 -1
- package/css/std/controls/criterion/criterion.css +9 -8
- package/css/std/controls/date-picker/date-picker.css +1 -1
- package/css/std/controls/dropdown-button/dropdown-button.css +9 -7
- package/css/std/controls/file-version-select/file-version-select.css +160 -0
- package/css/std/controls/input/input.css +1 -1
- package/css/std/controls/lookup-picker/lookup-picker-selected-item.css +0 -1
- package/css/std/controls/lookup-picker/lookup-picker.css +7 -3
- package/css/std/controls/pdf-viewer/custom.css +38 -19
- package/css/std/controls/pdf-viewer/pdf-viewer-index.css +5503 -0
- package/css/std/controls/pdf-viewer/pdf-viewer.css +24 -16
- package/css/std/controls/pdf-viewer/viewer.css +188 -158
- package/css/std/controls/search/search.css +1 -1
- package/css/std/controls/sidebar/sidebar.css +2 -2
- package/css/std/controls/tab-group/tab-group.css +1 -14
- package/css/std/controls/table-view/table-view-custom-lookup-edit.css +2 -2
- package/css/std/controls/table-view/table-view.css +11 -0
- package/css/std/controls/table-view/treegrid.css +105 -37
- package/css/std/controls/time-picker/time-picker.css +1 -1
- package/css/std/controls/tooltip/tooltip.css +2 -1
- package/css/std/controls/uploader/uploader.css +1 -1
- package/css/std/controls/user-profile/user-profile.css +12 -10
- package/css/third-party/jquery-growl/jquery.growl.css +96 -0
- package/css/third-party/uikit/uikit.css +12083 -0
- package/dist/index.css +294 -125
- package/dist/index.js +527 -282
- package/dist/index.js.map +1 -1
- package/dist/src/constants/Control.d.ts +11 -0
- package/dist/src/constants/Ctrl.d.ts +30 -0
- package/dist/src/constants/Event.d.ts +13 -0
- package/dist/src/constants/Factory.d.ts +3 -0
- package/dist/src/constants/KeyCode.d.ts +3 -0
- package/dist/src/constants/Placement.d.ts +7 -0
- package/dist/src/constants/Unit.d.ts +3 -0
- package/dist/src/controls/ActionHandler/ActionHandler.d.ts +31 -0
- package/dist/src/controls/ActionHandler/ActionHandlerConstants.d.ts +32 -0
- package/dist/src/controls/ActionHandler/ActionInfo.d.ts +12 -0
- package/dist/src/controls/ActionHandler/ActionInfoItem.d.ts +13 -0
- package/dist/src/controls/ActionHandler/UpdatingPopover.d.ts +2 -0
- package/dist/src/controls/Activity/Activity.d.ts +9 -0
- package/dist/src/controls/ActivityItem/ActivityItem.d.ts +16 -0
- package/dist/src/controls/ActivityItem/ActivityMessage.d.ts +6 -0
- package/dist/src/controls/Alert/Alert.d.ts +19 -0
- package/dist/src/controls/Alert/AlertConstants.d.ts +5 -0
- package/dist/src/controls/Avatar/Avatar.d.ts +8 -0
- package/dist/src/controls/BimViewer/BimViewer.d.ts +6 -0
- package/dist/src/controls/BimViewer/BimViewerContext.d.ts +20 -0
- package/dist/src/controls/BimViewer/Viewer.d.ts +6 -0
- package/dist/src/controls/Breadcrumbs/Breadcrumbs.d.ts +13 -0
- package/dist/src/controls/Breadcrumbs/Item.d.ts +10 -0
- package/dist/src/controls/Button/Button.d.ts +14 -0
- package/dist/src/controls/Checkbox/Checkbox.d.ts +11 -0
- package/dist/src/controls/CommandMenu/CommandMenu.d.ts +6 -0
- package/dist/src/controls/CommandMenu/CommandMenuButton.d.ts +13 -0
- package/dist/src/controls/CommandMenu/CommandMenuDropdownButton.d.ts +18 -0
- package/dist/src/controls/CommandMenu/CommandMenuItemHeader.d.ts +11 -0
- package/dist/src/controls/CommandMenu/CommandMenuLookupPicker.d.ts +32 -0
- package/dist/src/controls/CommandMenu/CommandMenuSubItem.d.ts +13 -0
- package/dist/src/controls/ComponentLoader/ComponentLoader.d.ts +8 -0
- package/dist/src/controls/ComponentLoader/ComponentLoaderContextImpl.d.ts +11 -0
- package/dist/src/controls/ControlGroup/ControlGroup.d.ts +7 -0
- package/dist/src/controls/Criterion/ConditionSelect.d.ts +9 -0
- package/dist/src/controls/Criterion/Criterion.d.ts +23 -0
- package/dist/src/controls/DatePicker/DatePicker.d.ts +29 -0
- package/dist/src/controls/DatePicker/DatePickerConstants.d.ts +12 -0
- package/dist/src/controls/Dialog/Dialog.d.ts +23 -0
- package/dist/src/controls/Dialog/DialogButton.d.ts +8 -0
- package/dist/src/controls/Dialog/DialogCloseButton.d.ts +8 -0
- package/dist/src/controls/Dialog/DialogComponent.d.ts +8 -0
- package/dist/src/controls/Dialog/DialogConstants.d.ts +5 -0
- package/dist/src/controls/Dialog/DialogContent.d.ts +7 -0
- package/dist/src/controls/Dialog/DialogFooter.d.ts +11 -0
- package/dist/src/controls/Dialog/DialogHeader.d.ts +8 -0
- package/dist/src/controls/DropdownButton/DropdownButton.d.ts +13 -0
- package/dist/src/controls/FieldIterator/FieldIterator.d.ts +24 -0
- package/dist/src/controls/FileVersionSelect/FileVersionItem.d.ts +6 -0
- package/dist/src/controls/FileVersionSelect/FileVersionSelect.d.ts +12 -0
- package/dist/src/controls/FileVersionSelect/Item.d.ts +10 -0
- package/dist/src/controls/Icon/Icon.d.ts +11 -0
- package/dist/src/controls/ImagePicker/ImagePicker.d.ts +16 -0
- package/dist/src/controls/ImagePicker/ImagePickerConstants.d.ts +8 -0
- package/dist/src/controls/Input/Input.d.ts +32 -0
- package/dist/src/controls/Input/InputConstants.d.ts +4 -0
- package/dist/src/controls/IssueTile/IssueTile.d.ts +26 -0
- package/dist/src/controls/IssueTile/IssueTileConstants.d.ts +3 -0
- package/dist/src/controls/IssueTile/IssueTileFooter.d.ts +8 -0
- package/dist/src/controls/IssueTile/IssueTileHeader.d.ts +18 -0
- package/dist/src/controls/Label/Label.d.ts +9 -0
- package/dist/src/controls/Label/LabelConstants.d.ts +3 -0
- package/dist/src/controls/Login/Login.d.ts +16 -0
- package/dist/src/controls/Login/LoginConstants.d.ts +17 -0
- package/dist/src/controls/Login/LoginFooter.d.ts +10 -0
- package/dist/src/controls/LookupPicker/LookupPicker.d.ts +39 -0
- package/dist/src/controls/LookupPicker/LookupPickerConstants.d.ts +3 -0
- package/dist/src/controls/LookupPicker/SelectedValueList.d.ts +14 -0
- package/dist/src/controls/LookupPicker/ValueList.d.ts +22 -0
- package/dist/src/controls/LookupPicker/ValueListItem.d.ts +11 -0
- package/dist/src/controls/MessageInput/MessageInput.d.ts +12 -0
- package/dist/src/controls/MessageInput/MessageInputConstants.d.ts +3 -0
- package/dist/src/controls/MicroFrontend/MicroFrontend.d.ts +8 -0
- package/dist/src/controls/MicroFrontend/MicroFrontendState.d.ts +8 -0
- package/dist/src/controls/MicroFrontend/renderMicrofrontend.d.ts +2 -0
- package/dist/src/controls/NumberInput/NumberInput.d.ts +30 -0
- package/dist/src/controls/NumberInput/NumberInputConstants.d.ts +12 -0
- package/dist/src/controls/PasswordInput/PasswordInput.d.ts +31 -0
- package/dist/src/controls/PasswordInput/PasswordInputConstants.d.ts +4 -0
- package/dist/src/controls/PdfViewer/PdfViewerContext.d.ts +7 -2
- package/dist/src/controls/RouteItem/RouteItem.d.ts +17 -0
- package/dist/src/controls/ScrollBar/ScrollBar.d.ts +9 -0
- package/dist/src/controls/Search/CheckboxList.d.ts +12 -0
- package/dist/src/controls/Search/Filter.d.ts +21 -0
- package/dist/src/controls/Search/Input.d.ts +21 -0
- package/dist/src/controls/Search/Search.d.ts +29 -0
- package/dist/src/controls/Search/SearchConstants.d.ts +4 -0
- package/dist/src/controls/Sidebar/Item.d.ts +9 -0
- package/dist/src/controls/Sidebar/LinkItem.d.ts +17 -0
- package/dist/src/controls/Sidebar/Section.d.ts +11 -0
- package/dist/src/controls/Sidebar/SectionList.d.ts +10 -0
- package/dist/src/controls/Sidebar/Sidebar.d.ts +14 -0
- package/dist/src/controls/Sidebar/SidebarConstants.d.ts +4 -0
- package/dist/src/controls/Splitter/Splitter.d.ts +18 -0
- package/dist/src/controls/Splitter/SplitterConstants.d.ts +9 -0
- package/dist/src/controls/TabGroup/OverflowButton.d.ts +7 -0
- package/dist/src/controls/TabGroup/Tab.d.ts +10 -0
- package/dist/src/controls/TabGroup/TabGroup.d.ts +10 -0
- package/dist/src/controls/TabGroup/TabGroupComponent.d.ts +9 -0
- package/dist/src/controls/TabGroup/TabGroupConstants.d.ts +4 -0
- package/dist/src/controls/TabGroup/TabGroupHeader.d.ts +9 -0
- package/dist/src/controls/TableView/TableView.d.ts +26 -0
- package/dist/src/controls/TableView/TableViewConstants.d.ts +153 -0
- package/dist/src/controls/TableView/TableViewContext.d.ts +1 -0
- package/dist/src/controls/TableView/TreeGrid.d.ts +17 -0
- package/dist/src/controls/TableView/TreeGridTableViewContextImpl.d.ts +92 -0
- package/dist/src/controls/TaskTile/TaskTile.d.ts +18 -0
- package/dist/src/controls/TelerikUploader/TelerikUploader.d.ts +11 -0
- package/dist/src/controls/TelerikUploader/TelerikUploaderConstants.d.ts +16 -0
- package/dist/src/controls/TelerikUploader/TelerikUploaderContextImpl.d.ts +39 -0
- package/dist/src/controls/TimePicker/TimePicker.d.ts +23 -0
- package/dist/src/controls/TimePicker/TimePickerConstants.d.ts +12 -0
- package/dist/src/controls/Tooltip/Tooltip.d.ts +10 -0
- package/dist/src/controls/Tooltip/TooltipConstants.d.ts +6 -0
- package/dist/src/controls/TopLevelMenu/LinkItem.d.ts +9 -0
- package/dist/src/controls/TopLevelMenu/TopLevelMenu.d.ts +9 -0
- package/dist/src/controls/TreeView/JsTreeViewContextImpl.d.ts +35 -0
- package/dist/src/controls/TreeView/TreeView.d.ts +13 -0
- package/dist/src/controls/TreeView/TreeViewConfig.d.ts +34 -0
- package/dist/src/controls/TreeView/TreeViewConstants.d.ts +52 -0
- package/dist/src/controls/UserLookupPicker/UserLookupPicker.d.ts +40 -0
- package/dist/src/controls/UserProfile/UserProfile.d.ts +12 -0
- package/dist/src/controls/UserProfile/UserProfileMenuItem.d.ts +11 -0
- package/dist/src/controls/View/View.d.ts +7 -0
- package/dist/src/controls/ViewPart/ViewPart.d.ts +10 -0
- package/dist/src/exceptions/impl/AbortExceptionImpl.d.ts +3 -0
- package/dist/src/index.d.ts +133 -0
- package/lib/jquery-dialogextend/jquery.dialogextend.min.js +2 -0
- package/lib/jquery-growl/jquery.growl.js +315 -0
- package/lib/jszip/jszip-utils.min.js +1 -0
- package/lib/jszip/jszip.min.js +13 -0
- package/lib/third-party.js +1379 -15
- package/lib/uikit/uikit-icons.min.js +1 -0
- package/lib/uikit/uikit.min.js +1 -0
- package/lib/webL10n/l10n.js +1028 -0
- package/lib/xeokit/VitroFastNavPlugin.js +920 -0
- package/lib/xeokit/VitroTreeViewPlugin.js +650 -0
- package/lib/xeokit/xeokit-sdk.es.js +188506 -0
- package/package.json +6 -4
- package/src/controls/BimViewer/js/bim-viewer.js +2697 -0
- package/src/controls/BimViewer/js/init-viewer-page.js +24 -0
- package/src/controls/PdfViewer/js/init-viewer-page.js +1 -2
- package/src/controls/PdfViewer/js/pdf-viewer.js +60 -56
- package/css/std/controls/pdf-viewer/img/annotation-check.svg +0 -11
- package/css/std/controls/pdf-viewer/img/annotation-comment.svg +0 -16
- package/css/std/controls/pdf-viewer/img/annotation-help.svg +0 -26
- package/css/std/controls/pdf-viewer/img/annotation-insert.svg +0 -10
- package/css/std/controls/pdf-viewer/img/annotation-key.svg +0 -11
- package/css/std/controls/pdf-viewer/img/annotation-newparagraph.svg +0 -11
- package/css/std/controls/pdf-viewer/img/annotation-noicon.svg +0 -7
- package/css/std/controls/pdf-viewer/img/annotation-note.svg +0 -42
- package/css/std/controls/pdf-viewer/img/annotation-paperclip.svg +0 -6
- package/css/std/controls/pdf-viewer/img/annotation-paragraph.svg +0 -16
- package/css/std/controls/pdf-viewer/img/annotation-pushpin.svg +0 -7
- package/css/std/controls/pdf-viewer/img/close-compare-viewer.png +0 -0
- package/css/std/controls/pdf-viewer/img/close-compare-viewer_active.png +0 -0
- package/css/std/controls/pdf-viewer/img/compare-overlay.png +0 -0
- package/css/std/controls/pdf-viewer/img/compare-side-by-side.png +0 -0
- package/css/std/controls/pdf-viewer/img/cursor-editorFreeText.svg +0 -3
- package/css/std/controls/pdf-viewer/img/cursor-editorInk.svg +0 -4
- package/css/std/controls/pdf-viewer/img/delete-active.png +0 -0
- package/css/std/controls/pdf-viewer/img/delete.png +0 -0
- package/css/std/controls/pdf-viewer/img/dlg-compare-ico.png +0 -0
- package/css/std/controls/pdf-viewer/img/do-compare.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-arrow.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-cloud.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-ellipse.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-line.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-polygon.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-rect.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-toolbar-arrow.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-toolbar-cloud.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-toolbar-ellipse.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-toolbar-line.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-toolbar-polygon.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-toolbar-rect.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation-toolbar.png +0 -0
- package/css/std/controls/pdf-viewer/img/draw-annotation.png +0 -0
- package/css/std/controls/pdf-viewer/img/dropdown-arrow.png +0 -0
- package/css/std/controls/pdf-viewer/img/findbarButton-next.svg +0 -3
- package/css/std/controls/pdf-viewer/img/findbarButton-previous.svg +0 -3
- package/css/std/controls/pdf-viewer/img/finish-align.png +0 -0
- package/css/std/controls/pdf-viewer/img/finish-align_active.png +0 -0
- package/css/std/controls/pdf-viewer/img/fit-to-view.png +0 -0
- package/css/std/controls/pdf-viewer/img/fit-to-view_active.png +0 -0
- package/css/std/controls/pdf-viewer/img/gv-toolbarButton-download.svg +0 -3
- package/css/std/controls/pdf-viewer/img/gv-toolbarButton-openinapp.svg +0 -11
- package/css/std/controls/pdf-viewer/img/hide-annotation.png +0 -0
- package/css/std/controls/pdf-viewer/img/hide-colors.png +0 -0
- package/css/std/controls/pdf-viewer/img/hide-colors_active.png +0 -0
- package/css/std/controls/pdf-viewer/img/layer-unvisible.png +0 -0
- package/css/std/controls/pdf-viewer/img/layer-visible.png +0 -0
- package/css/std/controls/pdf-viewer/img/loading-dark.svg +0 -24
- package/css/std/controls/pdf-viewer/img/loading-icon.gif +0 -0
- package/css/std/controls/pdf-viewer/img/loading.svg +0 -1
- package/css/std/controls/pdf-viewer/img/overlay.png +0 -0
- package/css/std/controls/pdf-viewer/img/overlay_active.png +0 -0
- package/css/std/controls/pdf-viewer/img/pan.png +0 -0
- package/css/std/controls/pdf-viewer/img/pan_active.png +0 -0
- package/css/std/controls/pdf-viewer/img/panel-visibility.png +0 -0
- package/css/std/controls/pdf-viewer/img/panel-visibility_active.png +0 -0
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-documentProperties.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-firstPage.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-handTool.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-lastPage.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-rotateCcw.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-rotateCw.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-scrollHorizontal.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-scrollPage.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-scrollVertical.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-scrollWrapped.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-selectTool.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-spreadEven.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-spreadNone.svg +0 -3
- package/css/std/controls/pdf-viewer/img/secondaryToolbarButton-spreadOdd.svg +0 -3
- package/css/std/controls/pdf-viewer/img/shadow.png +0 -0
- package/css/std/controls/pdf-viewer/img/show-annotation.png +0 -0
- package/css/std/controls/pdf-viewer/img/side-by-side.png +0 -0
- package/css/std/controls/pdf-viewer/img/side-by-side_active.png +0 -0
- package/css/std/controls/pdf-viewer/img/sidebar-notes-toggle.png +0 -0
- package/css/std/controls/pdf-viewer/img/spinner.gif +0 -0
- package/css/std/controls/pdf-viewer/img/toolbarButton-bookmark.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-currentOutlineItem.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-download.svg +0 -4
- package/css/std/controls/pdf-viewer/img/toolbarButton-editorFreeText.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-editorInk.svg +0 -4
- package/css/std/controls/pdf-viewer/img/toolbarButton-editorStamp.svg +0 -8
- package/css/std/controls/pdf-viewer/img/toolbarButton-menuArrow.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-openFile.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-pageDown.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-pageUp.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-presentationMode.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-print.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-search.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-secondaryToolbarToggle.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-sidebarToggle.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-viewAttachments.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-viewLayers.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-viewOutline.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-viewThumbnail.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-zoomIn.svg +0 -3
- package/css/std/controls/pdf-viewer/img/toolbarButton-zoomOut.svg +0 -3
- package/css/std/controls/pdf-viewer/img/treeitem-collapsed.svg +0 -1
- package/css/std/controls/pdf-viewer/img/treeitem-expanded.svg +0 -1
- package/css/std/controls/pdf-viewer/img/zoom.png +0 -0
- package/css/std/controls/pdf-viewer/img/zoom_active.png +0 -0
|
@@ -0,0 +1,1100 @@
|
|
|
1
|
+
html,
|
|
2
|
+
body {
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
font-family: Arial;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
* {
|
|
9
|
+
box-sizing: border-box;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
html,
|
|
13
|
+
body,
|
|
14
|
+
.canvas-wrap,
|
|
15
|
+
#xeokitCanvas {
|
|
16
|
+
width: 100%;
|
|
17
|
+
height: 100%;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
body {
|
|
21
|
+
overflow: hidden;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.canvas-wrap {
|
|
25
|
+
height: calc(100% - 32px);
|
|
26
|
+
position: relative;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/* Vitro custom css section */
|
|
30
|
+
|
|
31
|
+
.fileVersionPath {
|
|
32
|
+
margin-right: 3px;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.fileLabel {
|
|
36
|
+
min-width: 16px;
|
|
37
|
+
padding: 3px 6px 3px 2px;
|
|
38
|
+
margin: 4px 2px 4px 0;
|
|
39
|
+
border: 1px solid transparent;
|
|
40
|
+
border-radius: 2px;
|
|
41
|
+
color: hsl(0,0%,85%);
|
|
42
|
+
font-size: 12px;
|
|
43
|
+
line-height: 14px;
|
|
44
|
+
text-align: left;
|
|
45
|
+
-webkit-user-select: none;
|
|
46
|
+
-moz-user-select: none;
|
|
47
|
+
-ms-user-select: none;
|
|
48
|
+
user-select: none;
|
|
49
|
+
cursor: default;
|
|
50
|
+
padding-top: 15px;
|
|
51
|
+
text-overflow: ellipsis;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.uk-tab > * {
|
|
55
|
+
padding-left: 10px !important;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.toolbar {
|
|
59
|
+
height: 50px;
|
|
60
|
+
background-color: #474747;
|
|
61
|
+
background-image: linear-gradient(hsla(0,0%,32%,.99), hsla(0,0%,27%,.95));
|
|
62
|
+
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%);
|
|
63
|
+
position: relative;
|
|
64
|
+
z-index: 99000005;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
input,
|
|
68
|
+
button,
|
|
69
|
+
select {
|
|
70
|
+
font: message-box;
|
|
71
|
+
outline: none;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.toolbarButton,
|
|
75
|
+
.secondaryToolbarButton,
|
|
76
|
+
.overlayButton {
|
|
77
|
+
border: 0 none;
|
|
78
|
+
background: none;
|
|
79
|
+
width: 42px;
|
|
80
|
+
height: 42px;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.toolbarButton,
|
|
84
|
+
.dropdownToolbarButton,
|
|
85
|
+
.secondaryToolbarButton,
|
|
86
|
+
.overlayButton {
|
|
87
|
+
min-width: 16px;
|
|
88
|
+
padding: 6px 6px;
|
|
89
|
+
border: 1px solid transparent;
|
|
90
|
+
border-radius: 2px;
|
|
91
|
+
color: hsla(0,0%,100%,.8);
|
|
92
|
+
font-size: 12px;
|
|
93
|
+
line-height: 14px;
|
|
94
|
+
-webkit-user-select: none;
|
|
95
|
+
-moz-user-select: none;
|
|
96
|
+
-ms-user-select: none;
|
|
97
|
+
user-select: none;
|
|
98
|
+
cursor: default;
|
|
99
|
+
transition-property: background-color, border-color, box-shadow;
|
|
100
|
+
transition-duration: 150ms;
|
|
101
|
+
transition-timing-function: ease;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.toolbarButton,
|
|
105
|
+
.overlayButton,
|
|
106
|
+
.dropdownToolbarButton {
|
|
107
|
+
margin: 4px 4px 4px 0;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.splitToolbarButton:first-child,
|
|
111
|
+
.toolbarButton:first-child,
|
|
112
|
+
.splitToolbarButton:last-child,
|
|
113
|
+
.toolbarButton:last-child {
|
|
114
|
+
margin-left: 4px;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.toolbar > * {
|
|
118
|
+
position: relative;
|
|
119
|
+
float: left;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.toolbarButton::before, .secondaryToolbarButton::before {
|
|
123
|
+
position: absolute;
|
|
124
|
+
display: inline-block;
|
|
125
|
+
top: 6px;
|
|
126
|
+
left: 6px;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.toolbarButton > span {
|
|
130
|
+
display: inline-block;
|
|
131
|
+
width: 0;
|
|
132
|
+
height: 0;
|
|
133
|
+
overflow: hidden;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.toolbarButton {
|
|
137
|
+
cursor: pointer;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.toolbarButton#btnCreateNotes::before {
|
|
141
|
+
/* draw-annotation.svg URL-encoder for svg */
|
|
142
|
+
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");
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.toolbarButton#btnToggleNotes::before {
|
|
146
|
+
/* show-annotation.svg URL-encoder for svg */
|
|
147
|
+
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");
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.toolbarButton#btnToggleSidebarNotes::before {
|
|
151
|
+
/* sidebar-notes-toggle.svg URL-encoder for svg */
|
|
152
|
+
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");
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.toolbarButton#btnToggleSidebarTreeView::before {
|
|
156
|
+
/* treeview.svg URL-encoder for svg */
|
|
157
|
+
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");
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.toolbarButton#btnCreateSectionPlan::before {
|
|
161
|
+
/* section-plan.svg URL-encoder for svg */
|
|
162
|
+
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");
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.toolbarButton#btnClearSectionPlan::before {
|
|
166
|
+
/* section-plan-clear.svg URL-encoder for svg */
|
|
167
|
+
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");
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.toolbarButton#btnToggleSectionPlan::before {
|
|
171
|
+
/* section-plan-toggle.svg URL-encoder for svg */
|
|
172
|
+
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");
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.toolbarButton#btnToggleNotes.show::before {
|
|
176
|
+
/* show-annotation.svg URL-encoder for svg */
|
|
177
|
+
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");
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.toolbarButton#btnCreateAngleMeasurements::before {
|
|
181
|
+
/* angle-measurements-create.svg URL-encoder for svg */
|
|
182
|
+
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");
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.toolbarButton#btnToggleAngleMeasurements::before {
|
|
186
|
+
/* angle-measurements-toggle.svg URL-encoder for svg */
|
|
187
|
+
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");
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.toolbarButton#btnCreateDistanceMeasurements::before {
|
|
191
|
+
/* distance-measurements-create.svg URL-encoder for svg */
|
|
192
|
+
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");
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.toolbarButton#btnToggleDistanceMeasurements::before {
|
|
196
|
+
/* distance-measurements-toggle.svg URL-encoder for svg */
|
|
197
|
+
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");
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.toolbarButton#btnToggleSidebarStoreyViews::before {
|
|
201
|
+
/* storey-views-toggle.svg URL-encoder for svg */
|
|
202
|
+
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");
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.toolbarButton#btnSaveBCFViewpointJSON::before {
|
|
206
|
+
/* bcf-json-save.svg URL-encoder for svg */
|
|
207
|
+
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");
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.toolbarButton#btnLoadBCFViewpointJSON::before {
|
|
211
|
+
/* bcf-json-load.svg URL-encoder for svg */
|
|
212
|
+
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");
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.toolbarButton#btnToggleCompare::before {
|
|
216
|
+
/* compare.svg URL-encoder for svg */
|
|
217
|
+
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");
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.toolbarButton#btnCompareOneOverOne::before {
|
|
221
|
+
/* compare-one-over-one.svg URL-encoder for svg */
|
|
222
|
+
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");
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.toolbarButton#btnCompareSideBySide::before {
|
|
226
|
+
/* compare-side-by-side.svg URL-encoder for svg */
|
|
227
|
+
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");
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.toolbarButton#btnClearComparison::before {
|
|
231
|
+
/* compare-clear.svg URL-encoder for svg */
|
|
232
|
+
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");
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.toolbarButton#btnToggleTextures::before {
|
|
236
|
+
/* toggle-textures.svg URL-encoder for svg */
|
|
237
|
+
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");
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.toolbarButton.toggled,
|
|
241
|
+
.splitToolbarButton.toggled > .toolbarButton.toggled,
|
|
242
|
+
.secondaryToolbarButton.toggled {
|
|
243
|
+
background-color: hsla(0,0%,0%,.3);
|
|
244
|
+
background-image: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0));
|
|
245
|
+
border-color: hsla(0,0%,0%,.4) hsla(0,0%,0%,.45) hsla(0,0%,0%,.5);
|
|
246
|
+
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%);
|
|
247
|
+
transition-property: background-color, border-color, box-shadow;
|
|
248
|
+
transition-duration: 10ms;
|
|
249
|
+
transition-timing-function: linear;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.toolbar-dropdown-wrap button,
|
|
253
|
+
.toolbar-dropdown button {
|
|
254
|
+
position: relative;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.toolbar-dropdown {
|
|
258
|
+
padding: 0;
|
|
259
|
+
min-width: 53px;
|
|
260
|
+
white-space: nowrap;
|
|
261
|
+
background-color: #474747;
|
|
262
|
+
background-image: linear-gradient(hsla(0,0%,32%,.99), hsla(0,0%,27%,.95));
|
|
263
|
+
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%);
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
.sidebar {
|
|
268
|
+
width: 100%;
|
|
269
|
+
background: #f8f8f8;
|
|
270
|
+
padding: 32px 10px 10px 10px;
|
|
271
|
+
height: calc(100% - 32px);
|
|
272
|
+
border-left: 1px solid silver;
|
|
273
|
+
border-right: 1px solid silver;
|
|
274
|
+
top: 51px;
|
|
275
|
+
right: 0;
|
|
276
|
+
z-index: 89000005;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
#sidebarWrap {
|
|
280
|
+
position: absolute;
|
|
281
|
+
height: calc(100% - 32px);
|
|
282
|
+
right: 0;
|
|
283
|
+
top: 51px;
|
|
284
|
+
width: 278px;
|
|
285
|
+
display: none;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.sidebar-close {
|
|
289
|
+
position: absolute;
|
|
290
|
+
top: 4px;
|
|
291
|
+
left: 3px;
|
|
292
|
+
font-weight: 400;
|
|
293
|
+
padding: 2px 8px 7px 8px;
|
|
294
|
+
cursor: pointer;
|
|
295
|
+
transform: scaleX(1.2);
|
|
296
|
+
font-size: 18px;
|
|
297
|
+
font-family: Arial;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.sidebar-content {
|
|
301
|
+
height: 100%;
|
|
302
|
+
font-size: 14px;
|
|
303
|
+
overflow-y: auto;
|
|
304
|
+
overflow-x: hidden;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.sidebar-note-wrap {
|
|
308
|
+
background: #ffffff;
|
|
309
|
+
padding: 5px;
|
|
310
|
+
margin-top: 5px;
|
|
311
|
+
position: relative;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.sidebar-note-wrap:first-child {
|
|
315
|
+
margin-top: 0;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.sidebar-note-header {
|
|
319
|
+
padding-bottom: 5px;
|
|
320
|
+
border-bottom: 1px dotted #E0E0E0;
|
|
321
|
+
position: relative;
|
|
322
|
+
z-index: 10;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.sidebar-note-name {
|
|
326
|
+
font-size: 12px;
|
|
327
|
+
font-weight: 600;
|
|
328
|
+
color: #283430;
|
|
329
|
+
padding-bottom: 2px;
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
margin-right: 8px;
|
|
333
|
+
padding-right: 8px;
|
|
334
|
+
|
|
335
|
+
display: inline-block;
|
|
336
|
+
position: relative;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.sidebar-note-name:after {
|
|
340
|
+
content: "";
|
|
341
|
+
position: absolute;
|
|
342
|
+
border-right: 1px solid #C3BFBF;
|
|
343
|
+
height: 10px;
|
|
344
|
+
top: 2px;
|
|
345
|
+
right: 0;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.sidebar-note-title {
|
|
349
|
+
font-size: 12px;
|
|
350
|
+
font-weight: 600;
|
|
351
|
+
margin-top: 2px;
|
|
352
|
+
padding-top: 6px;
|
|
353
|
+
cursor: pointer;
|
|
354
|
+
width: -webkit-fill-available;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.sidebar-note-id {
|
|
358
|
+
font-size: 12px;
|
|
359
|
+
margin-top: 2px;
|
|
360
|
+
padding-top: 6px;
|
|
361
|
+
border-top: 1px dotted #E0E0E0;
|
|
362
|
+
text-align: right;
|
|
363
|
+
min-width: 85px;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
div.sidebar-note-id:hover {
|
|
367
|
+
text-decoration: underline;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.note-title-container {
|
|
371
|
+
border-top: 1px dotted #E0E0E0;
|
|
372
|
+
display: flex;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
.sidebar-note-date {
|
|
376
|
+
font-size: 11px;
|
|
377
|
+
color: #C3BFBF;
|
|
378
|
+
|
|
379
|
+
display: inline-block;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.sidebar-note-btn-delete {
|
|
383
|
+
position: absolute;
|
|
384
|
+
width: 16px;
|
|
385
|
+
height: 16px;
|
|
386
|
+
right: 0;
|
|
387
|
+
top: 0;
|
|
388
|
+
cursor: pointer;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
.sidebar-note-body {
|
|
392
|
+
padding-top: 5px;
|
|
393
|
+
position: relative;
|
|
394
|
+
z-index: 10;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.sidebar-note-wrap textarea {
|
|
398
|
+
border: #E0E0E0;
|
|
399
|
+
color: #283430;
|
|
400
|
+
width: 100%;
|
|
401
|
+
resize: none;
|
|
402
|
+
overflow: hidden;
|
|
403
|
+
height: 60px;
|
|
404
|
+
box-sizing: border-box;
|
|
405
|
+
max-width: 100%;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.sidebar-note-wrap textarea,
|
|
409
|
+
.sidebar-note-wrap.active textarea,
|
|
410
|
+
.sidebar-note-wrap textarea:focus {
|
|
411
|
+
padding: 2px;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.sidebar-note-expand-wrap {
|
|
415
|
+
text-align: right;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
.sidebar-note-expand-btn {
|
|
419
|
+
font-size: 11px;
|
|
420
|
+
color: #C3BFBF;
|
|
421
|
+
text-transform: lowercase;
|
|
422
|
+
font-variant: small-caps;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.btn-expand,
|
|
426
|
+
.btn-collapse {
|
|
427
|
+
cursor: pointer;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
.sidebar-note-expand-btn:not(.collapsed) .btn-expand,
|
|
431
|
+
.sidebar-note-expand-btn.collapsed .btn-collapse {
|
|
432
|
+
display: none;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
.sidebar-note-btn-delete span {
|
|
436
|
+
display: none;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
.sidebar-note-img-wrap,
|
|
440
|
+
.sidebar-note-img-wrap img {
|
|
441
|
+
max-width: 100%;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
.sidebar-note-wrap.active:before {
|
|
445
|
+
content: "";
|
|
446
|
+
position: absolute;
|
|
447
|
+
top: -5px;
|
|
448
|
+
bottom: -5px;
|
|
449
|
+
left: -5px;
|
|
450
|
+
right: -5px;
|
|
451
|
+
background: midnightblue;
|
|
452
|
+
z-index: 1;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
.sidebar-note-wrap.active .sidebar-note-title,
|
|
456
|
+
.sidebar-note-wrap.active .sidebar-note-id,
|
|
457
|
+
.sidebar-note-wrap.active .sidebar-note-name {
|
|
458
|
+
color: #ffffff !important;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
.sidebar-note-wrap a {
|
|
462
|
+
color: #283430 !important;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
.sidebar-note-wrap.active a {
|
|
466
|
+
color: #ffffff !important;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
.sidebar-note-date {
|
|
470
|
+
font-size: 11px;
|
|
471
|
+
color: #C3BFBF;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
.sidebar-note-wrap.active .sidebar-note-btn-delete {
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.sidebar-note-status-mark {
|
|
478
|
+
border-radius: 50%;
|
|
479
|
+
display: inline-block;
|
|
480
|
+
min-height: 10px;
|
|
481
|
+
min-width: 10px;
|
|
482
|
+
height: 10px;
|
|
483
|
+
width: 10px;
|
|
484
|
+
vertical-align: sub;
|
|
485
|
+
margin-right: 3px;
|
|
486
|
+
float: left;
|
|
487
|
+
margin-top: 2px;
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
.sidebar-note-status-text {
|
|
491
|
+
float: left;
|
|
492
|
+
}
|
|
493
|
+
#navCubeCanvas {
|
|
494
|
+
position: absolute;
|
|
495
|
+
width: 250px;
|
|
496
|
+
height: 250px;
|
|
497
|
+
z-index: 200000;
|
|
498
|
+
|
|
499
|
+
/* Position */
|
|
500
|
+
|
|
501
|
+
/* 1. Left-Bottom */
|
|
502
|
+
/*
|
|
503
|
+
bottom: 100px;
|
|
504
|
+
left: 50px;
|
|
505
|
+
*/
|
|
506
|
+
|
|
507
|
+
/* 2. Right-Center */
|
|
508
|
+
right: 10px;
|
|
509
|
+
top: calc(50% - 157px);
|
|
510
|
+
}
|
|
511
|
+
#sectionPlanesOverviewCanvas {
|
|
512
|
+
position: absolute;
|
|
513
|
+
width: 250px;
|
|
514
|
+
height: 250px;
|
|
515
|
+
bottom: 70px;
|
|
516
|
+
right: 10px;
|
|
517
|
+
z-index: 200000;
|
|
518
|
+
}
|
|
519
|
+
.annotation-marker {
|
|
520
|
+
color: #ffffff;
|
|
521
|
+
font-size: 12px;
|
|
522
|
+
line-height: 2.4;
|
|
523
|
+
text-align: center;
|
|
524
|
+
font-family: Arial;
|
|
525
|
+
font-weight: bold;
|
|
526
|
+
position: absolute;
|
|
527
|
+
width: 32px;
|
|
528
|
+
height: 32px;
|
|
529
|
+
border-radius: 16px;
|
|
530
|
+
border: 2px solid #ffffff;
|
|
531
|
+
background: black;
|
|
532
|
+
visibility: hidden;
|
|
533
|
+
box-shadow: 5px 5px 15px 1px #000000;
|
|
534
|
+
z-index: 0;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
.annotation-label {
|
|
538
|
+
position: absolute;
|
|
539
|
+
max-width: 250px;
|
|
540
|
+
min-height: 50px;
|
|
541
|
+
padding: 8px;
|
|
542
|
+
padding-left: 12px;
|
|
543
|
+
padding-right: 12px;
|
|
544
|
+
background: #ffffff;
|
|
545
|
+
color: #000000;
|
|
546
|
+
-webkit-border-radius: 3px;
|
|
547
|
+
-moz-border-radius: 3px;
|
|
548
|
+
border-radius: 8px;
|
|
549
|
+
border: #ffffff solid 2px;
|
|
550
|
+
box-shadow: 5px 5px 15px 1px #000000;
|
|
551
|
+
z-index: 90000;
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
.annotation-label:after {
|
|
555
|
+
content: '';
|
|
556
|
+
position: absolute;
|
|
557
|
+
border-style: solid;
|
|
558
|
+
border-width: 8px 12px 8px 0;
|
|
559
|
+
border-color: transparent white;
|
|
560
|
+
display: block;
|
|
561
|
+
width: 0;
|
|
562
|
+
z-index: 1;
|
|
563
|
+
margin-top: -11px;
|
|
564
|
+
left: -12px;
|
|
565
|
+
top: 20px;
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
.annotation-label:before {
|
|
569
|
+
content: '';
|
|
570
|
+
position: absolute;
|
|
571
|
+
border-style: solid;
|
|
572
|
+
border-width: 9px 13px 9px 0;
|
|
573
|
+
border-color: transparent #ffffff;
|
|
574
|
+
display: block;
|
|
575
|
+
width: 0;
|
|
576
|
+
z-index: 0;
|
|
577
|
+
margin-top: -12px;
|
|
578
|
+
left: -15px;
|
|
579
|
+
top: 20px;
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
.annotation-title {
|
|
583
|
+
font: normal 20px arial, serif;
|
|
584
|
+
margin-bottom: 8px;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
.annotation-desc {
|
|
588
|
+
font: normal 14px arial, serif;
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
.hide-annotations .annotation-label,
|
|
592
|
+
.hide-annotations .annotation-marker {
|
|
593
|
+
visibility: hidden;
|
|
594
|
+
opacity: 0;
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
body:not(.hide-annotations) .annotation-marker {
|
|
598
|
+
visibility: visible !important;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
body:not(.hide-annotations) .annotation-label {
|
|
602
|
+
visibility: visible !important;
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
#dlgNoteTxt {
|
|
606
|
+
width: 100%;
|
|
607
|
+
max-width: 100%;
|
|
608
|
+
box-sizing: border-box;
|
|
609
|
+
height: calc(100% - 36px);
|
|
610
|
+
padding: 5px;
|
|
611
|
+
resize: none;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
#dlgNoteTxt:focus,
|
|
615
|
+
#dlgNoteTxt:active {
|
|
616
|
+
outline-width: 0 !important;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
.ui-widget-overlay {
|
|
620
|
+
z-index: 90000004;
|
|
621
|
+
opacity: 0.3 !important;
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
.ui-dialog {
|
|
625
|
+
z-index: 90000005;
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
.ui-dialog .ui-dialog-content {
|
|
629
|
+
padding: 11px 8px 0 8px;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
.ui-dialog .ui-dialog-buttonpane {
|
|
633
|
+
padding: 5px 2px 4px 7px;
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
.ui-state-active,
|
|
637
|
+
.ui-widget-content .ui-state-active,
|
|
638
|
+
.ui-widget-header .ui-state-active,
|
|
639
|
+
a.ui-button:active,
|
|
640
|
+
.ui-button:active,
|
|
641
|
+
.ui-button.ui-state-active:hover {
|
|
642
|
+
border: 1px solid #474747;
|
|
643
|
+
background: #474747;
|
|
644
|
+
font-weight: normal;
|
|
645
|
+
color: hsl(0,0%,85%);
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
#dlgNoteTitle {
|
|
649
|
+
width: 100%;
|
|
650
|
+
margin-bottom: 8px;
|
|
651
|
+
font-size: 16px;
|
|
652
|
+
height: 24px;
|
|
653
|
+
}
|
|
654
|
+
#treeViewContainerWrap {
|
|
655
|
+
position: absolute;
|
|
656
|
+
height: calc(100% - 32px);
|
|
657
|
+
width: 350px;
|
|
658
|
+
top: 51px;
|
|
659
|
+
left: 0;
|
|
660
|
+
border-right: 6px solid #EEEEEE;
|
|
661
|
+
z-index: 89000005;
|
|
662
|
+
display: none;
|
|
663
|
+
background: #ffffff;
|
|
664
|
+
/*padding-right: 8px;*/
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
#treeViewContainer {
|
|
668
|
+
pointer-events: all;
|
|
669
|
+
height: 100%;
|
|
670
|
+
overflow-y: auto;
|
|
671
|
+
overflow-x: hidden;
|
|
672
|
+
color: black;
|
|
673
|
+
width: 100%;
|
|
674
|
+
padding-left: 10px;
|
|
675
|
+
font-family: 'Roboto', sans-serif;
|
|
676
|
+
font-size: 15px;
|
|
677
|
+
user-select: none;
|
|
678
|
+
-ms-user-select: none;
|
|
679
|
+
-moz-user-select: none;
|
|
680
|
+
-webkit-user-select: none;
|
|
681
|
+
z-index: 89000006;
|
|
682
|
+
background: #ffffff;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
.treeview-expanded #treeViewContainer {
|
|
686
|
+
display: block;
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
#treeViewContainer ul {
|
|
690
|
+
list-style: none;
|
|
691
|
+
padding-left: 1.75em;
|
|
692
|
+
pointer-events: none;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
#treeViewContainer ul li {
|
|
696
|
+
position: relative;
|
|
697
|
+
width: 500px;
|
|
698
|
+
pointer-events: none;
|
|
699
|
+
padding-top: 3px;
|
|
700
|
+
padding-bottom: 3px;
|
|
701
|
+
vertical-align: middle;
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
#treeViewContainer ul li a {
|
|
705
|
+
background-color: #eee;
|
|
706
|
+
border-radius: 50%;
|
|
707
|
+
color: #000;
|
|
708
|
+
display: inline-block;
|
|
709
|
+
height: 1.5em;
|
|
710
|
+
left: -1.5em;
|
|
711
|
+
position: absolute;
|
|
712
|
+
text-align: center;
|
|
713
|
+
text-decoration: none;
|
|
714
|
+
width: 1.5em;
|
|
715
|
+
pointer-events: all;
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
#treeViewContainer ul li a.plus {
|
|
719
|
+
background-color: #ded;
|
|
720
|
+
pointer-events: all;
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
#treeViewContainer ul li a.minus {
|
|
724
|
+
background-color: #eee;
|
|
725
|
+
pointer-events: all;
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
#treeViewContainer ul li a:active {
|
|
729
|
+
top: 1px;
|
|
730
|
+
pointer-events: all;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
#treeViewContainer ul li span:hover {
|
|
734
|
+
color: white;
|
|
735
|
+
cursor: pointer;
|
|
736
|
+
background: black;
|
|
737
|
+
padding-left: 2px;
|
|
738
|
+
pointer-events: all;
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
#treeViewContainer ul li span {
|
|
742
|
+
display: inline-block;
|
|
743
|
+
width: calc(100% - 50px);
|
|
744
|
+
padding-left: 2px;
|
|
745
|
+
pointer-events: all;
|
|
746
|
+
height: 23px;
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
#treeViewContainer .highlighted-node { /* Appearance of node highlighted with TreeViewPlugin#showNode() */
|
|
750
|
+
border: black solid 1px;
|
|
751
|
+
background: yellow;
|
|
752
|
+
color: black;
|
|
753
|
+
padding-left: 1px;
|
|
754
|
+
padding-right: 5px;
|
|
755
|
+
pointer-events: all;
|
|
756
|
+
}
|
|
757
|
+
.xeokit-context-menu {
|
|
758
|
+
font-family: 'Roboto', sans-serif;
|
|
759
|
+
font-size: 15px;
|
|
760
|
+
display: none;
|
|
761
|
+
z-index: 89000006 !important;
|
|
762
|
+
background: rgba(255, 255, 255, 0.46);
|
|
763
|
+
border: 1px solid black;
|
|
764
|
+
border-radius: 6px;
|
|
765
|
+
padding: 0;
|
|
766
|
+
width: 200px;
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
.xeokit-context-menu ul {
|
|
770
|
+
list-style: none;
|
|
771
|
+
margin-left: 0;
|
|
772
|
+
padding: 0;
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
.xeokit-context-menu ul li {
|
|
776
|
+
list-style-type: none;
|
|
777
|
+
padding-left: 10px;
|
|
778
|
+
padding-right: 20px;
|
|
779
|
+
padding-top: 4px;
|
|
780
|
+
padding-bottom: 4px;
|
|
781
|
+
color: black;
|
|
782
|
+
border-bottom: 1px solid gray;
|
|
783
|
+
background: rgba(255, 255, 255, 0.46);
|
|
784
|
+
cursor: pointer;
|
|
785
|
+
width: calc(100% - 30px);
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
.xeokit-context-menu ul li:hover {
|
|
789
|
+
background: black;
|
|
790
|
+
color: white;
|
|
791
|
+
font-weight: normal;
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
.xeokit-context-menu ul li span {
|
|
795
|
+
display: inline-block;
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
.xeokit-context-menu .disabled {
|
|
799
|
+
display: inline-block;
|
|
800
|
+
color: gray;
|
|
801
|
+
cursor: default;
|
|
802
|
+
font-weight: normal;
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
.xeokit-context-menu .disabled:hover {
|
|
806
|
+
color: gray;
|
|
807
|
+
cursor: default;
|
|
808
|
+
background: #eeeeee;
|
|
809
|
+
font-weight: normal;
|
|
810
|
+
}
|
|
811
|
+
#storeyViewsSidebar {
|
|
812
|
+
position: absolute;
|
|
813
|
+
height: calc(100% - 32px);
|
|
814
|
+
width: 350px;
|
|
815
|
+
top: 51px;
|
|
816
|
+
left: 0;
|
|
817
|
+
border-right: 1px solid #EEEEEE;
|
|
818
|
+
z-index: 89000005;
|
|
819
|
+
display: none;
|
|
820
|
+
background: #ffffff;
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
#storeyViewsContainer {
|
|
824
|
+
pointer-events: all;
|
|
825
|
+
height: 100%;
|
|
826
|
+
overflow-y: auto;
|
|
827
|
+
overflow-x: hidden;
|
|
828
|
+
color: black;
|
|
829
|
+
width: 100%;
|
|
830
|
+
text-align: center;
|
|
831
|
+
z-index: 89000006;
|
|
832
|
+
background: #ffffff;
|
|
833
|
+
padding-top: 15px;
|
|
834
|
+
padding-bottom: 15px;
|
|
835
|
+
position: relative;
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
#storeyMap {
|
|
839
|
+
position: absolute;
|
|
840
|
+
left: 10px;
|
|
841
|
+
top: 60px;
|
|
842
|
+
margin-top: 20px;
|
|
843
|
+
overflow-y: hidden;
|
|
844
|
+
height: auto;
|
|
845
|
+
pointer-events: all;
|
|
846
|
+
width: auto;
|
|
847
|
+
user-select: none;
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
#planPointer {
|
|
851
|
+
color: #000000;
|
|
852
|
+
line-height: 1.8;
|
|
853
|
+
text-align: center;
|
|
854
|
+
font-family: "monospace";
|
|
855
|
+
font-weight: bold;
|
|
856
|
+
position: absolute;
|
|
857
|
+
width: 60px;
|
|
858
|
+
height: 60px;
|
|
859
|
+
/* storey-map-camera.svg URL-encoder for svg */
|
|
860
|
+
background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3179_133590)'%3E%3Ccircle cx='30' cy='30' r='5' fill='black'/%3E%3Cpath d='M30 0C26.0603 -4.69799e-08 22.1593 0.775973 18.5195 2.28361C14.8797 3.79126 11.5726 6.00104 8.7868 8.7868C6.00104 11.5726 3.79125 14.8797 2.28361 18.5195C0.775972 22.1593 -5.94871e-07 26.0603 0 30L30 30L30 0Z' fill='url(%23paint0_radial_3179_133590)'/%3E%3C/g%3E%3Cdefs%3E%3CradialGradient id='paint0_radial_3179_133590' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(30 30) rotate(90) scale(30)'%3E%3Cstop/%3E%3Cstop offset='1' stop-opacity='0'/%3E%3C/radialGradient%3E%3CclipPath id='clip0_3179_133590'%3E%3Crect width='60' height='60' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
|
|
861
|
+
background-repeat: no-repeat;
|
|
862
|
+
background-size: 60px 60px;
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
#storeyViewsContainer img {
|
|
866
|
+
max-width: 100%;
|
|
867
|
+
}
|
|
868
|
+
#propInspector {
|
|
869
|
+
width: 278px;
|
|
870
|
+
background: #f8f8f8;
|
|
871
|
+
height: calc(100% - 32px);
|
|
872
|
+
position: fixed;
|
|
873
|
+
top: 51px;
|
|
874
|
+
right: 0;
|
|
875
|
+
z-index: 89000004;
|
|
876
|
+
display: none;
|
|
877
|
+
box-sizing: border-box;
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
.prop-inspector-inner-wrap {
|
|
881
|
+
border-left: 1px solid silver;
|
|
882
|
+
border-right: 1px solid silver;
|
|
883
|
+
padding: 32px 10px 20px 10px;
|
|
884
|
+
height: calc(100% - 10px);
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
.prop-inspector-close {
|
|
888
|
+
position: absolute;
|
|
889
|
+
top: 4px;
|
|
890
|
+
left: 3px;
|
|
891
|
+
font-weight: 400;
|
|
892
|
+
padding: 2px 8px 7px 8px;
|
|
893
|
+
cursor: pointer;
|
|
894
|
+
transform: scaleX(1.2);
|
|
895
|
+
font-size: 18px;
|
|
896
|
+
font-family: Arial;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
.prop-inspector-content {
|
|
900
|
+
height: 100%;
|
|
901
|
+
font-size: 14px;
|
|
902
|
+
overflow-y: auto;
|
|
903
|
+
overflow-x: hidden;
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
.element-attributes {
|
|
907
|
+
margin-top: 10px;
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
.xeokit-table .td1 {
|
|
911
|
+
font-weight: bold;
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
.xeokit-table td {
|
|
915
|
+
padding: 8px;
|
|
916
|
+
border-top: 1px solid #E0E0E0;
|
|
917
|
+
word-wrap: break-word;
|
|
918
|
+
vertical-align: top;
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
.xeokit-table tr:first-child td {
|
|
922
|
+
border-top: none !important;
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
.xeokit-table tr td:first-child {
|
|
926
|
+
border-right: 1px solid #E0E0E0;
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
.subtitle.xeokit-no-prop-set-warning {
|
|
930
|
+
padding: 8px;
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
.xeokit-table {
|
|
934
|
+
width: 100%;
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
.prop-inspector-title {
|
|
938
|
+
font-size: 16px;
|
|
939
|
+
font-weight: bold;
|
|
940
|
+
padding-bottom: 12px;
|
|
941
|
+
position: absolute;
|
|
942
|
+
top: 8px;
|
|
943
|
+
left: 30px;
|
|
944
|
+
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
.xeokit-accordion {
|
|
948
|
+
margin-top: 20px;
|
|
949
|
+
}
|
|
950
|
+
|
|
951
|
+
.ui-accordion .ui-accordion-content.xeokit-accordion-panel {
|
|
952
|
+
padding: 2px 0 2px 0 !important;
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
.ui-dialog-comparison {
|
|
956
|
+
z-index: 99000005;
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
.uk-tab>*>a {
|
|
960
|
+
border-bottom-width: 2px;
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
.ui-dialog-comparison .ui-dialog-titlebar {
|
|
964
|
+
border-bottom: 1px solid #E5E5E5 !important;
|
|
965
|
+
border-radius: 0;
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
.comparison-popup-wrap {
|
|
969
|
+
display: flex;
|
|
970
|
+
flex-direction: column;
|
|
971
|
+
width: 100% !important;
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
.comparison-popup-head {
|
|
975
|
+
height: 100px;
|
|
976
|
+
display: flex;
|
|
977
|
+
flex-direction: row;
|
|
978
|
+
padding-bottom: 20px;
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
.comparison-popup-body {
|
|
982
|
+
height: calc(100% - 100px);
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
.comparison-popup-head-item {
|
|
986
|
+
/*max-width: 140px;*/
|
|
987
|
+
text-align: center;
|
|
988
|
+
border: 1px solid #E5E5E5;
|
|
989
|
+
padding: 8px;
|
|
990
|
+
border-radius: 2px;
|
|
991
|
+
width: calc(50% - 4px);
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
.comparison-popup-head-item.added {
|
|
995
|
+
border-bottom: 2px solid #09FF32;
|
|
996
|
+
margin-right: 4px;
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
.comparison-popup-head-item.removed {
|
|
1000
|
+
border-bottom: 2px solid #FE001B;
|
|
1001
|
+
margin-left: 4px;
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
.comparison-popup-body .uk-switcher {
|
|
1005
|
+
height: calc(100% - 53px);
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
.comparison-popup-body .uk-switcher li {
|
|
1009
|
+
overflow: auto;
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
.comparison-popup-body .uk-position-relative {
|
|
1013
|
+
height: 100%;
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
.comparison-popup-body ul.list-items {
|
|
1017
|
+
padding-left: 0;
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
.comparison-popup-body .list-items li {
|
|
1021
|
+
list-style: none !important;
|
|
1022
|
+
padding-left: 8px;
|
|
1023
|
+
margin-bottom: 4px;
|
|
1024
|
+
font-size: 14px;
|
|
1025
|
+
cursor: pointer;
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
.comparison-popup-body .list-items li .name {
|
|
1029
|
+
font-weight: bold;
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
.comparison-popup-body .item-added {
|
|
1033
|
+
border-left: 2px solid #09FF32;
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
.comparison-popup-body .item-removed {
|
|
1037
|
+
border-left: 2px solid #FE001B;
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
.ui-dialog.ui-dialog-comparison .ui-dialog-titlebar-buttonpane>a {
|
|
1041
|
+
margin-right: 2px !important;
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
.ui-dialog.ui-dialog-comparison .ui-dialog-titlebar-buttonpane>a:last-child {
|
|
1045
|
+
margin-right: 0;
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
.vitro-bim-viewer-issue-detail {
|
|
1049
|
+
position: absolute;
|
|
1050
|
+
bottom: 0px;
|
|
1051
|
+
right: 0px;
|
|
1052
|
+
width: 410px;
|
|
1053
|
+
z-index: 10000001;
|
|
1054
|
+
background: #fff;
|
|
1055
|
+
height: calc(100% - 50px);
|
|
1056
|
+
border-left: 2px solid #eeeff0;
|
|
1057
|
+
display: none;
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
.vitro-bim-viewer-issue-detail * {
|
|
1061
|
+
box-sizing: border-box !important;
|
|
1062
|
+
}
|
|
1063
|
+
|
|
1064
|
+
#sidebarWrap {
|
|
1065
|
+
width: 410px;
|
|
1066
|
+
height: calc(100% - 50px);
|
|
1067
|
+
top: 50px;
|
|
1068
|
+
z-index: 10000000;
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
.sidebar {
|
|
1072
|
+
background: #fff;
|
|
1073
|
+
border-left: 2px solid #eeeff0;
|
|
1074
|
+
border-right: none;
|
|
1075
|
+
padding: 32px 0 16px 0;
|
|
1076
|
+
height: 100%;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
.sidebar-close,
|
|
1080
|
+
.sidebar-close:hover,
|
|
1081
|
+
.sidebar-close:active,
|
|
1082
|
+
.prop-inspector-close,
|
|
1083
|
+
.prop-inspector-close:hover,
|
|
1084
|
+
.prop-inspector-close:active {
|
|
1085
|
+
top: 4px;
|
|
1086
|
+
left: 3px;
|
|
1087
|
+
height: 24px;
|
|
1088
|
+
width: 24px;
|
|
1089
|
+
padding: 0px;
|
|
1090
|
+
color: transparent;
|
|
1091
|
+
background-size: 100%;
|
|
1092
|
+
display: block;
|
|
1093
|
+
transform: none;
|
|
1094
|
+
/* close.svg URL-encoder for SVG */
|
|
1095
|
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='iconoir:cancel'%3E%3Cpath id='Vector' d='M6.75781 17.2438L12.0008 12.0008L17.2438 17.2438M17.2438 6.75781L11.9998 12.0008L6.75781 6.75781' stroke='%234A556C' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E%0A");
|
|
1096
|
+
}
|
|
1097
|
+
|
|
1098
|
+
#fileVersionSelect {
|
|
1099
|
+
top: calc(50% - 16px);
|
|
1100
|
+
}
|