-
Notifications
You must be signed in to change notification settings - Fork 2
/
Leaflet.Tour.css
75 lines (67 loc) · 1.42 KB
/
Leaflet.Tour.css
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
68
69
70
71
72
73
74
75
.hidden {
display: none!important;
}
.leaflet-control-tour {
width: 300px;
color: #333;
background: #fff;
}
.leaflet-control-tour-buttons {
text-align: center;
}
.leaflet-control-tour-buttons .prev {
font-weight: bold;
float: left;
}
.leaflet-control-tour-buttons .next {
font-weight: bold;
float: right;
}
.leaflet-control-tour-buttons .title {
font-weight: bold;
width: calc(100% - 52px)!important;
float: left;
display: block;
}
.leaflet-control-tour-description {
color: #444;
padding: 30px 10px 5px 20px;
}
.leaflet-control-tour-expanded .leaflet-control-tour-description {
display: none;
}
.leaflet-control-tour-list {
display: none;
}
.leaflet-control-tour-expanded .leaflet-control-tour-list {
display: block;
padding: 30px 10px 0 20px;
margin: 0;
}
.leaflet-control-tour-list li a,
.leaflet-control-tour-list li a:hover {
text-align: left;
width: auto!important;
white-space: nowrap;
}
/* show scrollbar only when necessary */
.leaflet-control-tour-scrollbar {
overflow-y: scroll;
padding-right: 5px;
}
/* fix round corners for a horizontal control bar */
.leaflet-control-tour-buttons a:first-child {
border-bottom-left-radius: 4px;
border-top-right-radius: 0;
}
.leaflet-control-tour-buttons a:last-child {
border-top-right-radius: 4px;
border-bottom-left-radius: 0;
border-bottom: 1px solid #ccc;
}
.popup-link {
margin-left: 10px;
}
.popup-link img {
max-height: 45px;
}