-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
190 lines (153 loc) · 3.42 KB
/
index.css
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
:root{
--map-menu-object-width: 50px;
--map-menu-object-height: 50px;
}
.container {
position: absolute;
height: 100%;
display: grid;
grid-gap: 3px;
grid-template-columns: repeat(12, minmax(20px, 1fr));
grid-template-rows: 50px auto auto 20px 40px;
grid-template-areas:
"sblt sblt h h h h h h h h h h"
"sblt sblt c c c c c c c c c c"
"sblb sblb c c c c c c c c c c"
"sblb sblb c c c c c c c c c c"
"f f f f f f f f f f f f";
overflow: hidden;
}
.header {
grid-area: h;
}
.side-bar-left-top {
border: 1px solid black;
grid-area: sblt;
}
.side-bar-left-bottom {
border: 1px solid black;
grid-area: sblb;
}
.side-bar-right {
grid-area: sbr;
}
.content {
border: 1px solid black;
overflow: auto;
position: relative;
grid-area: c;
}
.status-bar {
grid-area: sb;
}
.footer {
grid-area: f;
}
/* #mapObjectsMenu li {
display:inline;
} */
.side-bar-left-top li {
list-style: none;
display: inline-block
/* height: var(--map-menu-object-height);
width: var(--map-menu-object-width); */
}
#page1 {
position: absolute;
background-color: aliceblue;
width: 95%;
height: 95%;
margin: 20px;
border: 1px solid gray;
box-shadow: 5px 10px 10px rgba(0,0,0,0.30);
}
#backgroundImage {
position: absolute;
margin:10px;
max-height:95%;
}
#mapElement {
position: absolute;
width: 50px;
height: 50px;
background-color: chocolate;
z-index:5;
}
#details_dialog_overlay {
position: fixed; /* Sit on top of the page content */
display: block; /* Hidden by default */
width: 100%; /* Full width (cover the whole page) */
height: 100%; /* Full height (cover the whole page) */
top: 0px;
left: 0px;
right: 0;
bottom: 0;
background-color: rgba(0,0,0,0.5); /* Black background with opacity */
z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
cursor: pointer; /* Add a pointer on hover */
}
#detailsDialog {
font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
position:absolute;
top: 200px;
left: 500px;
display: inline-block;
width:500px;
height: auto;
border: 1px solid black;
box-shadow: 5px 10px 10px rgba(0,0,0,0.30);
background-color: #fff;
}
#detailsDialog p{
padding: 10px;
padding-left: 20px;
margin:0;
background-color: rgb(247, 247, 247);
border-bottom: 1px solid rgb(226, 226, 226);;
font-size: small;
}
#detailsDialogBody{
padding:20px;
}
#detailsDialogBody select{
width:auto;
min-width: 85%;
}
#detailsDialogBody textarea{
width:auto;
min-width: 85%;
}
#detailsDialogBody hr{
border-color: rgb(240, 239, 239);
}
#equipment_pictures{
width:95%;
height:100px;
box-shadow: 2px 5px 5px rgba(0,0,0,0.30);
border: 1px solid rgb(226, 226, 226);
}
#equipment_pictures ul{
list-style-type: none;
}
#equipment_pictures li{
display:inline;
width:20%;
height:95%;
box-shadow: 1px 2px 3px rgba(0,0,0,0.30);
border: 1px solid rgb(226, 226, 226);
}
#canvas_drawing {
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
z-index:0;
}
/*
.cameraIcon {
position:relative;
transform-origin: top left;
position: absolute;
cursor: move;
} */