diff options
| author | Hsieh Chin Fan <pham@topo.tw> | 2024-10-09 16:29:26 +0800 |
|---|---|---|
| committer | Hsieh Chin Fan <pham@topo.tw> | 2024-10-09 17:06:04 +0800 |
| commit | 0808bff26ca6763eed27b4d9225f99f4a3bd7c2e (patch) | |
| tree | 83b03c689dac2586b16fff33d1230187e67c4a19 /src/css | |
| parent | c4d54ab32d181ccd4ac6da386b29ef10508613ca (diff) | |
feat: patch 5aede26
* use callback to disable scroll
* only allow action with left click
* disable selection when dragging
* gray-out elements except of maps
* only sync scroll when cm has focus
Diffstat (limited to 'src/css')
| -rw-r--r-- | src/css/dumbymap.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/css/dumbymap.css b/src/css/dumbymap.css index 0c1fc81..19e3baf 100644 --- a/src/css/dumbymap.css +++ b/src/css/dumbymap.css | |||
| @@ -773,3 +773,11 @@ a[href^='http']:not(:has(img))::after, | |||
| 773 | .bold-options { | 773 | .bold-options { |
| 774 | font-weight: bold; | 774 | font-weight: bold; |
| 775 | } | 775 | } |
| 776 | |||
| 777 | .dragging-geolink { | ||
| 778 | user-select: none; | ||
| 779 | |||
| 780 | .dumby-block > :not(:has(.mapclay)) { | ||
| 781 | opacity: 0.3; | ||
| 782 | } | ||
| 783 | } | ||