-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (92 loc) · 1.47 KB
/
style.css
File metadata and controls
92 lines (92 loc) · 1.47 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
body {
overflow: hidden;
}
#mapSVG {
position: absolute;
top: 0px;
left: 0px;
border: 1px solid #d3d3d3;
/*width: 99%;*/
/*height: 99%;*/
/*on bottom*/
z-index: 0;
}
.hiddenFeatureGroup {
display: none;
}
#mapControls {
position: absolute;
top: 10px;
left: 10px;
max-width: 100px;
}
#coordDisplay {
position: absolute;
left: 10px;
bottom: 10px;
max-width: 200px;
}
#upperRightControls {
position: absolute;
top: 10px;
right: 10px;
}
#layerBox,
#editBox {
float: right;
clear: right;
}
#layerHeader,
#editHeader,
#editList {
text-align: right;
}
/*#updateData {
position: absolute;
top: 10px;
left: 810px;
}*/
#boundFeatureInfo {
position: absolute;
max-width: 300px;
max-height: 400px;
/*off screen initially*/
top: -1000px;
left: -1000px;
z-index: 2;
}
.featureInfoTitle {
padding-right: 10px;
font-weight: bold;
}
.featureInfoClose {
position: relative;
right: 2px;
}
.featureInfoBody {
max-height: 400px;
overflow: auto;
}
#editFormArea {
max-width: 300px;
max-height: 400px;
overflow: auto;
}
#mouseoverBox {
position: absolute;
/*off screen initially*/
top: -1000px;
left: -1000px;
/* width: 200px;
height: 20px;*/
/*on top of everything else*/
z-index: 3;
}
.links {
cursor: pointer;
text-decoration: underline;
}
.overlayItem {
background-color: #ffffff;
border: 1px solid #d3d3d3;
}