mirror of
https://github.com/orangecoding/fredy.git
synced 2026-06-16 12:31:07 +00:00
* feat(): create map component, add area filtering to the job config * feat(): filter listings by area filter * chore(): cleanup * feat(): solve feedback * feat(): solve most providers * feat(): solve maybe other providers
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
/*
|
|
* Copyright (c) 2026 by Christian Kellner.
|
|
* Licensed under Apache-2.0 with Commons Clause and Attribution/Naming Clause
|
|
*/
|
|
|
|
.map-container {
|
|
height: 100%;
|
|
}
|
|
|
|
/* Fix Mapbox Draw cursors for MapLibre GL compatibility */
|
|
.maplibregl-map.mouse-pointer .maplibregl-canvas-container.maplibregl-interactive {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.maplibregl-map.mouse-move .maplibregl-canvas-container.maplibregl-interactive {
|
|
cursor: move;
|
|
}
|
|
|
|
.maplibregl-map.mouse-add .maplibregl-canvas-container.maplibregl-interactive {
|
|
cursor: crosshair;
|
|
}
|
|
|
|
.maplibregl-map.mouse-move.mode-direct_select .maplibregl-canvas-container.maplibregl-interactive {
|
|
cursor: grab;
|
|
cursor: -moz-grab;
|
|
cursor: -webkit-grab;
|
|
}
|
|
|
|
.maplibregl-map.mode-direct_select.feature-vertex.mouse-move .maplibregl-canvas-container.maplibregl-interactive {
|
|
cursor: move;
|
|
}
|
|
|
|
.maplibregl-map.mode-direct_select.feature-midpoint.mouse-pointer .maplibregl-canvas-container.maplibregl-interactive {
|
|
cursor: cell;
|
|
}
|
|
|
|
.maplibregl-map.mode-direct_select.feature-feature.mouse-move .maplibregl-canvas-container.maplibregl-interactive {
|
|
cursor: move;
|
|
}
|
|
|
|
.maplibregl-map.mode-static.mouse-pointer .maplibregl-canvas-container.maplibregl-interactive {
|
|
cursor: grab;
|
|
cursor: -moz-grab;
|
|
cursor: -webkit-grab;
|
|
}
|