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,26 @@
|
|
|
1
|
+
.icon {
|
|
2
|
+
display: inline-flex;
|
|
3
|
+
align-items: center;
|
|
4
|
+
justify-content: center;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
img.icon {
|
|
8
|
+
vertical-align: top;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
span.icon_large:before {
|
|
12
|
+
font-size: 150%;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
span.icon_xlarge:before {
|
|
16
|
+
font-size: 175%;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.icon_clickable {
|
|
20
|
+
cursor: pointer;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.icon_disabled {
|
|
24
|
+
cursor: default;
|
|
25
|
+
color: var(--text-color-disabled);
|
|
26
|
+
}
|
|
@@ -0,0 +1,249 @@
|
|
|
1
|
+
div.identify-body {
|
|
2
|
+
background-color: var(--container-bg-color);
|
|
3
|
+
height: 100%;
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: column;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
div.dock-window > div.resizeable-window-body > div.identify-body {
|
|
9
|
+
/* titlebar: 2.5em, padding: 0.5em */
|
|
10
|
+
max-height: calc(100vh - 2.5em - 0.5em - var(--topbar-height) - var(--bottombar-height)); /* viewport - titlebar - window_padding - topbar - bottombar*/
|
|
11
|
+
max-height: calc(var(--vh, 1vh) * 100 - 2.5em - 0.5em - var(--topbar-height) - var(--bottombar-height)); /* viewport - titlebar - window_padding - topbar - bottombar*/
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
span.identify-body-message {
|
|
15
|
+
padding: 0.25em;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
div.identify-body div.identify-results-container {
|
|
19
|
+
overflow-y: auto;
|
|
20
|
+
flex: 1 1 50%;
|
|
21
|
+
min-height: 0;
|
|
22
|
+
background-color: var(--list-bg-color);
|
|
23
|
+
border: 1px solid var(--border-color);
|
|
24
|
+
padding: 0.25em;
|
|
25
|
+
margin-bottom: 0.25em;
|
|
26
|
+
font-size: small;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
div.identify-layer-expandable {
|
|
30
|
+
position: relative;
|
|
31
|
+
margin-left: 1em;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
div.identify-layer-expandable > div.identify-layer-entries {
|
|
35
|
+
display: none;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
div.identify-layer-expanded > div.identify-layer-entries {
|
|
39
|
+
display: block;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
div.identify-layer-expandable:before {
|
|
43
|
+
content: "";
|
|
44
|
+
border-color: transparent var(--text-color);
|
|
45
|
+
border-width: 0.35em 0 0.35em 0.45em;
|
|
46
|
+
border-style: solid;
|
|
47
|
+
display: block;
|
|
48
|
+
height: 0;
|
|
49
|
+
width: 0;
|
|
50
|
+
left: -1em;
|
|
51
|
+
top: 0.3em;
|
|
52
|
+
position: absolute;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
div.identify-layer-expanded:before {
|
|
56
|
+
border-color: var(--text-color) transparent;
|
|
57
|
+
border-width: 0.45em 0.35em 0 0.35em;
|
|
58
|
+
top: 0.4em;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
div.identify-layer-entries {
|
|
62
|
+
padding: 0.25em 0.25em 0.25em 1em;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
div.identify-result-entry {
|
|
66
|
+
display: flex;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
div.identify-result-entry span.clickable {
|
|
70
|
+
cursor: pointer;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
div.identify-result-entry span.active {
|
|
74
|
+
font-weight: bold;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
div.identify-result-entry > span:first-child {
|
|
78
|
+
flex: 1 1 auto;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
div.identify-result-entry span.identify-remove-result,
|
|
82
|
+
div.identify-result-entry span.identify-export-result {
|
|
83
|
+
margin: 0 0.25em;
|
|
84
|
+
color: var(--border-color);
|
|
85
|
+
cursor: pointer;
|
|
86
|
+
visibility: hidden;
|
|
87
|
+
font-size: large;
|
|
88
|
+
flex: 0 0 auto;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
div.identify-result-entry:hover > span.identify-remove-result,
|
|
92
|
+
div.identify-result-entry:hover > span.identify-export-result {
|
|
93
|
+
visibility: visible;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
div.identify-body div.identify-flat-results-list {
|
|
97
|
+
overflow: auto;
|
|
98
|
+
flex: 1 1 auto;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
div.identify-body .identify-result-tree-frame {
|
|
102
|
+
flex: 1 1 50%;
|
|
103
|
+
min-height: 0;
|
|
104
|
+
display: flex;
|
|
105
|
+
flex-direction: column;
|
|
106
|
+
border: 1px solid var(--border-color);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
div.identify-body .identify-result-frame-normal {
|
|
110
|
+
margin-top: 0.25em;
|
|
111
|
+
border: 1px solid var(--border-color);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
div.identify-body .identify-result-frame-highlighted {
|
|
115
|
+
margin-top: 0.25em;
|
|
116
|
+
border: 1px solid var(--color-active);
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
div.identify-body .identify-result-title {
|
|
120
|
+
background-color: var(--list-section-bg-color);
|
|
121
|
+
padding: 0.25em;
|
|
122
|
+
font-weight: bold;
|
|
123
|
+
flex: 0 0 auto;
|
|
124
|
+
font-size: small;
|
|
125
|
+
display: flex;
|
|
126
|
+
align-items: center;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
div.identify-body .identify-result-title > span:not(.icon) {
|
|
130
|
+
flex: 1 1 auto;
|
|
131
|
+
overflow: hidden;
|
|
132
|
+
text-overflow: ellipsis;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
div.identify-body .identify-result-title > span.icon {
|
|
136
|
+
flex: 0 0 auto;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
div.identify-body .identify-result-title > span:not(:first-child) {
|
|
140
|
+
margin-left: 0.5em;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
div.identify-body .identify-result-title > span.icon:hover {
|
|
144
|
+
color: var(--text-color-hover);
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
div.identify-body .identify-result-tree-frame > div.identify-result-container {
|
|
148
|
+
overflow-y: auto;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
div.identify-body .identify-result-box {
|
|
152
|
+
border: 0;
|
|
153
|
+
background-color: var(--list-bg-color);
|
|
154
|
+
font-size: small;
|
|
155
|
+
width: 100%;
|
|
156
|
+
flex: 1 1 auto;
|
|
157
|
+
min-width: 0;
|
|
158
|
+
min-height: 0;
|
|
159
|
+
margin: 0;
|
|
160
|
+
overflow: auto;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
div.identify-body table.attribute-list {
|
|
164
|
+
width: 100%;
|
|
165
|
+
table-layout: fixed;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
div.identify-body table.attribute-list > tbody > tr:nth-child(even) {
|
|
169
|
+
background-color: var(--list-item-bg-color-even);
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
div.identify-body table.attribute-list td {
|
|
173
|
+
overflow: hidden;
|
|
174
|
+
vertical-align: top;
|
|
175
|
+
text-overflow: ellipsis;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
div.identify-body table.attribute-list td:first-child {
|
|
179
|
+
padding-left: 0.25em;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
div.identify-body table.attribute-list td:last-child {
|
|
183
|
+
padding-right: 0.25em;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
div.identify-body table.attribute-list td.ellipsis {
|
|
187
|
+
white-space: nowrap;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
div.identify-body td.identify-attr-title {
|
|
191
|
+
min-width: 10ch;
|
|
192
|
+
width: 40%;
|
|
193
|
+
padding-right: 1em;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
div.identify-body td.identify-attr-value {
|
|
197
|
+
width: 60%;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
div.identify-body td.identify-attr-value > a > img {
|
|
201
|
+
max-width: 100%;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
div.identify-body div.identify-buttonbox {
|
|
205
|
+
margin-top: 0.5em;
|
|
206
|
+
flex: 0 0 auto;
|
|
207
|
+
display: flex;
|
|
208
|
+
align-items: center;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
div.identify-body div.identify-selectbox {
|
|
212
|
+
flex: 0 0 auto;
|
|
213
|
+
display: flex;
|
|
214
|
+
align-items: center;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
select:focus {
|
|
218
|
+
outline: none;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
div.identify-body table.identify-attr-subtable {
|
|
222
|
+
width: 100%;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
div.identify-body table.identify-attr-subtable > tbody > tr:nth-child(even) {
|
|
226
|
+
background-color: #F0F0F0;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
div.identify-body td.identify-attr-spacer {
|
|
230
|
+
height: 2px;
|
|
231
|
+
background-color: var(--list-section-bg-color);
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
span.identify-buttonbox-spacer {
|
|
235
|
+
flex: 1 1 auto;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
div.identify-body div.identify-result-feature-report-frame {
|
|
239
|
+
padding: 0.25em 0.5em;
|
|
240
|
+
font-size: small;
|
|
241
|
+
display: flex;
|
|
242
|
+
align-items: center;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
div.identify-body div.identify-result-feature-report-frame > div.spinner {
|
|
246
|
+
width: 1em;
|
|
247
|
+
height: 1em;
|
|
248
|
+
margin-left: 0.5em;
|
|
249
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
div.ImportLayer {
|
|
2
|
+
padding: 0 0.5em;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
div.ImportLayer div.importlayer-input-fields {
|
|
6
|
+
display: flex;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
div.ImportLayer div.importlayer-input-fields > div {
|
|
10
|
+
flex: 1 1 auto;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
div.ImportLayer button.importlayer-addbutton {
|
|
14
|
+
width: 100%;
|
|
15
|
+
margin: 0.5em 0;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
div.ImportLayer button.importlayer-addbutton > div.spinner {
|
|
19
|
+
width: 1.5em;
|
|
20
|
+
height: 1.5em;
|
|
21
|
+
margin-right: 0.25em;
|
|
22
|
+
display: inline-block;
|
|
23
|
+
flex: 0 0 auto;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
div.ImportLayer div.layer-catalog-widget {
|
|
27
|
+
max-height: 13em;
|
|
28
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
div.layer-info-window-body {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
height: 100%;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
h4.layer-info-window-title {
|
|
8
|
+
flex: 0 0 auto;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
div.layer-info-window-frame {
|
|
12
|
+
border: 1px solid var(--border-color);
|
|
13
|
+
background-color: var(--list-bg-color);
|
|
14
|
+
font-size: small;
|
|
15
|
+
flex: 1 1 auto;
|
|
16
|
+
overflow: auto;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
table.layer-info-window-table {
|
|
20
|
+
width: 100%;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
table.layer-info-window-table td {
|
|
24
|
+
padding: 0.5em;
|
|
25
|
+
vertical-align: top;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
table.layer-info-window-table td:first-child {
|
|
29
|
+
white-space: nowrap;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
table.layer-info-window-table td:last-child {
|
|
33
|
+
width: 99%;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
img.layer-info-window-legend {
|
|
37
|
+
box-shadow: 0px 2px 5px rgba(136, 136, 136, 0.5);
|
|
38
|
+
background-color: white;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
span.layer-info-window-coloricon {
|
|
42
|
+
width: 2em;
|
|
43
|
+
height: 2em;
|
|
44
|
+
box-shadow: 0px 2px 5px rgba(136, 136, 136, 0.5);
|
|
45
|
+
display: inline-block;
|
|
46
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
div.link-feature-form {
|
|
2
|
+
background-color: var(--container-bg-color);
|
|
3
|
+
border: 2px solid var(--border-color);
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: column;
|
|
6
|
+
padding: 0.5em;
|
|
7
|
+
height: 100%;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
div.link-feature-form > div.AttributeForm {
|
|
11
|
+
flex: 1 1 auto;
|
|
12
|
+
height: 0;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
div.link-feature-form-feature-list {
|
|
16
|
+
flex: 1 1 auto;
|
|
17
|
+
overflow-y: auto;
|
|
18
|
+
background-color: var(--list-bg-color);
|
|
19
|
+
border-style: solid;
|
|
20
|
+
border-color: var(--border-color);
|
|
21
|
+
border-width: 1px 1px 0 1px;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
div.link-feature-form-feature-list > div {
|
|
25
|
+
padding: 0.125em 0.25em;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
div.link-feature-form-feature-list > div:hover {
|
|
29
|
+
background-color: var(--list-item-bg-color-hover);
|
|
30
|
+
color: var(--list-item-text-color-hover);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
div.link-feature-form-close {
|
|
34
|
+
border-top: 1px solid var(--border-color);
|
|
35
|
+
padding-top: 0.5em;
|
|
36
|
+
flex: 0 0 auto;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
div.link-feature-form-hint {
|
|
40
|
+
font-style: italic;
|
|
41
|
+
flex: 1 1 auto;
|
|
42
|
+
display: flex;
|
|
43
|
+
align-items: center;
|
|
44
|
+
justify-content: center;
|
|
45
|
+
}
|
|
46
|
+
div.link-feature-form-close > button {
|
|
47
|
+
width: 100%;
|
|
48
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
div.PickFeatureMenu {
|
|
2
|
+
border: 1px solid var(--border-color);
|
|
3
|
+
background-color: var(--list-bg-color);
|
|
4
|
+
box-shadow: 0px 2px 4px rgba(136, 136, 136, 0.5);
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
div.PickFeatureMenu > div {
|
|
8
|
+
padding: 0.25em 0.5em;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
div.PickFeatureMenu > div:hover:not(.pick-feature-menu-querying) {
|
|
12
|
+
background-color: var(--list-item-bg-color-hover);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
div.pick-feature-menu-querying {
|
|
16
|
+
display: flex;
|
|
17
|
+
align-items: center;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
div.pick-feature-menu-querying > div.spinner {
|
|
21
|
+
width: 1em;
|
|
22
|
+
height: 1em;
|
|
23
|
+
flex: 0 0 auto;
|
|
24
|
+
margin-right: 0.5em;
|
|
25
|
+
}
|
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
div.qt-designer-form {
|
|
2
|
+
overflow: auto;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
div.qt-designer-form textarea {
|
|
6
|
+
height: 100%;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
div.qt-designer-form div.text-input-wrapper-multiline,
|
|
10
|
+
div.qt-designer-form div.text-input-wrapper-multiline > pre {
|
|
11
|
+
height: 100%;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
div.qt-designer-form label > input {
|
|
15
|
+
margin-right: 0.25em;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
div.qt-designer-layout-grid {
|
|
19
|
+
display: grid;
|
|
20
|
+
grid-column-gap: 6px;
|
|
21
|
+
grid-row-gap: 6px;
|
|
22
|
+
height: 100%;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
div.qt-designer-layout-grid > div {
|
|
26
|
+
display: flex;
|
|
27
|
+
align-items: center;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
div.qt-designer-layout-grid > div > *:not(.qt-designer-form-vline) {
|
|
31
|
+
width: 100%;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
div.qt-designer-layout-vbox {
|
|
35
|
+
display: flex;
|
|
36
|
+
flex-direction: column;
|
|
37
|
+
flex: 1 1 auto;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
div.qt-designer-layout-hbox {
|
|
41
|
+
display: flex;
|
|
42
|
+
flex: 1 1 auto;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
div.qt-designer-layout-hbox > div,
|
|
46
|
+
div.qt-designer-layout-vbox > div {
|
|
47
|
+
flex: 1 1 auto;
|
|
48
|
+
display: flex;
|
|
49
|
+
align-items: center;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
div.qt-designer-form-hline {
|
|
53
|
+
border-bottom: 1px solid var(--border-color);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
div.qt-designer-form-vline {
|
|
57
|
+
border-right: 1px solid var(--border-color);
|
|
58
|
+
height: 100%;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
div.qt-designer-form-container {
|
|
62
|
+
height: 100%;
|
|
63
|
+
display: flex;
|
|
64
|
+
flex-direction: column;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
div.qt-designer-form-frame-title {
|
|
68
|
+
font-weight: bold;
|
|
69
|
+
flex: 0 0 auto;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
div.qt-designer-form-frame {
|
|
73
|
+
padding: 0.25em;
|
|
74
|
+
flex: 1 1 auto;
|
|
75
|
+
width: 100%;
|
|
76
|
+
border: 1px solid var(--border-color);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
div.qt-designer-form-tabbar {
|
|
80
|
+
margin-bottom: -1px;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
div.qt-designer-widget-relation {
|
|
84
|
+
height: 100%;
|
|
85
|
+
display: flex;
|
|
86
|
+
flex-direction: column;
|
|
87
|
+
position: relative;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
div.qt-designer-widget-relation-resize-handle {
|
|
91
|
+
position: absolute;
|
|
92
|
+
right: -0.25em;
|
|
93
|
+
bottom: -0.25em;
|
|
94
|
+
width: 0;
|
|
95
|
+
height: 0;
|
|
96
|
+
border-bottom: 10px solid var(--border-color);
|
|
97
|
+
border-left: 10px solid transparent;
|
|
98
|
+
z-index: 1;
|
|
99
|
+
cursor: ns-resize;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
div.qt-designer-widget-relation-table-container {
|
|
103
|
+
overflow-y: auto;
|
|
104
|
+
flex: 1 1 auto;
|
|
105
|
+
height: 4.5em;
|
|
106
|
+
position: relative;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
div.qt-designer-widget-relation-table-loading {
|
|
110
|
+
position: absolute;
|
|
111
|
+
left: 0;
|
|
112
|
+
right: 0;
|
|
113
|
+
top: 0;
|
|
114
|
+
bottom: 0;
|
|
115
|
+
display: flex;
|
|
116
|
+
align-items: center;
|
|
117
|
+
justify-content: center;
|
|
118
|
+
background-color: rgba(200, 200, 200, 0.9);
|
|
119
|
+
z-index: 2;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
div.qt-designer-widget-relation-table-loading > div.spinner {
|
|
123
|
+
width: 4em;
|
|
124
|
+
height: 4em;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
div.qt-designer-widget-relation-table-container > table {
|
|
128
|
+
width: 100%;
|
|
129
|
+
border: 1px solid var(--border-color);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
div.qt-designer-widget-relation-table-container > table td {
|
|
133
|
+
padding: 0.25em 0.125em;
|
|
134
|
+
text-align: center;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
div.qt-designer-widget-relation-table-container > table td.qt-designer-widget-relation-record-icon {
|
|
138
|
+
width: 1px;
|
|
139
|
+
}
|
|
140
|
+
div.qt-designer-widget-relation-table-container > table td.qt-designer-widget-relation-row-widget > * {
|
|
141
|
+
width: 100%;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
div.qt-designer-widget-relation-table-container > table td > label {
|
|
145
|
+
display: block;
|
|
146
|
+
text-align: center;
|
|
147
|
+
white-space: nowrap;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
div.qt-designer-widget-relation-table-container > table th {
|
|
151
|
+
background-color: var(--border-color);
|
|
152
|
+
color: white;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
div.qt-designer-widget-relation-table-container > table tr:not(:last-child) {
|
|
156
|
+
border-bottom: 1px solid var(--border-color);
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
tr.qt-designer-widget-relation-record-deleted {
|
|
160
|
+
background-color: rgb(255,127,127);
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
div.qt-designer-widget-relation-buttons {
|
|
164
|
+
flex: 0 0 auto;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
button.qt-designer-widget-relation-add {
|
|
168
|
+
width: 100%;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
div.qt-designer-form label {
|
|
172
|
+
display: flex;
|
|
173
|
+
align-items: center;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
div.qt-designer-form-featurelink-buttons {
|
|
177
|
+
display: flex;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
div.qt-designer-form-featurelink-buttons > div.ButtonBar {
|
|
181
|
+
flex: 1 1 auto;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
div.qt-designer-form-featurelink-buttons > button.button {
|
|
185
|
+
margin: 0.25em 0;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
div.qt-designer-report {
|
|
189
|
+
background-color: white;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
div.qt-designer-report input,
|
|
193
|
+
div.qt-designer-report textarea,
|
|
194
|
+
div.qt-designer-report select {
|
|
195
|
+
border: none!important;
|
|
196
|
+
outline: none!important;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
div.qt-designer-report select {
|
|
200
|
+
-webkit-appearance: none;
|
|
201
|
+
-moz-appearance: none;
|
|
202
|
+
appearance: none;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
div.qt-designer-form-textarea {
|
|
206
|
+
padding: 0.25em;
|
|
207
|
+
white-space: pre-wrap;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
div.qt-designer-form-image img {
|
|
211
|
+
width: 100%;
|
|
212
|
+
max-width: 400px;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
div.qt-designer-form-loading {
|
|
216
|
+
display: flex;
|
|
217
|
+
align-items: center;
|
|
218
|
+
justify-content: center;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
div.qt-designer-form-loading > div.spinner {
|
|
222
|
+
width: 4em;
|
|
223
|
+
height: 4em;
|
|
224
|
+
margin-right: 1em;
|
|
225
|
+
}
|