-
Notifications
You must be signed in to change notification settings - Fork 17
/
app.css
370 lines (328 loc) · 7.13 KB
/
app.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
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
svg {
background-color: #FFF;
cursor: default;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
#subset {
/*position: absolute;*/
float:left;margin-right:.5em;
width: 100%;
height: 100%;
padding: 10px;
overflow:scroll;
background-color: white;
/*-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);*/
pointer-events: none;
}
#setx {
/*position: absolute;*/
float:left;margin-right:.5em;
width: 100%;
height: 100%;
padding: 10px;
overflow:scroll;
background-color: white;
/*-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);*/
/* pointer-events: none;*/
}
.hidden {
display: none;
}
.arc path {
stroke: #fff;
}
svg:not(.active):not(.ctrl) {
cursor: crosshair;
}
path.link {
fill: none;
stroke: #000;
stroke-width: 2px;
cursor: default;
}
svg:not(.active):not(.ctrl) path.link {
cursor: pointer;
}
path.link.selected {
stroke-dasharray: 10,3;
}
path.link.dragline {
pointer-events: none;
}
path.link.hidden {
stroke-width: 0;
}
circle.node {
stroke-width: 1.5px;
cursor: pointer;
}
text {
font: 12px sans-serif;
pointer-events: none;
}
text.id {
text-anchor: middle;
font-weight: bold;
}
.left {
width: 33.3%;
height: 100%; /*was 600px;*/
box-sizing: border-box; margin: 0;
overflow:scroll;
}
#main svg {
width:100%;
height:100%; /*was 600px;*/
}
#main.svg-leftpanel svg, #main.svg-rightpanel svg {width: 100%;} /* This is size when left/right panel minimized. Was: calc(100% - 300px);}*/
#main.svg-leftpanel.svg-rightpanel svg {width: 100%;} /* Was: calc(100% - 300px);} /*
/* Above changes fix issue when screen gets very small, and right margin is fixed at 300px, obscuring central display, even while left tab is shrinking below 300px */
/* #main.svg-marg-left svg {margin-left:0px;}
#main.svg-marg-right svg {margin-right:0px;} */
#option.navbar {
padding:.5em;
margin-bottom:0;
}
#option {
position:relative;
}
div.popover.variables {
max-width:none;
width:300px;
}
div.popover.variables div.popover-content.form-horizontal {
padding:0;
}
div.popover.variables div.popover-content.form-horizontal .form-group {
margin-bottom:0;
}
#leftpanel {
border:1px solid #ADADAD;
width: 20%;
height:calc(100% - 17px);
position:absolute;top:10px;left:10px;
background:#F9F9F9;
padding-right:16px;padding-left:0;padding-top:0;
z-index:25;
}
#leftpanel #leftContentArea div {display:none;}
#leftpanel #leftContentArea div.active {display:block;}
#leftpanel.expandpanel {width:40%;}
#leftpanel.closepanel {width:1px;}
#leftpanel.closepanel #leftpaneltitle, #leftpanel.closepanel div.btn-toolbar, #leftpanel.closepanel div.row-fluid.closepanel {display:none;}
#rightpanel {
border:1px solid #ADADAD;
width:20%;
height:calc(100% - 17px);
position:absolute;top:10px;right:10px;
background:#F9F9F9;
padding-left:16px;padding-right:0;padding-top:0;
z-index:25;
}
#rightpanel #rightContentArea div {display:none;}
#rightpanel #rightContentArea div.active {display:block;}
#rightpanel.expandpanel {width:40%;}
#rightpanel.closepanel {width:1px;}
#rightpanel.closepanel #rightpaneltitle, #rightpanel.closepanel div.btn-group-justified, #rightpanel.closepanel div.row-fluid.closepanel {display:none;}
div.sidepanel div.panelbar {
position:absolute;
}
#leftpanel div#toggleLpanelicon.panelbar {
left:calc(100% - 16px);
}
#rightpanel div#toggleRpanelicon.panelbar {
right:calc(100% - 16px);
}
div.sidepanel div.panelbar span {
display: block;
width:16px;
height:576px;
text-align: center;
padding-top:258px;
font-size:.75em;
color:#ADADAD;
background:#eee;
}
#main {
border:1px solid #ADADAD;
width: 100%;
margin-bottom:50px; /* This is the hard coded height of the ticker div. Was 160px; which gave too much padding and empty bottom space.*/
position: relative;
}
#spacetools {
z-index: 17;
}
.spaceTool {
top:0;
right:21%;
margin-right:10px;
margin-top:10px;
position:absolute;
}
.spaceTool button:first-child {
margin-right:1em;
}
.spaceTool button span {
font-size:1em;
color:#818181;
pointer-events:none;
}
#transformations {
z-index:33;
height:8%;
width:14%;
right:200px;
top:14px;
position:absolute;
}
#transformations ul, #transformations ul li {
list-style:none;
margin-left:0;
padding-left:0;
}
#transformations ul li {
padding:1px 4px;
text-align: left;
}
#transSel li:hover { background-color:rgba(250, 128, 114, 0.5); cursor:pointer;}
#transList li:hover { background-color:rgba(250, 128, 114, 0.5); cursor:pointer;}
.legendary {
width:10%;
position:absolute;
bottom:0;
right:21%;
margin-right:10px;
margin-bottom:10px;
}
.legendary .clearfix {
margin-bottom:4px;
}
.legendary .rectColor {
float:left;
width:20px;
height:20px;
margin-right:4px;
/*opacity: 0.5;*/
}
.legendary .rectColor circle {
opacity: 0.5;
}
.legendary .rectLabel {
float:left;
}
.logbox {
width:15%;
position:absolute;
bottom:0;
left:21%;
margin-left:10px;
margin-bottom:10px;
}
.logbox .clearfix {
margin-bottom:4px;
}
.logbox .rectColor {
float:left;
width:20px;
height:20px;
margin-left:4px;
opacity: 0.5;
}
.logbox .rectLabel {
float:left;
}
#sandbox {
width:500px;
height:400px;
}
/* p { padding-left: 15px; } */
path {
fill: steelblue;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.brush .extent {
stroke: #fff;
fill-opacity: .125;
shape-rendering: crispEdges;
}
.handle {
fill: #fff;
stroke: #000;
stroke-opacity: .5;
stroke-width: 1.25px;
pointer-events: fill;
}
table, th, td {
border-collapse: collapse;text-align:right;
}
td {
padding:4px;
}
/* Carousel */
.carousel-indicators {
top:20px;
bottom:auto;
}
.carousel-indicators li {
border: 1px solid #818181;
}
.carousel-indicators li.active {
background-color: #818181;
}
.carousel-indicators li#create, .carousel-indicators li#delete {
border: 0;
border-radius: 0;
background-color: inherit;
text-indent:0;
font-size:12px;
width:12px;
height:12px;
line-height:12px;
}
.carousel-indicators li#create .glyphicon {
top:0;
}
.carousel-linked-nav,
.item img {
display: block;
margin: 0 auto;
}
.carousel-linked-nav {
width:200px;
margin: 10px auto;
}
.carousel-linked-nav li {position:relative;}
#carouselLeft {position:absolute;top:50%;left:calc(16px + 20%);z-index:30;font-size:2em;}
#carouselRight {position:absolute;top:50%;right:calc(16px + 20%);z-index:30;font-size:2em;}
.lowerError {
fill: #4682b4;
}
.upperError {
fill: silver;
fill-opacity: 0.65;
}
.line {
fill: #4682b4;
}
.nofill {
fill: none;
}