Files
iD/css/65_data.css
Bryan Housel f3d31f3075 Update css styles for notes
- open notes are red (default)
- resolved notes are green
- orange on hover
- yellow on select (also added centerEase to note location)
2018-06-30 10:44:28 -04:00

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: #00bb33;
}
.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;
}