]> git.openstreetmap.org Git - rails.git/blob - app/assets/stylesheets/leaflet.pan.css.scss
Make the export bar less ugly
[rails.git] / app / assets / stylesheets / leaflet.pan.css.scss
1 .leaflet-control-pan-up,
2 .leaflet-control-pan-down,
3 .leaflet-control-pan-left,
4 .leaflet-control-pan-right {
5   background-image: image-url("map_sprite.png");
6   position: absolute;
7   background-repeat: no-repeat;
8   cursor: hand;
9   cursor: pointer;
10 }
11
12 .leaflet-control-pan-up {
13   left: 10px;
14   width: 25px;
15   height: 13px;
16   background-position: -15px -5px;
17 }
18
19 .leaflet-control-pan-down {
20   left: 10px;
21   top: 36px;
22   width: 25px;
23   height: 15px;
24   background-position: -15px -40px;
25 }
26
27 .leaflet-control-pan-left {
28   left: 0px;
29   top: 13px;
30   width: 25px;
31   height: 24px;
32   background-position: -5px -17px;
33 }
34
35 .leaflet-control-pan-right {
36   left: 25px;
37   top: 13px;
38   width: 25px;
39   height: 24px;
40   background-position: -30px -17px;
41 }