You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
707 B
CSS
36 lines
707 B
CSS
2 weeks ago
|
.ol-tooltip {
|
||
|
position: relative;
|
||
|
background: rgba(0, 0, 0, 0.5);
|
||
|
border-radius: 4px;
|
||
|
color: white;
|
||
|
padding: 4px 8px;
|
||
|
opacity: 0.7;
|
||
|
white-space: nowrap;
|
||
|
font-size: 12px;
|
||
|
cursor: default;
|
||
|
user-select: none;
|
||
|
}
|
||
|
.ol-tooltip-measure {
|
||
|
opacity: 1;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
.ol-tooltip-static {
|
||
|
background-color: #ffcc33;
|
||
|
color: black;
|
||
|
border: 1px solid white;
|
||
|
}
|
||
|
.ol-tooltip-measure:before,
|
||
|
.ol-tooltip-static:before {
|
||
|
border-top: 6px solid rgba(0, 0, 0, 0.5);
|
||
|
border-right: 6px solid transparent;
|
||
|
border-left: 6px solid transparent;
|
||
|
content: "";
|
||
|
position: absolute;
|
||
|
bottom: -6px;
|
||
|
margin-left: -7px;
|
||
|
left: 50%;
|
||
|
}
|
||
|
.ol-tooltip-static:before {
|
||
|
border-top-color: #ffcc33;
|
||
|
}
|