forked from NBTSolutions/Leaflet.Dialog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLeaflet.Dialog.css
More file actions
88 lines (79 loc) · 1.86 KB
/
Copy pathLeaflet.Dialog.css
File metadata and controls
88 lines (79 loc) · 1.86 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
.leaflet-control-dialog{
position: absolute;
background-color: #fff;
padding: 0px;
text-align: left;
border-radius: 4px;
box-shadow: 0 1px 5px rgba(0,0,0,0.65);
}
.leaflet-control-dialog .leaflet-control-dialog-inner{
position: relative;
float: left;
width: 100%;
height: 100%;
padding: 20px 0px;
}
.leaflet-control-dialog .leaflet-control-dialog-inner .leaflet-control-dialog-grabber{
position: absolute;
width: 20px;
height: 20px;
top: 0px;
left: 0px;
padding: 3px;
font-size: 15px;
line-height: 15px;
color: #ccc;
}
.leaflet-control-dialog .leaflet-control-dialog-inner .leaflet-control-dialog-grabber:hover{
cursor: grab;
cursor: -webkit-grab;
cursor: -moz-grab;
}
.leaflet-control-dialog .leaflet-control-dialog-inner .leaflet-control-dialog-close{
position: absolute;
width: 20px;
height: 20px;
top: 0px;
right: 0px;
padding: 2px;
font-size: 16px;
line-height: 16px;
color: #666;
}
.leaflet-control-dialog .leaflet-control-dialog-inner .leaflet-control-dialog-close:hover{
cursor: pointer;
}
.leaflet-control-dialog .leaflet-control-dialog-inner .leaflet-control-dialog-contents{
position: relative;
float: left;
width: 100%;
height: 100%;
margin: 0px;
padding: 0 20px;
min-height: 50px;
overflow: auto;
box-sizing: border-box;
}
.leaflet-control-dialog .leaflet-control-dialog-inner .leaflet-control-dialog-resizer{
position: absolute;
width: 20px;
height: 20px;
bottom: 0px;
right: 0px;
padding: 2px;
font-size: 16px;
line-height: 16px;
color: #ccc;
}
.leaflet-control-dialog .leaflet-control-dialog-inner .leaflet-control-dialog-resizer:hover{
cursor: grab;
cursor: -webkit-grab;
cursor: -moz-grab;
}
.fa-rotate-45{
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}