map.css
1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#landmarks-ground .mapplic-clickable,
#landmarks-underground .mapplic-clickable,
#landmarks-level1 .mapplic-clickable {
opacity: 1 !important;
}
#landmarks-ground polygon.mapplic-active,
#landmarks-ground path.mapplic-active {
fill: #ADDB2C;
}
#landmarks-underground polygon.mapplic-active,
#landmarks-underground path.mapplic-active {
fill: #7EE0CD;
}
#landmarks-level1 polygon.mapplic-active,
#landmarks-level1 path.mapplic-active {
fill: #F9684B;
}
/* SKINS */
/* mapplic-dark */
.mapplic-dark .mapplic-tooltip {
background-color: #333;
}
.mapplic-dark .mapplic-tooltip-triangle {
border-color: #333 transparent transparent transparent;
}
.mapplic-dark .mapplic-bottom .mapplic-tooltip-triangle {
border-color: transparent transparent #333 transparent;
}
.mapplic-dark .mapplic-tooltip-title {
color: #fff;
}
.mapplic-dark .mapplic-tooltip-description,
.mapplic-dark .mapplic-tooltip p {
color: #bbb;
}
.mapplic-dark .mapplic-tooltip-close {
background-image: url(../mapplic/images/cross-light.png);
}
/* buttons */
/*
.mapplic-dark .mapplic-clear-button {
background-color: #444;
background-image: url(../mapplic/images/reset-light.png);
border-color: #333;
}
.mapplic-dark .mapplic-clear-button:active {
background-color: #333;
}*/
/* retina */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
.mapplic-dark .mapplic-tooltip-close {
background-image: url(../mapplic/images/cross-light@2x.png);
}
}