Add icons on to map display, and marker update logic
This commit is contained in:
parent
c034a10951
commit
9f8ab5da03
3 changed files with 116 additions and 1 deletions
|
|
@ -747,3 +747,35 @@
|
|||
.balloonmessage {
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
/* Marker styles */
|
||||
.dynmap .mapMarker .markerName {
|
||||
display: none;
|
||||
z-index: 101;
|
||||
}
|
||||
|
||||
.dynmap .mapMarker:hover .markerName,
|
||||
.dynmap .mapMarker .markerName-show {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: -8px;
|
||||
left: 10px;
|
||||
z-index: 18;
|
||||
|
||||
white-space: nowrap;
|
||||
|
||||
color: #fff;
|
||||
background: rgba(0,0,0,0.6);
|
||||
padding: 2px;
|
||||
|
||||
-moz-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
|
||||
}
|
||||
|
||||
.dynmap .mapMarker .markerIcon16x16 {
|
||||
position: absolute;
|
||||
top: -8px;
|
||||
left: -8px;
|
||||
z-index: 18;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue