forked from lynxlynxlynx/a-day-in-the-life
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathL.Control.Window.css
More file actions
130 lines (109 loc) · 2.22 KB
/
Copy pathL.Control.Window.css
File metadata and controls
130 lines (109 loc) · 2.22 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
.leaflet-control-window-wrapper{
display: none;
opacity: 0;
-webkit-overflow-scrolling: touch;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.nonmodal{
z-index: 6000;
}
.modal{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 7000;
background-color: rgba(0, 0, 0, 0.7);
}
.visible {
display: block;
opacity: 1;
}
.leaflet-control-window{
position: absolute;
z-index: 2000;
border-radius: 2px;
margin: 8px;
/** BOX SHADOW **/
-webkit-box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.75);
box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.75);
}
.control-window{
background-color: #ffffff;
color: #353535;
font: 14px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
}
.leaflet-control-window .titlebar{
min-height: 38px;
cursor: grab;
cursor: -webkit-grab;
cursor: -moz-grab;
padding: 10px 45px 10px 10px;
}
.leaflet-control-window .close {
position: absolute;
top: 8px;
right: 8px;
width: 28px;
height: 28px;
border-radius: 100%;
font: 16px/14px Tahoma, Verdana, sans-serif;
cursor: pointer;
z-index:30;
background-color: rgba(0, 0, 0, 0.40);
transition-property: background;
transition-duration: 0.2s;
transition-timing-function: linear;
color: #e4e4e4;
font-size: 22pt;
text-align: center;
line-height: 0.9em;
}
.leaflet-control-window .close:hover {
background-color: rgba(0, 0, 0, 0.65);
}
.leaflet-control-window .content{
padding: 8px;
margin-top: -10px;
z-index:29;
overflow: auto;
}
.leaflet-control-window .promptButtons{
text-align: right;
padding: 16px;
}
.leaflet-control-window button{
position: relative;
display: inline-block;
background-color: transparent;
color: inherit;
opacity: 0.5;
transition-property: opacity;
transition-duration: 0.2s;
transition-timing-function: linear;
cursor:pointer;
font-size: medium;
font-weight: bold;
text-decoration:none;
text-align: center;
vertical-align: middle;
border: 0;
-webkit-border-radius: 4px;
border-radius: 4px;
padding: 8px;
margin: 12px 8px 0 8px;
}
.leaflet-control-window button:focus {
outline:0;
}
.leaflet-control-window button:hover {
opacity: 1;
}
.disabled{
opacity: .5;
pointer-events:none;
}