Newer
Older
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
/* Collapsable page */
#wrapper {
/*padding-left: 0;*/
padding-left: 40px;
padding-right: 40px;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
/* button and sidenav - settings */
.btn-settings {
position: fixed;
right: 0px;
margin-right: -2px;
top: 55px;
z-index: 100;
width: 40px;
height: 33px;
background: #222222;
border: 1px #a1a1a1;
border-radius: 3px;
transition: 0.5s;
}
.btn-settings .glyphicon-cog {
color: #eeeeee;
font-size: 20px;
}
#mySidenavSet {
height: 100%; /* 100% Full-height */
width: 0; /* 0 width - change this with JavaScript */
position: fixed; /* Stay in place */
z-index: 150; /* Stay on top */
top: 45px;
right: 0;
background-color: #f8f8f8;
text-align: center;
overflow-x: hidden; /* Disable horizontal scroll */
transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}
/* button and sidenav - fs */
.fs-label {
position: fixed;
left: 0px;
margin-left: -2px;
top: 55px;
z-index: 100;
width: 40px;
height: 33px;
background: #222222;
border: 1px #a1a1a1;
border-radius: 3px;
transition: 0.5s;
}
.fs-label .glyphicon-chevron-right {
color: #eeeeee;
font-size: 20px;
}
.fs-label.is-open .glyphicon-chevron-right {
-webkit-transform: rotate(180deg);
top: 3px;
}
.fs-label.is-closed .glyphicon-chevron-right {
top: 1px;
}
#mySidenavfs {
height: 100%; /* 100% Full-height */
width: 0; /* 0 width - change this with JavaScript */
position: fixed; /* Stay in place */
z-index: 150; /* Stay on top */
top: 45px;
left: 0;
background-color: #eeeeee; /* Black*/
overflow-x: hidden; /* Disable horizontal scroll */
transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}
/* Tree */
.tree, .tree ul {
margin:0;
padding:0;
list-style:none
}
.tree ul {
margin-left:1em;
position:relative
}
.tree ul ul {
margin-left:.5em
}
.tree ul:before {
content:"";
display:block;
width:0;
position:absolute;
top:0;
bottom:0;
left:0;
border-left:1px solid
}
.tree li {
margin:0;
padding:0 1em;
line-height:2em;
color:#000;
font-weight:700;
position:relative
}
.tree ul li:before {
content:"";
display:block;
width:10px;
height:0;
border-top:1px solid;
margin-top:-1px;
position:absolute;
top:1em;
left:0
}
.tree ul li:last-child:before {
background:transparent;
height:auto;
top:1em;
bottom:0
}
.indicator {
margin-right:5px;
}
.tree li button, .tree li button:active, .tree li button:focus {
text-decoration: none;
color:#000;
border:none;
background:transparent;
margin:0px 0px 0px 0px;
padding:0px 0px 0px 0px;
outline: 0;
}
/* More layout */
body {
padding-top: 25px;
position: relative;
overflow-x: hidden;
height: 100%;
}
footer {
background-color: #111;
color: white;
padding: 15px;
text-align: center;
z-index: 500;
}
#mappa-pannel canvas{
max-height: inherit;
max-width: 100%;
}
h3 {
margin-left: 10px;
}
h2 {
margin-top: -10px;
font-size: 24px;
font-weight: bold;
}
.navbar {
margin-bottom: -20pt;
border-radius: 0;
z-index: 200;
}
/* Create options for drag&drop pannel*/
.droppable.dragover {
background: #a1a1a1;
}
#mappa-pannel, #chart-pannel {
min-height: 450px;
max-height: 750px;
}
/* input file button */
.btn-bs-file{
position:relative;
margin-left: 10px;
}
.btn-bs-file input[type="file"]{
position: absolute;
top: -9999999;
filter: alpha(opacity=0);
opacity: 0;
width:0;
height:0;
outline: none;
cursor: inherit;
}
#reset{
margin-top: 15px;
margin-right: 10px;
margin-right: 10px;
}
#pannelSettings {
height: 100%;
text-align: center;
}
.DropMenu {
background-color: #333333;
font-size: 14px;
color: white;
}
#spinBoxMin {
width: 100px;
float: left;
margin-left: 25px;
}
#spinBoxMax {
width: 100px;
float: right;
margin-right: 25px;