Move note css from the photos.css into a new css file data.css

This commit is contained in:
Bryan Housel
2018-06-30 10:05:11 -04:00
parent 2f8efee26a
commit bcc1669716
2 changed files with 35 additions and 40 deletions

View File

@@ -113,46 +113,6 @@
stroke-opacity: 1;
}
/* Notes Layer */
.layer-notes {
pointer-events: none;
}
.layer-notes * {
pointer-events: visible;
cursor: pointer;
}
.layer-notes .note-shadow {
color: #000;
}
.layer-notes .note-fill {
color: #ee3;
}
/* TODO: possibly move this note detail .css to another file */
.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;
}
/* Streetside Image Layer */
.layer-streetside-images {

35
css/65_data.css Normal file
View File

@@ -0,0 +1,35 @@
/* OSM Notes Layer */
.layer-notes {
pointer-events: none;
}
.layer-notes * {
pointer-events: visible;
cursor: pointer;
}
.layer-notes .note-shadow {
color: #000;
}
.layer-notes .note-fill {
color: #ee3;
}
/* 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;
}