mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-12 16:52:50 +00:00
136 lines
3.8 KiB
CSS
136 lines
3.8 KiB
CSS
/* Cursors */
|
|
|
|
.nope,
|
|
.nope * {
|
|
cursor: not-allowed !important;
|
|
}
|
|
|
|
.map-in-map,
|
|
.main-map {
|
|
cursor: auto; /* Opera */
|
|
cursor: url(img/cursor-grab.png) 9 9, auto; /* FF */
|
|
}
|
|
|
|
.ideditor.mode-browse .point,
|
|
.ideditor.mode-select .point,
|
|
.ideditor.mode-select-data .point,
|
|
.ideditor.mode-select-error .point,
|
|
.ideditor.mode-select-note .point {
|
|
cursor: pointer; /* Opera */
|
|
cursor: url(img/cursor-select-point.png), pointer; /* FF */
|
|
}
|
|
|
|
.ideditor.mode-browse .vertex,
|
|
.ideditor.mode-select .vertex,
|
|
.ideditor.mode-select-data .vertex,
|
|
.ideditor.mode-select-error .vertex,
|
|
.ideditor.mode-select-note .vertex {
|
|
cursor: pointer; /* Opera */
|
|
cursor: url(img/cursor-select-vertex.png), pointer; /* FF */
|
|
}
|
|
|
|
.ideditor.mode-browse .line,
|
|
.ideditor.mode-select .line,
|
|
.ideditor.mode-select-data .line,
|
|
.ideditor.mode-select-error .line,
|
|
.ideditor.mode-select-note .line {
|
|
cursor: pointer; /* Opera */
|
|
cursor: url(img/cursor-select-line.png), pointer; /* FF */
|
|
}
|
|
|
|
.ideditor.mode-browse .area,
|
|
.ideditor.mode-select .area,
|
|
.ideditor.mode-select-data .area,
|
|
.ideditor.mode-select-error .area,
|
|
.ideditor.mode-select-note .area {
|
|
cursor: pointer; /* Opera */
|
|
cursor: url(img/cursor-select-area.png), pointer; /* FF */
|
|
}
|
|
|
|
.ideditor.mode-browse .midpoint,
|
|
.ideditor.mode-select .midpoint,
|
|
.ideditor.mode-select-data .midpoint,
|
|
.ideditor.mode-select-error .midpoint,
|
|
.ideditor.mode-select-note .midpoint {
|
|
cursor: pointer; /* Opera */
|
|
cursor: url(img/cursor-select-split.png), pointer; /* FF */
|
|
}
|
|
|
|
.ideditor.mode-select .behavior-multiselect .point,
|
|
.ideditor.mode-select .behavior-multiselect .vertex,
|
|
.ideditor.mode-select .behavior-multiselect .line,
|
|
.ideditor.mode-select .behavior-multiselect .area {
|
|
cursor: pointer; /* Opera */
|
|
cursor: url(img/cursor-select-add.png), pointer; /* FF */
|
|
}
|
|
|
|
.ideditor.mode-select .behavior-multiselect .selected {
|
|
cursor: pointer; /* Opera */
|
|
cursor: url(img/cursor-select-remove.png), pointer; /* FF */
|
|
}
|
|
|
|
.ideditor.mode-add-preset .main-map,
|
|
.ideditor.mode-draw-line .main-map,
|
|
.ideditor.mode-draw-area .main-map,
|
|
.ideditor.mode-add-line .main-map,
|
|
.ideditor.mode-add-area .main-map,
|
|
.ideditor.mode-drag-node .main-map,
|
|
.ideditor.mode-drag-note .main-map {
|
|
cursor: crosshair; /* Opera */
|
|
cursor: url(img/cursor-draw.png) 9 9, crosshair; /* FF */
|
|
}
|
|
|
|
.ideditor.mode-draw-line .way.target,
|
|
.ideditor.mode-draw-area .way.target,
|
|
.ideditor.mode-add-line .way.target,
|
|
.ideditor.mode-add-area .way.target,
|
|
.ideditor.mode-drag-node .way.target {
|
|
cursor: crosshair; /* Opera */
|
|
cursor: url(img/cursor-draw-connect-line.png) 9 9, crosshair; /* FF */
|
|
}
|
|
|
|
.ideditor.mode-draw-line .vertex.target,
|
|
.ideditor.mode-draw-area .vertex.target,
|
|
.ideditor.mode-add-line .vertex.target,
|
|
.ideditor.mode-add-area .vertex.target,
|
|
.ideditor.mode-drag-node .vertex.target {
|
|
cursor: crosshair; /* Opera */
|
|
cursor: url(img/cursor-draw-connect-vertex.png) 9 9, crosshair; /* FF */
|
|
}
|
|
|
|
.ideditor.mode-add-point .main-map,
|
|
.ideditor.mode-add-note .main-map,
|
|
.ideditor.mode-browse.lasso .main-map,
|
|
.ideditor.mode-browse.lasso .way,
|
|
.ideditor.mode-browse.lasso .vertex,
|
|
.ideditor.mode-browse.lasso .midpoint,
|
|
.ideditor.mode-select.lasso .main-map,
|
|
.ideditor.mode-select.lasso .way,
|
|
.ideditor.mode-select.lasso .vertex,
|
|
.ideditor.mode-select.lasso .midpoint {
|
|
cursor: crosshair; /* Opera */
|
|
cursor: url(img/cursor-draw.png) 9 9, crosshair; /* FF */
|
|
}
|
|
|
|
.ideditor.mode-browse .note,
|
|
.ideditor.mode-select .note,
|
|
.ideditor.mode-select-data .note,
|
|
.ideditor.mode-select-error .note,
|
|
.ideditor.mode-select-note .note {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.ideditor.mode-browse .qaItem,
|
|
.ideditor.mode-select .qaItem,
|
|
.ideditor.mode-select-data .qaItem,
|
|
.ideditor.mode-select-error .qaItem,
|
|
.ideditor.mode-select-note .qaItem {
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* turn restriction editor */
|
|
.turn rect,
|
|
.turn circle {
|
|
cursor: pointer;
|
|
}
|