edit_line.css (1066B)
1 .line-editor-node-marker-halo { 2 box-sizing: border-box; 3 width: 14px !important; 4 height: 14px !important; 5 border-radius: 7px !important; 6 border: 4px solid #eee; 7 margin-left: -7px !important; 8 margin-top: -7px !important; 9 outline: none; 10 } 11 12 .line-editor-node-marker { 13 box-sizing: border-box; 14 width: 12px !important; 15 height: 12px !important; 16 border-radius: 6px !important; 17 border: 2px solid #333; 18 margin-left: -3px !important; 19 margin-top: -3px !important; 20 outline: none; 21 } 22 23 .line-editor-node-marker:hover, .line-editor-node-marker:active { 24 border-color: orange; 25 } 26 27 .leaflet-line-drawing { 28 cursor: crosshair !important; 29 } 30 31 .leaflet-line-drawing .leaflet-editable-line { 32 pointer-events: none !important; 33 } 34 35 .line-editor-node-marker-start { 36 background-color: rgb(20%, 75%, 20%); 37 z-index: 1000000 !important; 38 } 39 40 .line-editor-node-marker-end { 41 background-color: rgb(90%, 20%, 20%); 42 z-index: 1000000 !important; 43 } 44 45 .highlight-delete .line-editor-node-marker { 46 border-color: red; 47 }