qwc2 2025.3.31
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/LICENSE +28 -0
- package/README.md +68 -0
- package/actions/display.js +7 -0
- package/actions/editing.js +7 -0
- package/actions/layerinfo.js +7 -0
- package/actions/layers.js +8 -0
- package/actions/localConfig.js +7 -0
- package/actions/locale.js +10 -0
- package/actions/locate.js +8 -0
- package/actions/logging.js +7 -0
- package/actions/map.js +15 -0
- package/actions/measurement.js +8 -0
- package/actions/processNotifications.js +7 -0
- package/actions/redlining.js +7 -0
- package/actions/redliningPick.js +7 -0
- package/actions/serviceinfo.js +7 -0
- package/actions/task.js +9 -0
- package/actions/theme.js +24 -0
- package/actions/windows.js +10 -0
- package/components/AppMenu.js +8 -0
- package/components/AttributeForm.js +34 -0
- package/components/AutoEditForm.js +8 -0
- package/components/CoordinateDisplayer.js +7 -0
- package/components/EditComboField.js +10 -0
- package/components/EditUploadField.js +8 -0
- package/components/FullscreenSwitcher.js +8 -0
- package/components/Icon.js +7 -0
- package/components/IdentifyViewer.js +16 -0
- package/components/ImportLayer.js +25 -0
- package/components/LayerInfoWindow.js +7 -0
- package/components/LinkFeatureForm.js +10 -0
- package/components/MapSelection.js +13 -0
- package/components/NumericInputWindow.js +7 -0
- package/components/PickFeature.js +7 -0
- package/components/PluginsContainer.js +8 -0
- package/components/PrintSelection.js +54 -0
- package/components/QtDesignerForm.js +30 -0
- package/components/ResizeableWindow.js +12 -0
- package/components/SearchBox.js +26 -0
- package/components/ServiceInfoWindow.js +7 -0
- package/components/SideBar.js +9 -0
- package/components/StandardApp.js +35 -0
- package/components/Swipeable.js +1 -0
- package/components/TaskBar.js +7 -0
- package/components/ThemeLayersListWindow.js +9 -0
- package/components/ThemeList.js +12 -0
- package/components/Toolbar.js +7 -0
- package/components/WindowManager.js +7 -0
- package/components/map/OlLayer.js +12 -0
- package/components/map/OlLocate.css +56 -0
- package/components/map/OlLocate.js +17 -0
- package/components/map/OlMap.js +11 -0
- package/components/map/layers/BingLayer.js +8 -0
- package/components/map/layers/GoogleLayer.js +27 -0
- package/components/map/layers/GraticuleLayer.js +8 -0
- package/components/map/layers/ImageLayer.js +8 -0
- package/components/map/layers/MVTLayer.js +7 -0
- package/components/map/layers/OSMLayer.js +8 -0
- package/components/map/layers/OverlayLayer.js +10 -0
- package/components/map/layers/VectorLayer.js +14 -0
- package/components/map/layers/WFSLayer.js +11 -0
- package/components/map/layers/WMSLayer.js +11 -0
- package/components/map/layers/WMTSLayer.js +9 -0
- package/components/map/layers/XYZLayer.js +7 -0
- package/components/map/layers/index.js +8 -0
- package/components/map3d/BottomBar3D.js +7 -0
- package/components/map3d/Compare3D.js +12 -0
- package/components/map3d/Draw3D.js +10 -0
- package/components/map3d/ExportObjects3D.js +17 -0
- package/components/map3d/HeightProfile3D.js +8 -0
- package/components/map3d/HideObjects3D.js +12 -0
- package/components/map3d/Identify3D.js +13 -0
- package/components/map3d/LayerTree3D.js +8 -0
- package/components/map3d/Map3D.js +29 -0
- package/components/map3d/Map3DLight.js +10 -0
- package/components/map3d/MapControls3D.js +20 -0
- package/components/map3d/MapExport3D.js +11 -0
- package/components/map3d/Measure3D.js +23 -0
- package/components/map3d/OverviewMap3D.js +9 -0
- package/components/map3d/SearchField3D.js +16 -0
- package/components/map3d/TopBar3D.js +7 -0
- package/components/map3d/View3DSwitcher.js +7 -0
- package/components/map3d/drawtool/CreateTool3D.js +9 -0
- package/components/map3d/drawtool/EditTool3D.js +9 -0
- package/components/map3d/drawtool/NumericInput3D.js +7 -0
- package/components/map3d/img/viewcone.svg +124 -0
- package/components/map3d/layers/VectorLayer3D.js +7 -0
- package/components/map3d/layers/WFSLayer3D.js +8 -0
- package/components/map3d/layers/WMSLayer3D.js +7 -0
- package/components/map3d/layers/WMTSLayer3D.js +9 -0
- package/components/map3d/layers/index.js +8 -0
- package/components/map3d/models/arrow.glb +0 -0
- package/components/map3d/models/pin.glb +0 -0
- package/components/map3d/slices/map3d.js +1 -0
- package/components/map3d/style/BottomBar3D.css +67 -0
- package/components/map3d/style/Compare3D.css +57 -0
- package/components/map3d/style/Draw3D.css +7 -0
- package/components/map3d/style/HideObjects3D.css +29 -0
- package/components/map3d/style/LayerTree3D.css +126 -0
- package/components/map3d/style/Map3D.css +42 -0
- package/components/map3d/style/Map3DLight.css +72 -0
- package/components/map3d/style/MapControls3D.css +56 -0
- package/components/map3d/style/MapExport3D.css +25 -0
- package/components/map3d/style/OverviewMap3D.css +37 -0
- package/components/map3d/style/SearchField3D.css +7 -0
- package/components/map3d/style/View3DSwitcher.css +27 -0
- package/components/map3d/utils/Tiles3DStyle.js +1 -0
- package/components/share/ShareLink.js +7 -0
- package/components/share/ShareQRCode.js +8 -0
- package/components/share/ShareSocials.js +9 -0
- package/components/share/style/ShareLink.css +13 -0
- package/components/share/style/ShareSocials.css +9 -0
- package/components/style/App.css +229 -0
- package/components/style/AppMenu.css +162 -0
- package/components/style/AttributeForm.css +57 -0
- package/components/style/AutoEditForm.css +64 -0
- package/components/style/DefaultColorScheme.css +60 -0
- package/components/style/EditUploadField.css +103 -0
- package/components/style/FullscreenSwitcher.css +25 -0
- package/components/style/Icon.css +26 -0
- package/components/style/IdentifyViewer.css +249 -0
- package/components/style/ImportLayer.css +28 -0
- package/components/style/LayerInfoWindow.css +46 -0
- package/components/style/LinkFeatureForm.css +48 -0
- package/components/style/NumericInputWindow.css +11 -0
- package/components/style/PickFeature.css +25 -0
- package/components/style/PluginsContainer.css +4 -0
- package/components/style/QtDesignerForm.css +225 -0
- package/components/style/ResizeableWindow.css +178 -0
- package/components/style/SearchBox.css +159 -0
- package/components/style/ServiceInfoWindow.css +34 -0
- package/components/style/SideBar.css +100 -0
- package/components/style/TaskBar.css +35 -0
- package/components/style/ThemeLayersListWindow.css +47 -0
- package/components/style/ThemeList.css +200 -0
- package/components/style/Toolbar.css +20 -0
- package/components/style/WindowManager.css +50 -0
- package/components/timeline/FixedTimeline.js +10 -0
- package/components/timeline/InfiniteTimeline.js +13 -0
- package/components/timeline/TimelineFeaturesSlider.js +10 -0
- package/components/timeline/style/FixedTimeline.css +76 -0
- package/components/timeline/style/InfiniteTimeline.css +94 -0
- package/components/timeline/style/TimelineFeaturesSlider.css +131 -0
- package/components/widgets/AccordeonWidget.js +7 -0
- package/components/widgets/ButtonBar.js +7 -0
- package/components/widgets/ColorButton.js +8 -0
- package/components/widgets/ComboBox.js +7 -0
- package/components/widgets/CopyButton.js +7 -0
- package/components/widgets/DateTimeInput.js +8 -0
- package/components/widgets/EditableSelect.js +8 -0
- package/components/widgets/FileSelector.js +9 -0
- package/components/widgets/Input.js +7 -0
- package/components/widgets/InputContainer.js +7 -0
- package/components/widgets/LayerCatalogWidget.js +3 -0
- package/components/widgets/MenuButton.js +1 -0
- package/components/widgets/ModalDialog.js +7 -0
- package/components/widgets/NavBar.js +7 -0
- package/components/widgets/NumberInput.js +9 -0
- package/components/widgets/PopupMenu.js +1 -0
- package/components/widgets/Primitives.js +7 -0
- package/components/widgets/ReCaptchaWidget.js +1 -0
- package/components/widgets/SearchWidget.js +7 -0
- package/components/widgets/Spinner.js +6 -0
- package/components/widgets/SuggestionInput.js +7 -0
- package/components/widgets/TextInput.js +7 -0
- package/components/widgets/ToggleSwitch.js +7 -0
- package/components/widgets/VectorLayerPicker.js +8 -0
- package/components/widgets/style/AccordeonWidget.css +22 -0
- package/components/widgets/style/ButtonBar.css +88 -0
- package/components/widgets/style/ColorButton.css +88 -0
- package/components/widgets/style/ComboBox.css +83 -0
- package/components/widgets/style/CopyButton.css +21 -0
- package/components/widgets/style/EditableSelect.css +47 -0
- package/components/widgets/style/FileSelector.css +14 -0
- package/components/widgets/style/InputContainer.css +34 -0
- package/components/widgets/style/LayerCatalogWidget.css +59 -0
- package/components/widgets/style/MenuButton.css +122 -0
- package/components/widgets/style/ModalDialog.css +50 -0
- package/components/widgets/style/NavBar.css +12 -0
- package/components/widgets/style/NumberInput.css +76 -0
- package/components/widgets/style/SearchWidget.css +43 -0
- package/components/widgets/style/Spinner.css +32 -0
- package/components/widgets/style/SuggestionInput.css +8 -0
- package/components/widgets/style/TextInput.css +94 -0
- package/components/widgets/style/ToggleSwitch.css +61 -0
- package/components/widgets/style/VectorLayerPicker.css +3 -0
- package/icons/2d.svg +70 -0
- package/icons/3d.svg +70 -0
- package/icons/3d2d.svg +92 -0
- package/icons/after.svg +76 -0
- package/icons/arrow-down.svg +60 -0
- package/icons/arrow-up.svg +60 -0
- package/icons/before.svg +76 -0
- package/icons/bglayer.svg +71 -0
- package/icons/bookmark.svg +170 -0
- package/icons/box.svg +63 -0
- package/icons/buffer.svg +67 -0
- package/icons/camera.svg +118 -0
- package/icons/catalog.svg +62 -0
- package/icons/checked.svg +80 -0
- package/icons/chevron-down.svg +60 -0
- package/icons/chevron-left.svg +59 -0
- package/icons/chevron-right.svg +60 -0
- package/icons/chevron-up.svg +60 -0
- package/icons/circle.svg +70 -0
- package/icons/clear.svg +62 -0
- package/icons/clock.svg +71 -0
- package/icons/cog.svg +60 -0
- package/icons/collapse.svg +73 -0
- package/icons/compare.svg +72 -0
- package/icons/cone.svg +58 -0
- package/icons/confirm.svg +62 -0
- package/icons/copy.svg +60 -0
- package/icons/cuboid.svg +58 -0
- package/icons/cyclomedia.svg +47 -0
- package/icons/cylinder.svg +58 -0
- package/icons/dataimport.svg +116 -0
- package/icons/detach.svg +79 -0
- package/icons/dock.svg +82 -0
- package/icons/dock_bottom.svg +82 -0
- package/icons/dock_left.svg +84 -0
- package/icons/dock_right.svg +84 -0
- package/icons/dock_top.svg +84 -0
- package/icons/draw.svg +78 -0
- package/icons/editdraw.svg +84 -0
- package/icons/edited.svg +78 -0
- package/icons/editing.svg +118 -0
- package/icons/ellipse.svg +72 -0
- package/icons/embed.svg +88 -0
- package/icons/expand.svg +73 -0
- package/icons/export.svg +126 -0
- package/icons/eye.svg +127 -0
- package/icons/featureform.svg +115 -0
- package/icons/fill.svg +62 -0
- package/icons/filter.svg +69 -0
- package/icons/folder-open.svg +60 -0
- package/icons/freehand.svg +82 -0
- package/icons/group.svg +76 -0
- package/icons/home.svg +60 -0
- package/icons/identify_radius.svg +71 -0
- package/icons/identify_region.svg +71 -0
- package/icons/import.svg +62 -0
- package/icons/info-sign.svg +60 -0
- package/icons/info.svg +80 -0
- package/icons/layers.svg +71 -0
- package/icons/light.svg +77 -0
- package/icons/line.svg +61 -0
- package/icons/line_buffer.svg +65 -0
- package/icons/link.svg +75 -0
- package/icons/list-alt.svg +111 -0
- package/icons/lock.svg +54 -0
- package/icons/login.svg +56 -0
- package/icons/logout.svg +56 -0
- package/icons/map3d.svg +51 -0
- package/icons/maximize.svg +84 -0
- package/icons/measure.svg +82 -0
- package/icons/measure_line.svg +87 -0
- package/icons/measure_polygon.svg +88 -0
- package/icons/menu-hamburger.svg +60 -0
- package/icons/minimize.svg +76 -0
- package/icons/minus-sign.svg +60 -0
- package/icons/minus.svg +61 -0
- package/icons/nav-end.svg +74 -0
- package/icons/nav-left.svg +74 -0
- package/icons/nav-right.svg +74 -0
- package/icons/nav-start.svg +73 -0
- package/icons/new.svg +84 -0
- package/icons/nodetool.svg +68 -0
- package/icons/numericinput.svg +86 -0
- package/icons/ok.svg +60 -0
- package/icons/open.svg +79 -0
- package/icons/open_link.svg +74 -0
- package/icons/paint.svg +75 -0
- package/icons/pen.svg +41 -0
- package/icons/person.svg +44 -0
- package/icons/pick.svg +67 -0
- package/icons/pick_point.svg +74 -0
- package/icons/pick_region.svg +71 -0
- package/icons/plus.svg +60 -0
- package/icons/point.svg +67 -0
- package/icons/point_buffer.svg +74 -0
- package/icons/polygon.svg +61 -0
- package/icons/print.svg +60 -0
- package/icons/pyramid.svg +58 -0
- package/icons/radio_checked.svg +78 -0
- package/icons/radio_tristate.svg +75 -0
- package/icons/radio_unchecked.svg +72 -0
- package/icons/rasterexport.svg +124 -0
- package/icons/rect.svg +63 -0
- package/icons/refresh.svg +44 -0
- package/icons/remove.svg +60 -0
- package/icons/report.svg +84 -0
- package/icons/routing-bicycle.svg +40 -0
- package/icons/routing-bus.svg +40 -0
- package/icons/routing-cablecar.svg +40 -0
- package/icons/routing-car.svg +40 -0
- package/icons/routing-ship.svg +40 -0
- package/icons/routing-train.svg +40 -0
- package/icons/routing-tram.svg +40 -0
- package/icons/routing-truck.svg +40 -0
- package/icons/routing-walking.svg +40 -0
- package/icons/routing.svg +68 -0
- package/icons/save.svg +190 -0
- package/icons/scale.svg +62 -0
- package/icons/screenshot.svg +60 -0
- package/icons/search.svg +60 -0
- package/icons/selectbox.svg +79 -0
- package/icons/share.svg +64 -0
- package/icons/snap_edge.svg +79 -0
- package/icons/snap_vertex.svg +79 -0
- package/icons/sphere.svg +58 -0
- package/icons/square.svg +68 -0
- package/icons/sync.svg +72 -0
- package/icons/text.svg +68 -0
- package/icons/themes.svg +81 -0
- package/icons/tilt-down.svg +67 -0
- package/icons/tilt-left.svg +48 -0
- package/icons/tilt-right.svg +48 -0
- package/icons/tilt-up.svg +67 -0
- package/icons/today.svg +45 -0
- package/icons/tools.svg +77 -0
- package/icons/transformtool.svg +74 -0
- package/icons/transparency.svg +132 -0
- package/icons/trash.svg +60 -0
- package/icons/tree_minus.svg +81 -0
- package/icons/tree_plus.svg +81 -0
- package/icons/triangle-down.svg +59 -0
- package/icons/triangle-left.svg +60 -0
- package/icons/triangle-right.svg +60 -0
- package/icons/triangle-up.svg +59 -0
- package/icons/tristate.svg +79 -0
- package/icons/unchecked.svg +74 -0
- package/icons/undock.svg +82 -0
- package/icons/undock_bottom.svg +82 -0
- package/icons/undock_left.svg +82 -0
- package/icons/undock_right.svg +84 -0
- package/icons/undock_top.svg +84 -0
- package/icons/unmaximize.svg +84 -0
- package/icons/unminimize.svg +76 -0
- package/icons/up-down-arrow.svg +66 -0
- package/icons/warning.svg +72 -0
- package/icons/wedge.svg +58 -0
- package/icons/zoom.svg +60 -0
- package/icons/zoomin.svg +71 -0
- package/icons/zoomout.svg +80 -0
- package/libs/openlayers.js +11 -0
- package/package.json +135 -0
- package/plugins/API.js +114 -0
- package/plugins/AttributeTable.js +25 -0
- package/plugins/Authentication.js +13 -0
- package/plugins/BackgroundSwitcher.js +10 -0
- package/plugins/Bookmark.js +13 -0
- package/plugins/BottomBar.js +10 -0
- package/plugins/CookiePopup.js +9 -0
- package/plugins/Cyclomedia.js +11 -0
- package/plugins/Editing.js +21 -0
- package/plugins/FeatureForm.js +21 -0
- package/plugins/FeatureSearch.js +11 -0
- package/plugins/GeometryDigitizer.js +43 -0
- package/plugins/HeightProfile.js +26 -0
- package/plugins/Help.js +11 -0
- package/plugins/HomeButton.js +9 -0
- package/plugins/Identify.js +18 -0
- package/plugins/LayerCatalog.js +45 -0
- package/plugins/LayerTree.js +15 -0
- package/plugins/LocateButton.js +10 -0
- package/plugins/Map.js +22 -0
- package/plugins/MapCompare.js +11 -0
- package/plugins/MapCopyright.js +11 -0
- package/plugins/MapExport.js +23 -0
- package/plugins/MapFilter.js +20 -0
- package/plugins/MapInfoTooltip.js +32 -0
- package/plugins/MapLegend.js +14 -0
- package/plugins/MapTip.js +15 -0
- package/plugins/Measure.js +10 -0
- package/plugins/NewsPopup.js +12 -0
- package/plugins/Panoramax.js +10 -0
- package/plugins/Portal.js +10 -0
- package/plugins/Print.js +22 -0
- package/plugins/ProcessNotifications.js +11 -0
- package/plugins/Redlining.js +12 -0
- package/plugins/Reports.js +15 -0
- package/plugins/Routing.js +23 -0
- package/plugins/ScratchDrawing.js +15 -0
- package/plugins/Settings.js +12 -0
- package/plugins/Share.js +11 -0
- package/plugins/StartupMarker.js +12 -0
- package/plugins/TaskButton.js +9 -0
- package/plugins/ThemeSwitcher.js +10 -0
- package/plugins/TimeManager.js +21 -0
- package/plugins/TopBar.js +13 -0
- package/plugins/ValueTool.js +11 -0
- package/plugins/View3D.js +34 -0
- package/plugins/ZoomButtons.js +11 -0
- package/plugins/map/EditingSupport.js +13 -0
- package/plugins/map/LocateSupport.js +14 -0
- package/plugins/map/MeasurementSupport.js +15 -0
- package/plugins/map/OverviewSupport.js +14 -0
- package/plugins/map/RedliningPickSupport.js +12 -0
- package/plugins/map/RedliningSupport.js +28 -0
- package/plugins/map/ScaleBarSupport.js +10 -0
- package/plugins/map/SnapInteraction.js +1 -0
- package/plugins/map/SnapSupport.js +7 -0
- package/plugins/map/SnappingSupport.js +23 -0
- package/plugins/map/style/OverviewSupport.css +42 -0
- package/plugins/map/style/ScaleBarSupport.css +18 -0
- package/plugins/map/style/SnappingSupport.css +33 -0
- package/plugins/redlining/RedliningBufferSupport.js +8 -0
- package/plugins/style/AttributeTable.css +220 -0
- package/plugins/style/Authentication.css +16 -0
- package/plugins/style/BackgroundSwitcher.css +99 -0
- package/plugins/style/Bookmark.css +62 -0
- package/plugins/style/BottomBar.css +53 -0
- package/plugins/style/Buttons.css +68 -0
- package/plugins/style/CookiePopup.css +24 -0
- package/plugins/style/Cyclomedia.css +66 -0
- package/plugins/style/Editing.css +40 -0
- package/plugins/style/FeatureForm.css +21 -0
- package/plugins/style/FeatureSearch.css +71 -0
- package/plugins/style/GeometryDigitizer.css +28 -0
- package/plugins/style/HeightProfile.css +26 -0
- package/plugins/style/Identify.css +4 -0
- package/plugins/style/LayerCatalog.css +8 -0
- package/plugins/style/LayerTree.css +316 -0
- package/plugins/style/Map.css +43 -0
- package/plugins/style/MapCompare.css +27 -0
- package/plugins/style/MapCopyright.css +17 -0
- package/plugins/style/MapExport.css +55 -0
- package/plugins/style/MapFilter.css +101 -0
- package/plugins/style/MapInfoTooltip.css +78 -0
- package/plugins/style/MapLegend.css +36 -0
- package/plugins/style/MapTip.css +22 -0
- package/plugins/style/Measure.css +23 -0
- package/plugins/style/NewsPopup.css +87 -0
- package/plugins/style/Panoramax.css +15 -0
- package/plugins/style/Portal.css +115 -0
- package/plugins/style/Print.css +116 -0
- package/plugins/style/ProcessNotifications.css +55 -0
- package/plugins/style/Redlining.css +101 -0
- package/plugins/style/Reports.css +11 -0
- package/plugins/style/Routing.css +243 -0
- package/plugins/style/ScratchDrawing.css +8 -0
- package/plugins/style/Settings.css +11 -0
- package/plugins/style/Share.css +59 -0
- package/plugins/style/ThemeSwitcher.css +7 -0
- package/plugins/style/TimeManager.css +91 -0
- package/plugins/style/TopBar.css +50 -0
- package/plugins/style/ValueTool.css +60 -0
- package/reducers/display.js +7 -0
- package/reducers/editing.js +8 -0
- package/reducers/index.js +7 -0
- package/reducers/layerinfo.js +7 -0
- package/reducers/layers.js +14 -0
- package/reducers/localConfig.js +8 -0
- package/reducers/locale.js +8 -0
- package/reducers/locate.js +8 -0
- package/reducers/map.js +11 -0
- package/reducers/measurement.js +8 -0
- package/reducers/processNotifications.js +7 -0
- package/reducers/redlining.js +7 -0
- package/reducers/redliningPick.js +7 -0
- package/reducers/serviceinfo.js +7 -0
- package/reducers/task.js +7 -0
- package/reducers/theme.js +7 -0
- package/reducers/windows.js +7 -0
- package/scripts/dist.sh +16 -0
- package/scripts/gen-plugin-docs.js +9 -0
- package/scripts/makeIconkit.js +7 -0
- package/scripts/package-commands.bat +8 -0
- package/scripts/package-commands.sh +22 -0
- package/scripts/themesConfig.js +48 -0
- package/scripts/themesConfig.py +659 -0
- package/scripts/translateui.sh +51 -0
- package/scripts/updateTranslations.js +17 -0
- package/scripts/wmts_config_generator.py +169 -0
- package/selectors/searchproviders.js +12 -0
- package/static/translations/bg-BG.json +709 -0
- package/static/translations/ca-ES.json +709 -0
- package/static/translations/cs-CZ.json +709 -0
- package/static/translations/de-CH.json +709 -0
- package/static/translations/de-DE.json +709 -0
- package/static/translations/en-US.json +709 -0
- package/static/translations/es-ES.json +709 -0
- package/static/translations/fi-FI.json +709 -0
- package/static/translations/fr-FR.json +709 -0
- package/static/translations/hu-HU.json +709 -0
- package/static/translations/it-IT.json +709 -0
- package/static/translations/ja-JP.json +709 -0
- package/static/translations/nl-NL.json +709 -0
- package/static/translations/no-NO.json +709 -0
- package/static/translations/pl-PL.json +709 -0
- package/static/translations/pt-BR.json +709 -0
- package/static/translations/pt-PT.json +709 -0
- package/static/translations/ro-RO.json +709 -0
- package/static/translations/ru-RU.json +709 -0
- package/static/translations/sv-SE.json +709 -0
- package/static/translations/tr-TR.json +709 -0
- package/static/translations/tsconfig.json +606 -0
- package/stores/StandardStore.js +8 -0
- package/utils/ConfigUtils.js +9 -0
- package/utils/CoordinatesUtils.js +29 -0
- package/utils/DxfUtils.js +10 -0
- package/utils/EditingInterface.js +67 -0
- package/utils/EditingUtils.js +11 -0
- package/utils/FeatureStyles.js +10 -0
- package/utils/IdentifyUtils.js +12 -0
- package/utils/ImageEditor.js +15 -0
- package/utils/LayerUtils.js +57 -0
- package/utils/LocaleUtils.js +9 -0
- package/utils/MapUtils.js +66 -0
- package/utils/MeasureUtils.js +9 -0
- package/utils/MiscUtils.js +15 -0
- package/utils/PermaLinkUtils.js +11 -0
- package/utils/ResourceRegistry.js +7 -0
- package/utils/RoutingInterface.js +12 -0
- package/utils/SearchProviders.js +19 -0
- package/utils/ServiceLayerUtils.js +20 -0
- package/utils/Signal.js +2 -0
- package/utils/ThemeUtils.js +12 -0
- package/utils/VectorLayerUtils.js +20 -0
- package/utils/expr_grammar/README.md +3 -0
- package/utils/expr_grammar/grammar.js +3 -0
- package/utils/expr_grammar/grammar.ne +118 -0
- package/utils/expr_grammar/test.js +13 -0
- package/utils/img/README.markers +1 -0
- package/utils/img/arrowhead.svg +4 -0
- package/utils/img/marker-icon.png +0 -0
- package/utils/img/measurehead.svg +4 -0
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
div.MapExport div.mapexport-body {
|
|
2
|
+
padding: 0.25em;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
div.MapExport .mapexport-minimize-maximize {
|
|
6
|
+
margin-left: 1em;
|
|
7
|
+
padding: 0.25em;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
div.MapExport table.options-table {
|
|
11
|
+
width: 100%;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
div.MapExport table.options-table td {
|
|
15
|
+
padding: 0.125em 0;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
div.MapExport table.options-table td:first-child {
|
|
19
|
+
max-width: 10em;
|
|
20
|
+
overflow: hidden;
|
|
21
|
+
text-overflow: ellipsis;
|
|
22
|
+
padding-right: 0.25em;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
div.MapExport table.options-table td:nth-child(2) {
|
|
26
|
+
width: 99%;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
div.MapExport table.options-table td:nth-child(2) > * {
|
|
30
|
+
width: 100%;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
div.MapExport table.options-table textarea {
|
|
34
|
+
resize: vertical;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
div.MapExport div.button-bar {
|
|
38
|
+
margin-top: 0.5em;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
div.MapExport div.button-bar > button {
|
|
42
|
+
width: 100%;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
div.MapExport span.mapexport-wait {
|
|
46
|
+
display: flex;
|
|
47
|
+
align-items: center;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
div.MapExport span.mapexport-wait div.spinner {
|
|
51
|
+
width: 1.25em;
|
|
52
|
+
height: 1.25em;
|
|
53
|
+
margin-right: 0.5em;
|
|
54
|
+
flex: 0 0 auto;
|
|
55
|
+
}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
#MapFilter div.map-filter-entry {
|
|
2
|
+
margin: 0.25em;
|
|
3
|
+
border: 1px solid var(--border-color);
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
#MapFilter div.map-filter-entry-titlebar {
|
|
7
|
+
padding: 0.25em;
|
|
8
|
+
background-color: var(--titlebar-bg-color);
|
|
9
|
+
color: var(--titlebar-text-color);
|
|
10
|
+
font-weight: bold;
|
|
11
|
+
display: flex;
|
|
12
|
+
align-items: center;
|
|
13
|
+
height: 2em;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
#MapFilter div.map-filter-entry-titlebar > .map-filter-entry-title {
|
|
17
|
+
flex: 1 1 auto;
|
|
18
|
+
overflow-x: hidden;
|
|
19
|
+
text-overflow: ellipsis;
|
|
20
|
+
white-space: nowrap;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
#MapFilter div.map-filter-entry-titlebar > div.ToggleSwitch {
|
|
24
|
+
flex: 0 0 6em;
|
|
25
|
+
height: 1.5em;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
#MapFilter div.map-filter-entry-body {
|
|
29
|
+
padding: 0.25em;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
#MapFilter div.map-filter-invalid-warning {
|
|
33
|
+
background-color: orange;
|
|
34
|
+
display: flex;
|
|
35
|
+
align-items: center;
|
|
36
|
+
padding: 0.25em 0.5em;
|
|
37
|
+
margin: 0.25em;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
#MapFilter div.map-filter-invalid-warning > div {
|
|
41
|
+
margin-left: 0.25em;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
#MapFilter table.map-filter-entry-fields {
|
|
45
|
+
border-collapse: collapse;
|
|
46
|
+
width: 100%;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
#MapFilter table.map-filter-entry-fields td:first-child {
|
|
50
|
+
white-space: nowrap;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
#MapFilter table.map-filter-entry-fields td:last-child {
|
|
54
|
+
width: 99%;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
#MapFilter table.map-filter-entry-fields td:last-child > * {
|
|
58
|
+
width: 100%;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
#MapFilter div.map-filter-add-custom {
|
|
62
|
+
padding: 0.25em;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
#MapFilter div.map-filter-custom-entry-titlebar {
|
|
66
|
+
display: flex;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
#MapFilter div.map-filter-custom-entry-titlebar > div.TextInput {
|
|
70
|
+
flex: 1 1 auto;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
#MapFilter div.map-filter-custom-entry-titlebar > div.ToggleSwitch {
|
|
74
|
+
margin: 0 0.5em;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
#MapFilter div.map-filter-add-custom > button {
|
|
78
|
+
width: 100%;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
#MapFilter input.map-filter-custom-entry-expr {
|
|
82
|
+
min-width: 0;
|
|
83
|
+
width: 100%;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
#MapFilter div.map-filter-editor-container {
|
|
87
|
+
padding: 0.25em;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
#MapFilter div.map-filter-editor {
|
|
91
|
+
height: 5em;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
#MapFilter div.map-filter-editor-invalid {
|
|
95
|
+
background-color: rgba(255, 127, 127);
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
button.filter-map-button-error {
|
|
99
|
+
background-color: orange;
|
|
100
|
+
|
|
101
|
+
}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
div.mapinfotooltip {
|
|
2
|
+
position: absolute;
|
|
3
|
+
z-index: 2;
|
|
4
|
+
pointer-events: none;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
div.mapinfotooltip-window {
|
|
8
|
+
margin-top: 1em;
|
|
9
|
+
background: var(--container-bg-color);
|
|
10
|
+
box-shadow: 0px 0px 5px rgba(136, 136, 136, 1);
|
|
11
|
+
border-radius: 0.5em;
|
|
12
|
+
transform: translate(-50%, 0);
|
|
13
|
+
-webkit-font-smoothing: antialiased;
|
|
14
|
+
white-space: nowrap;
|
|
15
|
+
pointer-events: all;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
div.mapinfotooltip-titlebar {
|
|
19
|
+
background-color: var(--titlebar-bg-color);
|
|
20
|
+
color: var(--titlebar-text-color);
|
|
21
|
+
font-weight: bold;
|
|
22
|
+
padding: 0.25em 0.5em;
|
|
23
|
+
border-radius: 0.5em 0.5em 0 0;
|
|
24
|
+
display: flex;
|
|
25
|
+
align-items: center;
|
|
26
|
+
font-size: 90%;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
span.mapinfotooltip-title {
|
|
30
|
+
flex: 1 1 auto;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
button.mapinfotooltip-button {
|
|
34
|
+
flex: 0 0 auto;
|
|
35
|
+
margin-right: 0.5em;
|
|
36
|
+
border: none;
|
|
37
|
+
background-color: transparent;
|
|
38
|
+
background-color: var(--titlebar-bg-color);
|
|
39
|
+
color: var(--titlebar-text-color);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
button.mapinfotooltip-button:hover {
|
|
43
|
+
color: var(--titlebar-bg-color);
|
|
44
|
+
background-color: var(--titlebar-text-color);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
div.mapinfotooltip-body {
|
|
48
|
+
padding: 0.25em;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
div.mapinfotooltip-body:after {
|
|
52
|
+
content: '';
|
|
53
|
+
display: block;
|
|
54
|
+
position: absolute;
|
|
55
|
+
left: calc(50% - 1em);
|
|
56
|
+
top: -1em;
|
|
57
|
+
width: 0;
|
|
58
|
+
height: 0;
|
|
59
|
+
border-left: 1em solid transparent;
|
|
60
|
+
border-right: 1em solid transparent;
|
|
61
|
+
border-bottom: 1em solid var(--titlebar-bg-color);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
div.mapinfotooltip-body table {
|
|
65
|
+
font-size: 75%;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
div.mapinfotooltip-body td {
|
|
69
|
+
padding: 0.25em;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
table.mapinfotooltip-body-routing td:last-child {
|
|
73
|
+
display: flex;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
table.mapinfotooltip-body-routing td:last-child button {
|
|
77
|
+
flex: 1 1 auto;
|
|
78
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
div.map-legend {
|
|
2
|
+
background-color: white;
|
|
3
|
+
overflow: auto;
|
|
4
|
+
height: calc(100% + 0.5em);
|
|
5
|
+
margin: -0.25em;
|
|
6
|
+
padding: 0.25em;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
span.map-legend-color-box {
|
|
10
|
+
display: inline-block;
|
|
11
|
+
width: 1em;
|
|
12
|
+
height: 1em;
|
|
13
|
+
margin: 0.25em 1em 0.25em 0.25em;
|
|
14
|
+
border: 1px solid black;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
div.map-legend-group-title {
|
|
18
|
+
font-weight: bold;
|
|
19
|
+
margin: 0.25em;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
div.map-legend-group-entries {
|
|
23
|
+
margin-left: 0.5em;
|
|
24
|
+
border-left: 1px solid var(--border-color);
|
|
25
|
+
padding-left: 1em;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
div.map-legend-legend-entry {
|
|
29
|
+
display: flex;
|
|
30
|
+
align-items: center;
|
|
31
|
+
margin-bottom: 1em;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
div.map-legend-entry-title {
|
|
35
|
+
font-size: 95%;
|
|
36
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
#MapTipPointerBuffer {
|
|
2
|
+
position: absolute;
|
|
3
|
+
width: 16px;
|
|
4
|
+
height: 16px;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
#MapTip {
|
|
8
|
+
position: absolute;
|
|
9
|
+
background: var(--list-bg-color);
|
|
10
|
+
box-shadow: 0px 2px 5px rgba(136, 136, 136, 0.5);
|
|
11
|
+
border-radius: 0.5em;
|
|
12
|
+
border: 1px solid var(--border-color);
|
|
13
|
+
overflow-y: auto;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
#MapTip > div {
|
|
17
|
+
padding: 0.25em;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
#MapTip > div:not(:last-child) {
|
|
21
|
+
border-bottom: 1px solid var(--border-color);
|
|
22
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
div.measure-body {
|
|
2
|
+
margin-top: 0.25em;
|
|
3
|
+
white-space: nowrap;
|
|
4
|
+
overflow: visible;
|
|
5
|
+
min-width: 17.5em;
|
|
6
|
+
display: flex;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
input.measure-result {
|
|
10
|
+
flex: 1 1 auto;
|
|
11
|
+
text-align: center;
|
|
12
|
+
field-sizing: content;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
span.measure-unit-label {
|
|
16
|
+
padding: 0.25em;
|
|
17
|
+
height: 2em;
|
|
18
|
+
background-color: var(--input-bg-color);
|
|
19
|
+
border: 1px solid var(--border-color);
|
|
20
|
+
border-right-width: 0;
|
|
21
|
+
display: flex;
|
|
22
|
+
align-items: center;
|
|
23
|
+
}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
div.newspopup-dialog-container {
|
|
2
|
+
z-index: 202;
|
|
3
|
+
position: fixed;
|
|
4
|
+
left: 0;
|
|
5
|
+
right: 0;
|
|
6
|
+
top: 0;
|
|
7
|
+
bottom: 0;
|
|
8
|
+
background-color: rgba(127, 127, 127, 0.5);
|
|
9
|
+
display: flex;
|
|
10
|
+
align-items: center;
|
|
11
|
+
justify-content: center;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
div.newspopup-dialog-popup {
|
|
15
|
+
flex: 0 0 75%;
|
|
16
|
+
height: 66%;
|
|
17
|
+
background-color: var(--container-bg-color);
|
|
18
|
+
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.75);
|
|
19
|
+
display: flex;
|
|
20
|
+
flex-direction: column;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
div.newspopup-dialog-popup-title {
|
|
24
|
+
font-weight: bold;
|
|
25
|
+
color: var(--titlebar-text-color);
|
|
26
|
+
background-color: var(--titlebar-bg-color);
|
|
27
|
+
flex: 0 0 2.5em;
|
|
28
|
+
display: flex;
|
|
29
|
+
align-items: center;
|
|
30
|
+
padding: 0 0.25em;
|
|
31
|
+
display: flex;
|
|
32
|
+
align-items: center;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
div.newspopup-dialog-popup-title span:first-child {
|
|
36
|
+
flex: 1 1 auto;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
div.newspopup-dialog-popup-title span.icon {
|
|
40
|
+
flex: 0 0 auto;
|
|
41
|
+
margin-right: 0.25em;
|
|
42
|
+
font-size: large;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
div.newspopup-dialog-popup-body {
|
|
46
|
+
padding: 0.25em;
|
|
47
|
+
flex: 1 1 auto;
|
|
48
|
+
display: flex;
|
|
49
|
+
flex-direction: column;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
div.newspopup-dialog-popup-body > iframe {
|
|
53
|
+
width: 100%;
|
|
54
|
+
border-width: 0;
|
|
55
|
+
background-color: transparent;
|
|
56
|
+
flex: 1 1 auto;
|
|
57
|
+
height: 0;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
div.newspopup-dialog-popup-body > div.newspopup-dialog-popup-buttonbar {
|
|
61
|
+
border-top: 1px solid var(--border-color);
|
|
62
|
+
flex: 0 0 auto;
|
|
63
|
+
text-align: center;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
div.newspopup-dialog-popup-body > div.newspopup-dialog-popup-buttonbar button {
|
|
67
|
+
margin: 0.5em;
|
|
68
|
+
padding: 0.5em;
|
|
69
|
+
background-color: var(--titlebar-bg-color);
|
|
70
|
+
color: white;
|
|
71
|
+
font-weight: bold;
|
|
72
|
+
border: 1px solid var(--border-color);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
#NewsPopup {
|
|
76
|
+
height: 480px;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
#NewsPopup div.newspopup-dialog-popup-body {
|
|
80
|
+
height: 100%;
|
|
81
|
+
display: flex;
|
|
82
|
+
flex-direction: column;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
#NewsPopup div.newspopup-dialog-popup-body > iframe {
|
|
86
|
+
flex: 1 1 auto;
|
|
87
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
div.panoramax-body {
|
|
2
|
+
height: calc(100% + 0.5em);
|
|
3
|
+
position: relative;
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: column;
|
|
6
|
+
margin: -0.25em;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
div.panoramax-body .gvs-psv-tour-arrows{
|
|
10
|
+
all: unset;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
div.panoramax-body .gvs-btn:focus{
|
|
14
|
+
outline: none;
|
|
15
|
+
}
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
div.portal-topbar {
|
|
2
|
+
background-color: var(--titlebar-bg-color);
|
|
3
|
+
position: fixed;
|
|
4
|
+
left: 0;
|
|
5
|
+
right: 0;
|
|
6
|
+
top: 0;
|
|
7
|
+
height: 3.5em;
|
|
8
|
+
z-index: 201;
|
|
9
|
+
display: flex;
|
|
10
|
+
align-items: center;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
span.portal-topbar-text {
|
|
14
|
+
color: var(--titlebar-text-color);
|
|
15
|
+
padding: 0 1.5em 0 0.5em;
|
|
16
|
+
font-weight: bold;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
img.portal-logo {
|
|
20
|
+
width: auto;
|
|
21
|
+
height: 3.5em;
|
|
22
|
+
flex: 0 0 auto;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
input.portal-search-field {
|
|
26
|
+
flex: 1 1 auto;
|
|
27
|
+
max-width: 70ch;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
span.portal-topbar-spacer {
|
|
31
|
+
flex: 1 1 auto;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
div.portal-topbar div.AppMenu {
|
|
35
|
+
flex: 0 0 auto;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
div.portal-topbar div.AppMenu div.appmenu-menu-container {
|
|
39
|
+
height: calc(100vh - 5.75em);
|
|
40
|
+
background-color: var(--app-menu-bg-color);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
div.portal-topbar div.AppMenu ul.appmenu-menu li:last-child {
|
|
44
|
+
border-bottom: 1px solid var(--app-menu-text-color);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
div.portal-topbar span.appmenu-label {
|
|
48
|
+
color: var(--titlebar-text-color);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
div.portal-topbar span.appmenu-icon {
|
|
52
|
+
color: var(--titlebar-text-color);
|
|
53
|
+
border: 2px solid var(--titlebar-text-color);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
div.portal-body {
|
|
57
|
+
background-color: var(--container-bg-color);
|
|
58
|
+
position: fixed;
|
|
59
|
+
left: 0;
|
|
60
|
+
right: 0;
|
|
61
|
+
bottom: 2.25em;
|
|
62
|
+
top: 3.5em;
|
|
63
|
+
z-index: 200;
|
|
64
|
+
display: flex;
|
|
65
|
+
flex-direction: column;
|
|
66
|
+
overflow-y: auto;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
div.portal-body-menuvisible div.ThemeList {
|
|
70
|
+
margin-right: 20em;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
div.portal-body div.ThemeList {
|
|
74
|
+
flex: 1 1 auto;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
div.portal-bottombar {
|
|
78
|
+
background-color: var(--titlebar-bg-color);
|
|
79
|
+
color: var(--titlebar-text-color);
|
|
80
|
+
position: fixed;
|
|
81
|
+
left: 0;
|
|
82
|
+
right: 0;
|
|
83
|
+
bottom: 0;
|
|
84
|
+
height: 3em;
|
|
85
|
+
font-size: 75%;
|
|
86
|
+
z-index: 200;
|
|
87
|
+
display: flex;
|
|
88
|
+
align-items: center;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
div.portal-bottombar-user {
|
|
92
|
+
flex: 0 0 auto;
|
|
93
|
+
padding: 0 0.5em;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
div.portal-bottombar-user > span.icon {
|
|
97
|
+
margin-right: 0.5em;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
div.portal-bottombar-links {
|
|
101
|
+
flex: 1 1 auto;
|
|
102
|
+
display: flex;
|
|
103
|
+
align-items: center;
|
|
104
|
+
justify-content: flex-end;
|
|
105
|
+
padding: 0 0.5em;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
div.portal-bottombar-links > a {
|
|
109
|
+
color: var(--titlebar-text-color);
|
|
110
|
+
padding: 0 0.5em;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
div.portal-bottombar-links > a:not(:last-child) {
|
|
114
|
+
border-right: 1px solid var(--titlebar-text-color);
|
|
115
|
+
}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
#Print div.print-body {
|
|
2
|
+
padding: 0.25em;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
#Print span.option-label {
|
|
6
|
+
margin-right: 1em;
|
|
7
|
+
width: 10em;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
#Print .print-minimize-maximize {
|
|
11
|
+
margin-left: 1em;
|
|
12
|
+
padding: 0.25em;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
#Print table.options-table {
|
|
16
|
+
width: 100%;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
#Print table.options-table td {
|
|
20
|
+
padding: 0.125em 0;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
#Print table.options-table td:first-child {
|
|
24
|
+
max-width: 10em;
|
|
25
|
+
overflow: hidden;
|
|
26
|
+
text-overflow: ellipsis;
|
|
27
|
+
padding-right: 0.25em;
|
|
28
|
+
white-space: nowrap;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
#Print table.options-table td:nth-child(2) {
|
|
32
|
+
width: 99%;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
#Print table.options-table td:nth-child(2) > * {
|
|
36
|
+
width: 100%;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
#Print table.options-table textarea {
|
|
40
|
+
resize: vertical;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
#Print div.button-bar {
|
|
44
|
+
margin-top: 0.5em;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
#Print div.button-bar > button {
|
|
48
|
+
width: 100%;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
div.print-output-window-body {
|
|
52
|
+
width: 100%;
|
|
53
|
+
height: 100%;
|
|
54
|
+
position: relative;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
div.print-output-window-body > iframe {
|
|
58
|
+
border: 0;
|
|
59
|
+
width: 100%;
|
|
60
|
+
height: 100%;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
span.print-output-window-wait {
|
|
64
|
+
position: absolute;
|
|
65
|
+
top: 0;
|
|
66
|
+
left: 0;
|
|
67
|
+
bottom: 0;
|
|
68
|
+
right: 0;
|
|
69
|
+
display: flex;
|
|
70
|
+
align-items: center;
|
|
71
|
+
justify-content: center;
|
|
72
|
+
background-color: rgba(200, 200, 200, 0.9);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
span.print-output-window-wait div.spinner {
|
|
76
|
+
width: 4em;
|
|
77
|
+
height: 4em;
|
|
78
|
+
margin-right: 1em;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
#Print span.print-wait {
|
|
82
|
+
display: flex;
|
|
83
|
+
align-items: center;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
#Print span.print-wait {
|
|
87
|
+
display: flex;
|
|
88
|
+
align-items: center;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
#Print span.print-wait div.spinner {
|
|
92
|
+
width: 1.25em;
|
|
93
|
+
height: 1.25em;
|
|
94
|
+
margin-right: 0.5em;
|
|
95
|
+
flex: 0 0 auto;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
#Print div.print-atlas-features {
|
|
99
|
+
display: flex;
|
|
100
|
+
flex-wrap: wrap;
|
|
101
|
+
border: 1px solid var(--border-color);
|
|
102
|
+
background-color: var(--input-bg-color);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
#Print div.print-atlas-features > span {
|
|
106
|
+
background-color: var(--border-color);
|
|
107
|
+
color: var(--text-color);
|
|
108
|
+
display: flex;
|
|
109
|
+
align-items: center;
|
|
110
|
+
padding: 0.25em;
|
|
111
|
+
margin: 0.125em;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
#Print div.print-atlas-features > span > span:first-child {
|
|
115
|
+
margin-right: 0.5em;
|
|
116
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
div.process-notifications {
|
|
2
|
+
position: fixed;
|
|
3
|
+
right: 0;
|
|
4
|
+
top: var(--topbar-height);
|
|
5
|
+
box-shadow: 0 -2px 4px rgba(136, 136, 136, 0.5);
|
|
6
|
+
width: 20em;
|
|
7
|
+
z-index: 1000;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
div.process-notification {
|
|
11
|
+
padding: 0 0.5em;
|
|
12
|
+
border: 1px solid var(--border-color);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
div.process-notification-pending {
|
|
16
|
+
color: white;
|
|
17
|
+
background-color: #8886d4;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
div.process-notification-success {
|
|
21
|
+
color: white;
|
|
22
|
+
background-color: #09ac00;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
div.process-notification-failure {
|
|
26
|
+
color: white;
|
|
27
|
+
background-color: #ff0000;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
div.process-notification-head {
|
|
31
|
+
display: flex;
|
|
32
|
+
align-items: center;
|
|
33
|
+
height: 2.5em;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
div.process-notification-head > span.icon:first-child {
|
|
37
|
+
font-size: 150%;
|
|
38
|
+
margin-right: 0.25em;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
div.process-notification-head > div.spinner {
|
|
42
|
+
width: 2em;
|
|
43
|
+
height: 2em;
|
|
44
|
+
margin-right: 0.25em;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
span.process-notification-label {
|
|
48
|
+
flex: 1 1 auto;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
div.process-notification-detail {
|
|
52
|
+
font-style: italic;
|
|
53
|
+
font-size: 90%;
|
|
54
|
+
padding: 0.25em;
|
|
55
|
+
}
|