1
|
|
2
|
#panel {
|
3
|
|
4
|
|
5
|
cursor: pointer;
|
6
|
}
|
7
|
|
8
|
#panel button {
|
9
|
position: relative;
|
10
|
display: block;
|
11
|
margin: 2px;
|
12
|
border: 1px solid;
|
13
|
padding: 0 5px;
|
14
|
border-radius: 4px;
|
15
|
height: 35px;
|
16
|
background-color: white;
|
17
|
float: left;
|
18
|
overflow: visible;
|
19
|
width: 6em;
|
20
|
background-repeat: none;
|
21
|
}
|
22
|
#panel button span {
|
23
|
padding-left: 25px;
|
24
|
}
|
25
|
#panel button span:first-child {
|
26
|
padding-left: 0;
|
27
|
display: block;
|
28
|
position: absolute;
|
29
|
left: 2px;
|
30
|
}
|
31
|
|
32
|
#panel .olControlNavigationHistory {
|
33
|
background-image: none;
|
34
|
}
|
35
|
|
36
|
|
37
|
#panel {
|
38
|
opacity: 0.5;
|
39
|
}
|
40
|
|
41
|
#panel:hover {
|
42
|
opacity: 1;
|
43
|
}
|
44
|
|
45
|
|
46
|
#panel .olControlNavigationHistory span:first-child, #panel .olControlBtnNewPanoItemInActive span:first-child {
|
47
|
background-image: url("../images/plus_photo.png");
|
48
|
height: 24px;
|
49
|
width: 24px;
|
50
|
top: 4px;
|
51
|
}
|
52
|
#panel .olControlNavigationHistoryPreviousItemActive span:first-child {
|
53
|
background-position: 0 0;
|
54
|
}
|
55
|
#panel .olControlNavigationHistoryPreviousItemInactive span:first-child {
|
56
|
background-position: 0 -24px;
|
57
|
}
|
58
|
#panel .olControlNavigationHistoryNextItemActive span:first-child {
|
59
|
background-position: -24px 0;
|
60
|
}
|
61
|
#panel .olControlNavigationHistoryNextItemInactive span:first-child {
|
62
|
background-position: -24px -24px;
|
63
|
}
|
64
|
|
65
|
#panel .olControlNavigationHistory span:first-child {
|
66
|
background-image: url("http://dev.openlayers.org/releases/OpenLayers-2.13.1/theme/default/img/navigation_history.png");
|
67
|
height: 24px;
|
68
|
width: 24px;
|
69
|
top: 4px;
|
70
|
}
|