Files
iD/css/65_data.css
Bryan Housel 65b2a42261 Adjust green
2018-07-01 23:39:42 -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: #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;
}