mapillary-js/styles/TagComponent.css
2016-05-06 15:40:13 +02:00

42 lines
532 B
CSS

.TagContainer {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: -1;
pointer-events: none;
}
.TagSymbol {
cursor: default;
}
.TagMover,
.TagResizer {
transform: translate(-50%, -50%);
pointer-events: all;
}
.TagMover {
border-radius: 7px;
width: 14px;
height: 14px;
opacity: 0.2;
}
.TagMover:hover {
opacity: 0.5;
}
.TagResizer {
border-radius: 10px;
width: 20px;
height: 20px;
opacity: 0;
}
.TagResizer:hover {
opacity: 0.3;
}