~berthold-daum/zora/trunk

« back to all changes in this revision

Viewing changes to com.bdaum.zoom.gps.leaflet/gmap/Control.MiniMap.css

  • Committer: bdaum
  • Date: 2015-12-26 10:21:51 UTC
  • Revision ID: berthold.daum@bdaum.de-20151226102151-44f1j5113167thb9
VersionĀ 2.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.leaflet-control-minimap {
 
2
    border:solid rgba(255, 255, 255, 1.0) 4px;
 
3
    box-shadow: 0 1px 5px rgba(0,0,0,0.65);
 
4
    border-radius: 3px;
 
5
    background: #f8f8f9;
 
6
    transition: all .2s;
 
7
}
 
8
 
 
9
.leaflet-control-minimap a {
 
10
    background-color: rgba(255, 255, 255, 1.0);
 
11
    background-repeat: no-repeat;
 
12
    z-index: 99999;
 
13
    transition: all .2s;        
 
14
}
 
15
 
 
16
.leaflet-control-minimap a.minimized-bottomright {
 
17
    -webkit-transform: rotate(180deg);
 
18
    transform: rotate(180deg);
 
19
    border-radius: 0px;
 
20
}
 
21
 
 
22
.leaflet-control-minimap a.minimized-topleft {
 
23
    -webkit-transform: rotate(0deg);
 
24
    transform: rotate(0deg);
 
25
    border-radius: 0px;
 
26
}
 
27
 
 
28
.leaflet-control-minimap a.minimized-bottomleft {
 
29
    -webkit-transform: rotate(270deg);
 
30
    transform: rotate(270deg);
 
31
    border-radius: 0px;
 
32
}
 
33
 
 
34
.leaflet-control-minimap a.minimized-topright {
 
35
    -webkit-transform: rotate(90deg);
 
36
    transform: rotate(90deg);
 
37
    border-radius: 0px;
 
38
}
 
39
 
 
40
.leaflet-control-minimap-toggle-display{
 
41
    background-image: url("images/toggle.svg");
 
42
        background-size: cover;
 
43
    position: absolute;
 
44
    border-radius: 3px 0px 0px 0px;
 
45
}
 
46
 
 
47
.leaflet-oldie .leaflet-control-minimap-toggle-display{
 
48
    background-image: url("images/toggle.png");
 
49
}
 
50
 
 
51
.leaflet-control-minimap-toggle-display-bottomright {
 
52
    bottom: 0;
 
53
    right: 0; 
 
54
}
 
55
 
 
56
.leaflet-control-minimap-toggle-display-topleft{
 
57
    top: 0;
 
58
    left: 0; 
 
59
    -webkit-transform: rotate(180deg);
 
60
    transform: rotate(180deg);
 
61
}
 
62
 
 
63
.leaflet-control-minimap-toggle-display-bottomleft{
 
64
    bottom: 0;
 
65
    left: 0; 
 
66
    -webkit-transform: rotate(90deg);
 
67
    transform: rotate(90deg);
 
68
}
 
69
 
 
70
.leaflet-control-minimap-toggle-display-topright{
 
71
    top: 0;
 
72
    right: 0; 
 
73
    -webkit-transform: rotate(270deg);
 
74
    transform: rotate(270deg);
 
75
}
 
76
 
 
77
/* Old IE */
 
78
.leaflet-oldie .leaflet-control-minimap {
 
79
        border: 1px solid #999;
 
80
}
 
81
 
 
82
.leaflet-oldie .leaflet-control-minimap a {
 
83
        background-color: #fff;
 
84
}
 
85
 
 
86
.leaflet-oldie .leaflet-control-minimap a.minimized {
 
87
        filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
 
88
}