Subversion Repositories eFlore/Applications.moissonnage

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
9 delphine 1
/** Slider **/
2
.leaflet-control-zoomslider-slider {
3
	padding-top: 5px ;
4
	padding-bottom: 5px;
5
}
6
 
7
.leaflet-control-zoomslider-slider-body {
8
	background-image: url(images/zoom-slider.png);
9
	background-repeat: repeat-y;
10
	background-position: center 0px;
11
	height: 100%;
12
	cursor: default;
13
}
14
 
15
.leaflet-control-zoomslider-slider-knob {
16
	width: 13px;
17
	height:5px;
18
	background-color: black;
19
	background-position: center;
20
 	-webkit-border-radius: 15px;
21
	border-radius: 15px;
22
	margin-left: 5px;
23
	/*border: 5px; */
24
	position:relative;
25
}
26
 
27
.leaflet-control-zoomslider-slider-body:hover {
28
	cursor: pointer;
29
}
30
 
31
.leaflet-control-zoomslider-slider-knob:hover {
32
	cursor: default;
33
	cursor: -webkit-grab;
34
	cursor:    -moz-grab;
35
}
36
 
37
.leaflet-dragging .leaflet-control-zoomslider,
38
.leaflet-dragging .leaflet-control-zoomslider-slider,
39
.leaflet-dragging .leaflet-control-zoomslider-slider-body,
40
.leaflet-dragging .leaflet-control-zoomslider a,
41
.leaflet-dragging .leaflet-control-zoomslider a.leaflet-control-zoomslider-disabled,
42
.leaflet-dragging .leaflet-control-zoomslider-slider-knob:hover  {
43
	cursor: move;
44
	cursor: -webkit-grabbing;
45
	cursor:    -moz-grabbing;
46
}
47
 
48
/** Leaflet Zoom Styles **/
49
.leaflet-container .leaflet-control-zoomslider {
50
	margin-left: 13px;
51
	margin-top: 12px;
52
}
53
.leaflet-control-zoomslider a {
54
	width: 23px;
55
	height: 22px;
56
	text-align: center;
57
	text-decoration: none;
58
	color: black;
59
	display: block;
60
}
61
.leaflet-control-zoomslider a:hover {
62
	background-color: #fff;
63
	color: #777;
64
}
65
.leaflet-control-zoomslider-in {
66
	font: bold 19px/24px Arial, Helvetica, sans-serif;
67
}
68
.leaflet-control-zoomslider-in:after{
69
	content:"+"
70
}
71
.leaflet-control-zoomslider-out {
72
	font: bold 23px/20px Tahoma, Verdana, sans-serif;
73
}
74
.leaflet-control-zoomslider-out:after{
75
	content:"-"
76
}
77
.leaflet-control-zoomslider a.leaflet-control-zoomslider-disabled {
78
	cursor: default;
79
	color: #bbb;
80
}
81
 
82
/* Touch */
83
 
84
.leaflet-touch .leaflet-control-zoomslider-slider-knob {
85
	width:20px;
86
}
87
.leaflet-touch .leaflet-control-zoomslider a {
88
	width: 30px;
89
	height: 30px;
90
}
91
.leaflet-touch .leaflet-control-zoomslider-in {
92
	font-size: 24px;
93
	line-height: 29px;
94
}
95
.leaflet-touch .leaflet-control-zoomslider-out {
96
	font-size: 28px;
97
	line-height: 24px;
98
}
99
 
100
.leaflet-touch .leaflet-control-zoomslider {
101
	box-shadow: none;
102
}
103
 
104
.leaflet-touch .leaflet-control-zoomslider {
105
	border: 4px solid rgba(0,0,0,0.3);
106
}