mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 09:12:52 +00:00
46 lines
741 B
CSS
46 lines
741 B
CSS
|
|
/* OSM Notes Layer */
|
|
.layer-notes {
|
|
pointer-events: none;
|
|
}
|
|
.layer-notes * {
|
|
pointer-events: visible;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.layer-notes .note .note-shadow {
|
|
color: #000;
|
|
}
|
|
.layer-notes .note .note-fill {
|
|
color: #ff3300;
|
|
}
|
|
.layer-notes .note.closed .note-fill {
|
|
color: #55dd00;
|
|
}
|
|
.layer-notes .note.hovered .note-fill {
|
|
color: #eebb00;
|
|
}
|
|
.layer-notes .note.selected .note-fill {
|
|
color: #ffee00;
|
|
}
|
|
|
|
/* OSM Note UI */
|
|
.comment-first {
|
|
background-color: #ddd;
|
|
border-radius: 5px;
|
|
padding: 5px;
|
|
margin: 5px auto;
|
|
}
|
|
.comment {
|
|
background-color: #fff;
|
|
border-radius: 5px;
|
|
padding: 5px;
|
|
margin: 5px auto;
|
|
}
|
|
.commentCreator {
|
|
color: #666;
|
|
}
|
|
.commentText {
|
|
margin: 20px auto;
|
|
}
|