visjs-rails 4.2.0.0 → 4.2.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +10 -5
- data/lib/visjs/rails/version.rb +1 -1
- data/vendor/assets/{stylesheets/img → images}/network/acceptDeleteIcon.png +0 -0
- data/vendor/assets/{stylesheets/img → images}/network/addNodeIcon.png +0 -0
- data/vendor/assets/{stylesheets/img → images}/network/backIcon.png +0 -0
- data/vendor/assets/{stylesheets/img → images}/network/connectIcon.png +0 -0
- data/vendor/assets/{stylesheets/img → images}/network/cross.png +0 -0
- data/vendor/assets/{stylesheets/img → images}/network/cross2.png +0 -0
- data/vendor/assets/{stylesheets/img → images}/network/deleteIcon.png +0 -0
- data/vendor/assets/{stylesheets/img → images}/network/downArrow.png +0 -0
- data/vendor/assets/{stylesheets/img → images}/network/editIcon.png +0 -0
- data/vendor/assets/{stylesheets/img → images}/network/leftArrow.png +0 -0
- data/vendor/assets/{stylesheets/img → images}/network/minus.png +0 -0
- data/vendor/assets/{stylesheets/img → images}/network/plus.png +0 -0
- data/vendor/assets/{stylesheets/img → images}/network/rightArrow.png +0 -0
- data/vendor/assets/{stylesheets/img → images}/network/upArrow.png +0 -0
- data/vendor/assets/{stylesheets/img → images}/network/zoomExtends.png +0 -0
- data/vendor/assets/{stylesheets/img → images}/timeline/delete.png +0 -0
- data/vendor/assets/stylesheets/{vis.css → vis.css.scss} +1247 -1247
- data/vendor/assets/stylesheets/vis.min.css.scss +1 -0
- metadata +19 -19
- data/vendor/assets/stylesheets/vis.min.css +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4ea033a7becbdf0df8212f850796632a039c89cb
|
4
|
+
data.tar.gz: 00b53c7c7ef79b8442892bd05da6fdc60322cdbb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 48f007e753a80962133b340dd3e1a8fe56fbc29c22cec4c1f97c2c56ad79d19d7957394fbef63975b770160f38703c45b9f5940a0286736f81bb4212e5916947
|
7
|
+
data.tar.gz: 079c706f6a25d04006ad44f03db7884054d956de69e83167f86a97ac418602b817244f6175a8ebbaf836b78c2d92720dcddb08402c41ac9738ab4a2cc0fc7aa8
|
data/README.md
CHANGED
@@ -1,8 +1,10 @@
|
|
1
1
|
# Visjs::Rails
|
2
2
|
|
3
|
-
|
3
|
+
A dynamic, browser based visualization library. The library is designed to be easy to use, to handle large amounts of dynamic data, and to enable manipulation of and interaction with the data. The library consists of the components DataSet, Timeline, Network, Graph2d and Graph3d. (http://visjs.org/)
|
4
4
|
|
5
|
-
|
5
|
+
This library was wrapped into a ruby gem and can be easily added to assets pipeline in Rails(=>3.1) project.
|
6
|
+
|
7
|
+
[![Gem Version](https://badge.fury.io/rb/visjs-rails.svg)](http://badge.fury.io/rb/visjs-rails)
|
6
8
|
|
7
9
|
## Installation
|
8
10
|
|
@@ -38,11 +40,14 @@ and also, add this line to your application's assets/stylesheets/application.scs
|
|
38
40
|
...
|
39
41
|
```
|
40
42
|
|
41
|
-
|
43
|
+
If you want detailed information on it usage, you can refer to original documentation.
|
44
|
+
|
45
|
+
https://github.com/almende/vis
|
42
46
|
|
43
|
-
|
47
|
+
## Changelog
|
44
48
|
|
45
|
-
|
49
|
+
- v4.2.0.0 : gemify vis.js library
|
50
|
+
- v4.2.0.1 : paths to assets rewritten using -url helper method
|
46
51
|
|
47
52
|
## Contributing
|
48
53
|
|
data/lib/visjs/rails/version.rb
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -1,1248 +1,1248 @@
|
|
1
|
-
.vis .overlay {
|
2
|
-
position: absolute;
|
3
|
-
top: 0;
|
4
|
-
left: 0;
|
5
|
-
width: 100%;
|
6
|
-
height: 100%;
|
7
|
-
|
8
|
-
/* Must be displayed above for example selected Timeline items */
|
9
|
-
z-index: 10;
|
10
|
-
}
|
11
|
-
|
12
|
-
.vis-active {
|
13
|
-
box-shadow: 0 0 10px #86d5f8;
|
14
|
-
}
|
15
|
-
|
16
|
-
/* override some bootstrap styles screwing up the timelines css */
|
17
|
-
|
18
|
-
.vis [class*="span"] {
|
19
|
-
min-height: 0;
|
20
|
-
width: auto;
|
21
|
-
}
|
22
|
-
|
23
|
-
|
24
|
-
.vis-timeline {
|
25
|
-
position: relative;
|
26
|
-
border: 1px solid #bfbfbf;
|
27
|
-
|
28
|
-
overflow: hidden;
|
29
|
-
padding: 0;
|
30
|
-
margin: 0;
|
31
|
-
|
32
|
-
box-sizing: border-box;
|
33
|
-
}
|
34
|
-
|
35
|
-
|
36
|
-
.vis-panel {
|
37
|
-
position: absolute;
|
38
|
-
|
39
|
-
padding: 0;
|
40
|
-
margin: 0;
|
41
|
-
|
42
|
-
box-sizing: border-box;
|
43
|
-
}
|
44
|
-
|
45
|
-
.vis-panel.vis-center,
|
46
|
-
.vis-panel.vis-left,
|
47
|
-
.vis-panel.vis-right,
|
48
|
-
.vis-panel.vis-top,
|
49
|
-
.vis-panel.vis-bottom {
|
50
|
-
border: 1px #bfbfbf;
|
51
|
-
}
|
52
|
-
|
53
|
-
.vis-panel.vis-center,
|
54
|
-
.vis-panel.vis-left,
|
55
|
-
.vis-panel.vis-right {
|
56
|
-
border-top-style: solid;
|
57
|
-
border-bottom-style: solid;
|
58
|
-
overflow: hidden;
|
59
|
-
}
|
60
|
-
|
61
|
-
.vis-panel.vis-center,
|
62
|
-
.vis-panel.vis-top,
|
63
|
-
.vis-panel.vis-bottom {
|
64
|
-
border-left-style: solid;
|
65
|
-
border-right-style: solid;
|
66
|
-
}
|
67
|
-
|
68
|
-
.vis-background {
|
69
|
-
overflow: hidden;
|
70
|
-
}
|
71
|
-
|
72
|
-
.vis-panel > .vis-content {
|
73
|
-
position: relative;
|
74
|
-
}
|
75
|
-
|
76
|
-
.vis-panel .vis-shadow {
|
77
|
-
position: absolute;
|
78
|
-
width: 100%;
|
79
|
-
height: 1px;
|
80
|
-
box-shadow: 0 0 10px rgba(0,0,0,0.8);
|
81
|
-
/* TODO: find a nice way to ensure vis-shadows are drawn on top of items
|
82
|
-
z-index: 1;
|
83
|
-
*/
|
84
|
-
}
|
85
|
-
|
86
|
-
.vis-panel .vis-shadow.vis-top {
|
87
|
-
top: -1px;
|
88
|
-
left: 0;
|
89
|
-
}
|
90
|
-
|
91
|
-
.vis-panel .vis-shadow.vis-bottom {
|
92
|
-
bottom: -1px;
|
93
|
-
left: 0;
|
94
|
-
}
|
95
|
-
|
96
|
-
.vis-labelset {
|
97
|
-
position: relative;
|
98
|
-
|
99
|
-
overflow: hidden;
|
100
|
-
|
101
|
-
box-sizing: border-box;
|
102
|
-
}
|
103
|
-
|
104
|
-
.vis-labelset .vis-label {
|
105
|
-
position: relative;
|
106
|
-
left: 0;
|
107
|
-
top: 0;
|
108
|
-
width: 100%;
|
109
|
-
color: #4d4d4d;
|
110
|
-
|
111
|
-
box-sizing: border-box;
|
112
|
-
}
|
113
|
-
|
114
|
-
.vis-labelset .vis-label {
|
115
|
-
border-bottom: 1px solid #bfbfbf;
|
116
|
-
}
|
117
|
-
|
118
|
-
.vis-labelset .vis-label:last-child {
|
119
|
-
border-bottom: none;
|
120
|
-
}
|
121
|
-
|
122
|
-
.vis-labelset .vis-label .vis-inner {
|
123
|
-
display: inline-block;
|
124
|
-
padding: 5px;
|
125
|
-
}
|
126
|
-
|
127
|
-
.vis-labelset .vis-label .vis-inner.vis-hidden {
|
128
|
-
padding: 0;
|
129
|
-
}
|
130
|
-
|
131
|
-
|
132
|
-
.vis-itemset {
|
133
|
-
position: relative;
|
134
|
-
padding: 0;
|
135
|
-
margin: 0;
|
136
|
-
|
137
|
-
box-sizing: border-box;
|
138
|
-
}
|
139
|
-
|
140
|
-
.vis-itemset .vis-background,
|
141
|
-
.vis-itemset .vis-foreground {
|
142
|
-
position: absolute;
|
143
|
-
width: 100%;
|
144
|
-
height: 100%;
|
145
|
-
overflow: visible;
|
146
|
-
}
|
147
|
-
|
148
|
-
.vis-axis {
|
149
|
-
position: absolute;
|
150
|
-
width: 100%;
|
151
|
-
height: 0;
|
152
|
-
left: 0;
|
153
|
-
z-index: 1;
|
154
|
-
}
|
155
|
-
|
156
|
-
.vis-foreground .vis-group {
|
157
|
-
position: relative;
|
158
|
-
box-sizing: border-box;
|
159
|
-
border-bottom: 1px solid #bfbfbf;
|
160
|
-
}
|
161
|
-
|
162
|
-
.vis-foreground .vis-group:last-child {
|
163
|
-
border-bottom: none;
|
164
|
-
}
|
165
|
-
|
166
|
-
.vis-overlay {
|
167
|
-
position: absolute;
|
168
|
-
top: 0;
|
169
|
-
left: 0;
|
170
|
-
width: 100%;
|
171
|
-
height: 100%;
|
172
|
-
z-index: 10;
|
173
|
-
}
|
174
|
-
|
175
|
-
.vis-item {
|
176
|
-
position: absolute;
|
177
|
-
color: #1A1A1A;
|
178
|
-
border-color: #97B0F8;
|
179
|
-
border-width: 1px;
|
180
|
-
background-color: #D5DDF6;
|
181
|
-
display: inline-block;
|
182
|
-
/*overflow: hidden;*/
|
183
|
-
}
|
184
|
-
|
185
|
-
.vis-item.vis-selected {
|
186
|
-
border-color: #FFC200;
|
187
|
-
background-color: #FFF785;
|
188
|
-
|
189
|
-
/* z-index must be higher than the z-index of custom time bar and current time bar */
|
190
|
-
z-index: 2;
|
191
|
-
}
|
192
|
-
|
193
|
-
.vis-editable .vis-item.vis-selected {
|
194
|
-
cursor: move;
|
195
|
-
}
|
196
|
-
|
197
|
-
.vis-item.vis-point.vis-selected {
|
198
|
-
background-color: #FFF785;
|
199
|
-
}
|
200
|
-
|
201
|
-
.vis-item.vis-box {
|
202
|
-
text-align: center;
|
203
|
-
border-style: solid;
|
204
|
-
border-radius: 2px;
|
205
|
-
}
|
206
|
-
|
207
|
-
.vis-item.vis-point {
|
208
|
-
background: none;
|
209
|
-
}
|
210
|
-
|
211
|
-
.vis-item.vis-dot {
|
212
|
-
position: absolute;
|
213
|
-
padding: 0;
|
214
|
-
border-width: 4px;
|
215
|
-
border-style: solid;
|
216
|
-
border-radius: 4px;
|
217
|
-
}
|
218
|
-
|
219
|
-
.vis-item.vis-range {
|
220
|
-
border-style: solid;
|
221
|
-
border-radius: 2px;
|
222
|
-
box-sizing: border-box;
|
223
|
-
}
|
224
|
-
|
225
|
-
.vis-item.vis-background {
|
226
|
-
border: none;
|
227
|
-
background-color: rgba(213, 221, 246, 0.4);
|
228
|
-
box-sizing: border-box;
|
229
|
-
padding: 0;
|
230
|
-
margin: 0;
|
231
|
-
}
|
232
|
-
|
233
|
-
.vis-item .vis-item-overflow {
|
234
|
-
position: relative;
|
235
|
-
width: 100%;
|
236
|
-
height: 100%;
|
237
|
-
padding: 0;
|
238
|
-
margin: 0;
|
239
|
-
overflow: hidden;
|
240
|
-
}
|
241
|
-
|
242
|
-
.vis-item.vis-range .vis-item-content {
|
243
|
-
position: relative;
|
244
|
-
display: inline-block;
|
245
|
-
}
|
246
|
-
|
247
|
-
.vis-item.vis-background .vis-item-content {
|
248
|
-
position: absolute;
|
249
|
-
display: inline-block;
|
250
|
-
}
|
251
|
-
|
252
|
-
.vis-item.vis-line {
|
253
|
-
padding: 0;
|
254
|
-
position: absolute;
|
255
|
-
width: 0;
|
256
|
-
border-left-width: 1px;
|
257
|
-
border-left-style: solid;
|
258
|
-
}
|
259
|
-
|
260
|
-
.vis-item .vis-item-content {
|
261
|
-
white-space: nowrap;
|
262
|
-
box-sizing: border-box;
|
263
|
-
padding: 5px;
|
264
|
-
}
|
265
|
-
|
266
|
-
.vis-item .vis-delete {
|
267
|
-
background: url('
|
268
|
-
position: absolute;
|
269
|
-
width: 24px;
|
270
|
-
height: 24px;
|
271
|
-
top: -4px;
|
272
|
-
right: -24px;
|
273
|
-
cursor: pointer;
|
274
|
-
}
|
275
|
-
|
276
|
-
.vis-item.vis-range .vis-drag-left {
|
277
|
-
position: absolute;
|
278
|
-
width: 24px;
|
279
|
-
max-width: 20%;
|
280
|
-
min-width: 2px;
|
281
|
-
height: 100%;
|
282
|
-
top: 0;
|
283
|
-
left: -4px;
|
284
|
-
|
285
|
-
cursor: w-resize;
|
286
|
-
}
|
287
|
-
|
288
|
-
.vis-item.vis-range .vis-drag-right {
|
289
|
-
position: absolute;
|
290
|
-
width: 24px;
|
291
|
-
max-width: 20%;
|
292
|
-
min-width: 2px;
|
293
|
-
height: 100%;
|
294
|
-
top: 0;
|
295
|
-
right: -4px;
|
296
|
-
|
297
|
-
cursor: e-resize;
|
298
|
-
}
|
299
|
-
|
300
|
-
.vis-time-axis {
|
301
|
-
position: relative;
|
302
|
-
overflow: hidden;
|
303
|
-
}
|
304
|
-
|
305
|
-
.vis-time-axis.vis-foreground {
|
306
|
-
top: 0;
|
307
|
-
left: 0;
|
308
|
-
width: 100%;
|
309
|
-
}
|
310
|
-
|
311
|
-
.vis-time-axis.vis-background {
|
312
|
-
position: absolute;
|
313
|
-
top: 0;
|
314
|
-
left: 0;
|
315
|
-
width: 100%;
|
316
|
-
height: 100%;
|
317
|
-
}
|
318
|
-
|
319
|
-
.vis-time-axis .vis-text {
|
320
|
-
position: absolute;
|
321
|
-
color: #4d4d4d;
|
322
|
-
padding: 3px;
|
323
|
-
white-space: nowrap;
|
324
|
-
}
|
325
|
-
|
326
|
-
.vis-time-axis .vis-text.vis-measure {
|
327
|
-
position: absolute;
|
328
|
-
padding-left: 0;
|
329
|
-
padding-right: 0;
|
330
|
-
margin-left: 0;
|
331
|
-
margin-right: 0;
|
332
|
-
visibility: hidden;
|
333
|
-
}
|
334
|
-
|
335
|
-
.vis-time-axis .vis-grid.vis-vertical {
|
336
|
-
position: absolute;
|
337
|
-
border-left: 1px solid;
|
338
|
-
}
|
339
|
-
|
340
|
-
.vis-time-axis .vis-grid.vis-minor {
|
341
|
-
border-color: #e5e5e5;
|
342
|
-
}
|
343
|
-
|
344
|
-
.vis-time-axis .vis-grid.vis-major {
|
345
|
-
border-color: #bfbfbf;
|
346
|
-
}
|
347
|
-
|
348
|
-
.vis-current-time {
|
349
|
-
background-color: #FF7F6E;
|
350
|
-
width: 2px;
|
351
|
-
z-index: 1;
|
352
|
-
}
|
353
|
-
.vis-custom-time {
|
354
|
-
background-color: #6E94FF;
|
355
|
-
width: 2px;
|
356
|
-
cursor: move;
|
357
|
-
z-index: 1;
|
358
|
-
}
|
359
|
-
.vis-timeline {
|
360
|
-
/*
|
361
|
-
-webkit-transition: height .4s ease-in-out;
|
362
|
-
transition: height .4s ease-in-out;
|
363
|
-
*/
|
364
|
-
}
|
365
|
-
|
366
|
-
.vis-panel {
|
367
|
-
/*
|
368
|
-
-webkit-transition: height .4s ease-in-out, top .4s ease-in-out;
|
369
|
-
transition: height .4s ease-in-out, top .4s ease-in-out;
|
370
|
-
*/
|
371
|
-
}
|
372
|
-
|
373
|
-
.vis-axis {
|
374
|
-
/*
|
375
|
-
-webkit-transition: top .4s ease-in-out;
|
376
|
-
transition: top .4s ease-in-out;
|
377
|
-
*/
|
378
|
-
}
|
379
|
-
|
380
|
-
/* TODO: get animation working nicely
|
381
|
-
|
382
|
-
.vis-item {
|
383
|
-
-webkit-transition: top .4s ease-in-out;
|
384
|
-
transition: top .4s ease-in-out;
|
385
|
-
}
|
386
|
-
|
387
|
-
.vis-item.line {
|
388
|
-
-webkit-transition: height .4s ease-in-out, top .4s ease-in-out;
|
389
|
-
transition: height .4s ease-in-out, top .4s ease-in-out;
|
390
|
-
}
|
391
|
-
/**/
|
392
|
-
|
393
|
-
.vis-panel.vis-background.vis-horizontal .vis-grid.vis-horizontal {
|
394
|
-
position: absolute;
|
395
|
-
width: 100%;
|
396
|
-
height: 0;
|
397
|
-
border-bottom: 1px solid;
|
398
|
-
}
|
399
|
-
|
400
|
-
.vis-panel.vis-background.vis-horizontal .vis-grid.vis-minor {
|
401
|
-
border-color: #e5e5e5;
|
402
|
-
}
|
403
|
-
|
404
|
-
.vis-panel.vis-background.vis-horizontal .vis-grid.vis-major {
|
405
|
-
border-color: #bfbfbf;
|
406
|
-
}
|
407
|
-
|
408
|
-
|
409
|
-
.vis-data-axis .vis-y-axis.vis-major {
|
410
|
-
width: 100%;
|
411
|
-
position: absolute;
|
412
|
-
color: #4d4d4d;
|
413
|
-
white-space: nowrap;
|
414
|
-
}
|
415
|
-
|
416
|
-
.vis-data-axis .vis-y-axis.vis-major.vis-measure {
|
417
|
-
padding: 0;
|
418
|
-
margin: 0;
|
419
|
-
border: 0;
|
420
|
-
visibility: hidden;
|
421
|
-
width: auto;
|
422
|
-
}
|
423
|
-
|
424
|
-
|
425
|
-
.vis-data-axis .vis-y-axis.vis-minor {
|
426
|
-
position: absolute;
|
427
|
-
width: 100%;
|
428
|
-
color: #bebebe;
|
429
|
-
white-space: nowrap;
|
430
|
-
}
|
431
|
-
|
432
|
-
.vis-data-axis .vis-y-axis.vis-minor.vis-measure {
|
433
|
-
padding: 0;
|
434
|
-
margin: 0;
|
435
|
-
border: 0;
|
436
|
-
visibility: hidden;
|
437
|
-
width: auto;
|
438
|
-
}
|
439
|
-
|
440
|
-
.vis-data-axis .vis-y-axis.vis-title {
|
441
|
-
position: absolute;
|
442
|
-
color: #4d4d4d;
|
443
|
-
white-space: nowrap;
|
444
|
-
bottom: 20px;
|
445
|
-
text-align: center;
|
446
|
-
}
|
447
|
-
|
448
|
-
.vis-data-axis .vis-y-axis.vis-title.vis-measure {
|
449
|
-
padding: 0;
|
450
|
-
margin: 0;
|
451
|
-
visibility: hidden;
|
452
|
-
width: auto;
|
453
|
-
}
|
454
|
-
|
455
|
-
.vis-data-axis .vis-y-axis.vis-title.vis-left {
|
456
|
-
bottom: 0;
|
457
|
-
-webkit-transform-origin: left top;
|
458
|
-
-moz-transform-origin: left top;
|
459
|
-
-ms-transform-origin: left top;
|
460
|
-
-o-transform-origin: left top;
|
461
|
-
transform-origin: left bottom;
|
462
|
-
-webkit-transform: rotate(-90deg);
|
463
|
-
-moz-transform: rotate(-90deg);
|
464
|
-
-ms-transform: rotate(-90deg);
|
465
|
-
-o-transform: rotate(-90deg);
|
466
|
-
transform: rotate(-90deg);
|
467
|
-
}
|
468
|
-
|
469
|
-
.vis-data-axis .vis-y-axis.vis-title.vis-right {
|
470
|
-
bottom: 0;
|
471
|
-
-webkit-transform-origin: right bottom;
|
472
|
-
-moz-transform-origin: right bottom;
|
473
|
-
-ms-transform-origin: right bottom;
|
474
|
-
-o-transform-origin: right bottom;
|
475
|
-
transform-origin: right bottom;
|
476
|
-
-webkit-transform: rotate(90deg);
|
477
|
-
-moz-transform: rotate(90deg);
|
478
|
-
-ms-transform: rotate(90deg);
|
479
|
-
-o-transform: rotate(90deg);
|
480
|
-
transform: rotate(90deg);
|
481
|
-
}
|
482
|
-
|
483
|
-
.vis-legend {
|
484
|
-
background-color: rgba(247, 252, 255, 0.65);
|
485
|
-
padding: 5px;
|
486
|
-
border: 1px solid #b3b3b3;
|
487
|
-
box-shadow: 2px 2px 10px rgba(154, 154, 154, 0.55);
|
488
|
-
}
|
489
|
-
|
490
|
-
.vis-legend-text {
|
491
|
-
/*font-size: 10px;*/
|
492
|
-
white-space: nowrap;
|
493
|
-
display: inline-block
|
494
|
-
}
|
495
|
-
.vis-graph-group0 {
|
496
|
-
fill:#4f81bd;
|
497
|
-
fill-opacity:0;
|
498
|
-
stroke-width:2px;
|
499
|
-
stroke: #4f81bd;
|
500
|
-
}
|
501
|
-
|
502
|
-
.vis-graph-group1 {
|
503
|
-
fill:#f79646;
|
504
|
-
fill-opacity:0;
|
505
|
-
stroke-width:2px;
|
506
|
-
stroke: #f79646;
|
507
|
-
}
|
508
|
-
|
509
|
-
.vis-graph-group2 {
|
510
|
-
fill: #8c51cf;
|
511
|
-
fill-opacity:0;
|
512
|
-
stroke-width:2px;
|
513
|
-
stroke: #8c51cf;
|
514
|
-
}
|
515
|
-
|
516
|
-
.vis-graph-group3 {
|
517
|
-
fill: #75c841;
|
518
|
-
fill-opacity:0;
|
519
|
-
stroke-width:2px;
|
520
|
-
stroke: #75c841;
|
521
|
-
}
|
522
|
-
|
523
|
-
.vis-graph-group4 {
|
524
|
-
fill: #ff0100;
|
525
|
-
fill-opacity:0;
|
526
|
-
stroke-width:2px;
|
527
|
-
stroke: #ff0100;
|
528
|
-
}
|
529
|
-
|
530
|
-
.vis-graph-group5 {
|
531
|
-
fill: #37d8e6;
|
532
|
-
fill-opacity:0;
|
533
|
-
stroke-width:2px;
|
534
|
-
stroke: #37d8e6;
|
535
|
-
}
|
536
|
-
|
537
|
-
.vis-graph-group6 {
|
538
|
-
fill: #042662;
|
539
|
-
fill-opacity:0;
|
540
|
-
stroke-width:2px;
|
541
|
-
stroke: #042662;
|
542
|
-
}
|
543
|
-
|
544
|
-
.vis-graph-group7 {
|
545
|
-
fill:#00ff26;
|
546
|
-
fill-opacity:0;
|
547
|
-
stroke-width:2px;
|
548
|
-
stroke: #00ff26;
|
549
|
-
}
|
550
|
-
|
551
|
-
.vis-graph-group8 {
|
552
|
-
fill:#ff00ff;
|
553
|
-
fill-opacity:0;
|
554
|
-
stroke-width:2px;
|
555
|
-
stroke: #ff00ff;
|
556
|
-
}
|
557
|
-
|
558
|
-
.vis-graph-group9 {
|
559
|
-
fill: #8f3938;
|
560
|
-
fill-opacity:0;
|
561
|
-
stroke-width:2px;
|
562
|
-
stroke: #8f3938;
|
563
|
-
}
|
564
|
-
|
565
|
-
.vis-timeline .vis-fill {
|
566
|
-
fill-opacity:0.1;
|
567
|
-
stroke: none;
|
568
|
-
}
|
569
|
-
|
570
|
-
|
571
|
-
.vis-timeline .vis-bar {
|
572
|
-
fill-opacity:0.5;
|
573
|
-
stroke-width:1px;
|
574
|
-
}
|
575
|
-
|
576
|
-
.vis-timeline .vis-point {
|
577
|
-
stroke-width:2px;
|
578
|
-
fill-opacity:1.0;
|
579
|
-
}
|
580
|
-
|
581
|
-
|
582
|
-
.vis-timeline .vis-legend-background {
|
583
|
-
stroke-width:1px;
|
584
|
-
fill-opacity:0.9;
|
585
|
-
fill: #ffffff;
|
586
|
-
stroke: #c2c2c2;
|
587
|
-
}
|
588
|
-
|
589
|
-
|
590
|
-
.vis-timeline .vis-outline {
|
591
|
-
stroke-width:1px;
|
592
|
-
fill-opacity:1;
|
593
|
-
fill: #ffffff;
|
594
|
-
stroke: #e5e5e5;
|
595
|
-
}
|
596
|
-
|
597
|
-
.vis-timeline .vis-icon-fill {
|
598
|
-
fill-opacity:0.3;
|
599
|
-
stroke: none;
|
600
|
-
}
|
601
|
-
|
602
|
-
div.vis-network div.vis-manipulation {
|
603
|
-
border-width: 0;
|
604
|
-
border-bottom: 1px;
|
605
|
-
border-style:solid;
|
606
|
-
border-color: #d6d9d8;
|
607
|
-
background: #ffffff; /* Old browsers */
|
608
|
-
background: -moz-linear-gradient(top, #ffffff 0%, #fcfcfc 48%, #fafafa 50%, #fcfcfc 100%); /* FF3.6+ */
|
609
|
-
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(48%,#fcfcfc), color-stop(50%,#fafafa), color-stop(100%,#fcfcfc)); /* Chrome,Safari4+ */
|
610
|
-
background: -webkit-linear-gradient(top, #ffffff 0%,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%); /* Chrome10+,Safari5.1+ */
|
611
|
-
background: -o-linear-gradient(top, #ffffff 0%,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%); /* Opera 11.10+ */
|
612
|
-
background: -ms-linear-gradient(top, #ffffff 0%,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%); /* IE10+ */
|
613
|
-
background: linear-gradient(to bottom, #ffffff 0%,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%); /* W3C */
|
614
|
-
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fcfcfc',GradientType=0 ); /* IE6-9 */
|
615
|
-
|
616
|
-
position: absolute;
|
617
|
-
left: 0;
|
618
|
-
top: 0;
|
619
|
-
width: 100%;
|
620
|
-
height: 30px;
|
621
|
-
}
|
622
|
-
|
623
|
-
div.vis-network div.vis-edit-mode {
|
624
|
-
position:absolute;
|
625
|
-
left: 0;
|
626
|
-
top: 15px;
|
627
|
-
height: 30px;
|
628
|
-
}
|
629
|
-
|
630
|
-
/* FIXME: shouldn't the vis-close button be a child of the vis-manipulation div? */
|
631
|
-
|
632
|
-
div.vis-network div.vis-close {
|
633
|
-
position:absolute;
|
634
|
-
right: 0;
|
635
|
-
top: 0;
|
636
|
-
width: 30px;
|
637
|
-
height: 30px;
|
638
|
-
|
639
|
-
background-position: 20px 3px;
|
640
|
-
background-repeat: no-repeat;
|
641
|
-
background-image: url("
|
642
|
-
cursor: pointer;
|
643
|
-
-webkit-touch-callout: none;
|
644
|
-
-webkit-user-select: none;
|
645
|
-
-khtml-user-select: none;
|
646
|
-
-moz-user-select: none;
|
647
|
-
-ms-user-select: none;
|
648
|
-
user-select: none;
|
649
|
-
}
|
650
|
-
|
651
|
-
div.vis-network div.vis-close:hover {
|
652
|
-
opacity: 0.6;
|
653
|
-
}
|
654
|
-
|
655
|
-
div.vis-network div.vis-manipulation div.vis-button,
|
656
|
-
div.vis-network div.vis-edit-mode div.vis-button {
|
657
|
-
position:relative;
|
658
|
-
top:-7px;
|
659
|
-
font-family: verdana;
|
660
|
-
font-size: 12px;
|
661
|
-
-moz-border-radius: 15px;
|
662
|
-
border-radius: 15px;
|
663
|
-
display:inline-block;
|
664
|
-
background-position: 0px 0px;
|
665
|
-
background-repeat:no-repeat;
|
666
|
-
height:24px;
|
667
|
-
margin: 0px 0px 0px 10px;
|
668
|
-
vertical-align:middle;
|
669
|
-
cursor: pointer;
|
670
|
-
padding: 0px 8px 0px 8px;
|
671
|
-
-webkit-touch-callout: none;
|
672
|
-
-webkit-user-select: none;
|
673
|
-
-khtml-user-select: none;
|
674
|
-
-moz-user-select: none;
|
675
|
-
-ms-user-select: none;
|
676
|
-
user-select: none;
|
677
|
-
}
|
678
|
-
|
679
|
-
div.vis-network div.vis-manipulation div.vis-button:hover {
|
680
|
-
box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.20);
|
681
|
-
}
|
682
|
-
|
683
|
-
div.vis-network div.vis-manipulation div.vis-button:active {
|
684
|
-
box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.50);
|
685
|
-
}
|
686
|
-
|
687
|
-
div.vis-network div.vis-manipulation div.vis-button.vis-back {
|
688
|
-
background-image: url("
|
689
|
-
}
|
690
|
-
|
691
|
-
div.vis-network div.vis-manipulation div.vis-button.vis-none:hover {
|
692
|
-
box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.0);
|
693
|
-
cursor: default;
|
694
|
-
}
|
695
|
-
div.vis-network div.vis-manipulation div.vis-button.vis-none:active {
|
696
|
-
box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.0);
|
697
|
-
}
|
698
|
-
div.vis-network div.vis-manipulation div.vis-button.vis-none {
|
699
|
-
padding: 0;
|
700
|
-
}
|
701
|
-
div.vis-network div.vis-manipulation div.notification {
|
702
|
-
margin: 2px;
|
703
|
-
font-weight: bold;
|
704
|
-
}
|
705
|
-
|
706
|
-
div.vis-network div.vis-manipulation div.vis-button.vis-add {
|
707
|
-
background-image: url("
|
708
|
-
}
|
709
|
-
|
710
|
-
div.vis-network div.vis-manipulation div.vis-button.vis-edit,
|
711
|
-
div.vis-network div.vis-edit-mode div.vis-button.vis-edit {
|
712
|
-
background-image: url("
|
713
|
-
}
|
714
|
-
|
715
|
-
div.vis-network div.vis-edit-mode div.vis-button.vis-edit.vis-edit-mode {
|
716
|
-
background-color: #fcfcfc;
|
717
|
-
border: 1px solid #cccccc;
|
718
|
-
}
|
719
|
-
|
720
|
-
div.vis-network div.vis-manipulation div.vis-button.vis-connect {
|
721
|
-
background-image: url("
|
722
|
-
}
|
723
|
-
|
724
|
-
div.vis-network div.vis-manipulation div.vis-button.vis-delete {
|
725
|
-
background-image: url("
|
726
|
-
}
|
727
|
-
/* top right bottom left */
|
728
|
-
div.vis-network div.vis-manipulation div.vis-label,
|
729
|
-
div.vis-network div.vis-edit-mode div.vis-label {
|
730
|
-
margin: 0 0 0 23px;
|
731
|
-
line-height: 25px;
|
732
|
-
}
|
733
|
-
div.vis-network div.vis-manipulation div.vis-separator-line {
|
734
|
-
display:inline-block;
|
735
|
-
width:1px;
|
736
|
-
height:20px;
|
737
|
-
background-color: #bdbdbd;
|
738
|
-
margin: 5px 7px 0 15px;
|
739
|
-
}
|
740
|
-
|
741
|
-
/* TODO: is this redundant?
|
742
|
-
div.network-navigation_wrapper {
|
743
|
-
position: absolute;
|
744
|
-
left: 0;
|
745
|
-
top: 0;
|
746
|
-
width: 100%;
|
747
|
-
height: 100%;
|
748
|
-
}
|
749
|
-
*/
|
750
|
-
div.vis-network div.vis-navigation div.vis-button {
|
751
|
-
width:34px;
|
752
|
-
height:34px;
|
753
|
-
-moz-border-radius: 17px;
|
754
|
-
border-radius: 17px;
|
755
|
-
position:absolute;
|
756
|
-
display:inline-block;
|
757
|
-
background-position: 2px 2px;
|
758
|
-
background-repeat:no-repeat;
|
759
|
-
cursor: pointer;
|
760
|
-
-webkit-touch-callout: none;
|
761
|
-
-webkit-user-select: none;
|
762
|
-
-khtml-user-select: none;
|
763
|
-
-moz-user-select: none;
|
764
|
-
-ms-user-select: none;
|
765
|
-
user-select: none;
|
766
|
-
}
|
767
|
-
|
768
|
-
div.vis-network div.vis-navigation div.vis-button:hover {
|
769
|
-
box-shadow: 0 0 3px 3px rgba(56, 207, 21, 0.30);
|
770
|
-
}
|
771
|
-
|
772
|
-
div.vis-network div.vis-navigation div.vis-button:active {
|
773
|
-
box-shadow: 0 0 1px 3px rgba(56, 207, 21, 0.95);
|
774
|
-
}
|
775
|
-
|
776
|
-
div.vis-network div.vis-navigation div.vis-button.vis-up {
|
777
|
-
background-image: url("
|
778
|
-
bottom:50px;
|
779
|
-
left:55px;
|
780
|
-
}
|
781
|
-
div.vis-network div.vis-navigation div.vis-button.vis-down {
|
782
|
-
background-image: url("
|
783
|
-
bottom:10px;
|
784
|
-
left:55px;
|
785
|
-
}
|
786
|
-
div.vis-network div.vis-navigation div.vis-button.vis-left {
|
787
|
-
background-image: url("
|
788
|
-
bottom:10px;
|
789
|
-
left:15px;
|
790
|
-
}
|
791
|
-
div.vis-network div.vis-navigation div.vis-button.vis-right {
|
792
|
-
background-image: url("
|
793
|
-
bottom:10px;
|
794
|
-
left:95px;
|
795
|
-
}
|
796
|
-
div.vis-network div.vis-navigation div.vis-button.vis-zoomIn {
|
797
|
-
background-image: url("
|
798
|
-
bottom:10px;
|
799
|
-
right:15px;
|
800
|
-
}
|
801
|
-
div.vis-network div.vis-navigation div.vis-button.vis-zoomOut {
|
802
|
-
background-image: url("
|
803
|
-
bottom:10px;
|
804
|
-
right:55px;
|
805
|
-
}
|
806
|
-
div.vis-network div.vis-navigation div.vis-button.vis-zoomExtends {
|
807
|
-
background-image: url("
|
808
|
-
bottom:50px;
|
809
|
-
right:15px;
|
810
|
-
}
|
811
|
-
div.vis-network-tooltip {
|
812
|
-
position: absolute;
|
813
|
-
visibility: hidden;
|
814
|
-
padding: 5px;
|
815
|
-
white-space: nowrap;
|
816
|
-
|
817
|
-
font-family: verdana;
|
818
|
-
font-size:14px;
|
819
|
-
font-color:#000000;
|
820
|
-
background-color: #f5f4ed;
|
821
|
-
|
822
|
-
-moz-border-radius: 3px;
|
823
|
-
-webkit-border-radius: 3px;
|
824
|
-
border-radius: 3px;
|
825
|
-
border: 1px solid #808074;
|
826
|
-
|
827
|
-
box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
|
828
|
-
pointer-events: none;
|
829
|
-
}
|
830
|
-
div.vis-network-configuration {
|
831
|
-
position:relative;
|
832
|
-
display:block;
|
833
|
-
float:left;
|
834
|
-
font-size:12px;
|
835
|
-
}
|
836
|
-
|
837
|
-
div.vis-network-configuration-wrapper {
|
838
|
-
display:block;
|
839
|
-
width:700px;
|
840
|
-
}
|
841
|
-
|
842
|
-
|
843
|
-
div.vis-network-configuration.vis-option-container{
|
844
|
-
display:block;
|
845
|
-
width:495px;
|
846
|
-
background-color: #ffffff;
|
847
|
-
border:2px solid #f7f8fa;
|
848
|
-
border-radius:4px;
|
849
|
-
margin-top:20px;
|
850
|
-
left:10px;
|
851
|
-
padding-left:5px;
|
852
|
-
}
|
853
|
-
|
854
|
-
div.vis-network-configuration.button{
|
855
|
-
display:block;
|
856
|
-
width:495px;
|
857
|
-
height:25px;
|
858
|
-
vertical-align: middle;
|
859
|
-
line-height:25px;
|
860
|
-
background-color: #f7f8fa;
|
861
|
-
border:2px solid #ceced0;
|
862
|
-
border-radius:4px;
|
863
|
-
margin-top:20px;
|
864
|
-
left:10px;
|
865
|
-
padding-left:5px;
|
866
|
-
cursor: pointer;
|
867
|
-
margin-bottom:30px;
|
868
|
-
}
|
869
|
-
|
870
|
-
div.vis-network-configuration.button.hover{
|
871
|
-
background-color: #4588e6;
|
872
|
-
border:2px solid #214373;
|
873
|
-
color:#ffffff;
|
874
|
-
}
|
875
|
-
|
876
|
-
div.vis-network-configuration.item{
|
877
|
-
display:block;
|
878
|
-
float:left;
|
879
|
-
width:495px;
|
880
|
-
height:25px;
|
881
|
-
vertical-align: middle;
|
882
|
-
line-height:25px;
|
883
|
-
}
|
884
|
-
|
885
|
-
|
886
|
-
div.vis-network-configuration.item.s2{
|
887
|
-
left:10px;
|
888
|
-
background-color: #f7f8fa;
|
889
|
-
padding-left:5px;
|
890
|
-
border-radius:3px;
|
891
|
-
}
|
892
|
-
div.vis-network-configuration.item.s3{
|
893
|
-
left:20px;
|
894
|
-
background-color: #e4e9f0;
|
895
|
-
padding-left:5px;
|
896
|
-
border-radius:3px;
|
897
|
-
}
|
898
|
-
div.vis-network-configuration.item.s4{
|
899
|
-
left:30px;
|
900
|
-
background-color: #cfd8e6;
|
901
|
-
padding-left:5px;
|
902
|
-
border-radius:3px;
|
903
|
-
}
|
904
|
-
|
905
|
-
div.vis-network-configuration.header{
|
906
|
-
font-size:18px;
|
907
|
-
font-weight: bold;
|
908
|
-
}
|
909
|
-
|
910
|
-
div.vis-network-configuration.label{
|
911
|
-
width:120px;
|
912
|
-
height:25px;
|
913
|
-
line-height: 25px;
|
914
|
-
}
|
915
|
-
|
916
|
-
div.vis-network-configuration.label.s3{
|
917
|
-
width:110px;
|
918
|
-
}
|
919
|
-
div.vis-network-configuration.label.s4{
|
920
|
-
width:100px;
|
921
|
-
}
|
922
|
-
|
923
|
-
div.vis-network-configuration.colorBlock{
|
924
|
-
top:1px;
|
925
|
-
width:30px;
|
926
|
-
height:19px;
|
927
|
-
border:1px solid #444444;
|
928
|
-
border-radius:2px;
|
929
|
-
padding:0px;
|
930
|
-
margin:0px;
|
931
|
-
cursor:pointer;
|
932
|
-
}
|
933
|
-
|
934
|
-
input.vis-network-configuration.checkbox {
|
935
|
-
left:-5px;
|
936
|
-
}
|
937
|
-
|
938
|
-
|
939
|
-
input.vis-network-configuration.rangeinput{
|
940
|
-
position:relative;
|
941
|
-
top:-5px;
|
942
|
-
width:60px;
|
943
|
-
height:13px;
|
944
|
-
padding:1px;
|
945
|
-
margin:0;
|
946
|
-
pointer-events:none;
|
947
|
-
}
|
948
|
-
|
949
|
-
input.vis-network-configuration.range{
|
950
|
-
/*removes default webkit styles*/
|
951
|
-
-webkit-appearance: none;
|
952
|
-
|
953
|
-
/*fix for FF unable to apply focus style bug */
|
954
|
-
border: 0px solid white;
|
955
|
-
background-color:rgba(0,0,0,0);
|
956
|
-
|
957
|
-
/*required for proper track sizing in FF*/
|
958
|
-
width: 300px;
|
959
|
-
height:20px;
|
960
|
-
}
|
961
|
-
input.vis-network-configuration.range::-webkit-slider-runnable-track {
|
962
|
-
width: 300px;
|
963
|
-
height: 5px;
|
964
|
-
background: #dedede; /* Old browsers */
|
965
|
-
background: -moz-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* FF3.6+ */
|
966
|
-
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dedede), color-stop(99%,#c8c8c8)); /* Chrome,Safari4+ */
|
967
|
-
background: -webkit-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* Chrome10+,Safari5.1+ */
|
968
|
-
background: -o-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* Opera 11.10+ */
|
969
|
-
background: -ms-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* IE10+ */
|
970
|
-
background: linear-gradient(to bottom, #dedede 0%,#c8c8c8 99%); /* W3C */
|
971
|
-
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dedede', endColorstr='#c8c8c8',GradientType=0 ); /* IE6-9 */
|
972
|
-
|
973
|
-
border: 1px solid #999999;
|
974
|
-
box-shadow: #aaaaaa 0px 0px 3px 0px;
|
975
|
-
border-radius: 3px;
|
976
|
-
}
|
977
|
-
input.vis-network-configuration.range::-webkit-slider-thumb {
|
978
|
-
-webkit-appearance: none;
|
979
|
-
border: 1px solid #14334b;
|
980
|
-
height: 17px;
|
981
|
-
width: 17px;
|
982
|
-
border-radius: 50%;
|
983
|
-
background: #3876c2; /* Old browsers */
|
984
|
-
background: -moz-linear-gradient(top, #3876c2 0%, #385380 100%); /* FF3.6+ */
|
985
|
-
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3876c2), color-stop(100%,#385380)); /* Chrome,Safari4+ */
|
986
|
-
background: -webkit-linear-gradient(top, #3876c2 0%,#385380 100%); /* Chrome10+,Safari5.1+ */
|
987
|
-
background: -o-linear-gradient(top, #3876c2 0%,#385380 100%); /* Opera 11.10+ */
|
988
|
-
background: -ms-linear-gradient(top, #3876c2 0%,#385380 100%); /* IE10+ */
|
989
|
-
background: linear-gradient(to bottom, #3876c2 0%,#385380 100%); /* W3C */
|
990
|
-
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3876c2', endColorstr='#385380',GradientType=0 ); /* IE6-9 */
|
991
|
-
box-shadow: #111927 0px 0px 1px 0px;
|
992
|
-
margin-top: -7px;
|
993
|
-
}
|
994
|
-
input.vis-network-configuration.range:focus {
|
995
|
-
outline: none;
|
996
|
-
}
|
997
|
-
input.vis-network-configuration.range:focus::-webkit-slider-runnable-track {
|
998
|
-
background: #9d9d9d; /* Old browsers */
|
999
|
-
background: -moz-linear-gradient(top, #9d9d9d 0%, #c8c8c8 99%); /* FF3.6+ */
|
1000
|
-
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9d9d9d), color-stop(99%,#c8c8c8)); /* Chrome,Safari4+ */
|
1001
|
-
background: -webkit-linear-gradient(top, #9d9d9d 0%,#c8c8c8 99%); /* Chrome10+,Safari5.1+ */
|
1002
|
-
background: -o-linear-gradient(top, #9d9d9d 0%,#c8c8c8 99%); /* Opera 11.10+ */
|
1003
|
-
background: -ms-linear-gradient(top, #9d9d9d 0%,#c8c8c8 99%); /* IE10+ */
|
1004
|
-
background: linear-gradient(to bottom, #9d9d9d 0%,#c8c8c8 99%); /* W3C */
|
1005
|
-
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9d9d9d', endColorstr='#c8c8c8',GradientType=0 ); /* IE6-9 */
|
1006
|
-
}
|
1007
|
-
|
1008
|
-
input.vis-network-configuration.range::-moz-range-track {
|
1009
|
-
width: 300px;
|
1010
|
-
height: 10px;
|
1011
|
-
background: #dedede; /* Old browsers */
|
1012
|
-
background: -moz-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* FF3.6+ */
|
1013
|
-
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dedede), color-stop(99%,#c8c8c8)); /* Chrome,Safari4+ */
|
1014
|
-
background: -webkit-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* Chrome10+,Safari5.1+ */
|
1015
|
-
background: -o-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* Opera 11.10+ */
|
1016
|
-
background: -ms-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* IE10+ */
|
1017
|
-
background: linear-gradient(to bottom, #dedede 0%,#c8c8c8 99%); /* W3C */
|
1018
|
-
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dedede', endColorstr='#c8c8c8',GradientType=0 ); /* IE6-9 */
|
1019
|
-
|
1020
|
-
border: 1px solid #999999;
|
1021
|
-
box-shadow: #aaaaaa 0px 0px 3px 0px;
|
1022
|
-
border-radius: 3px;
|
1023
|
-
}
|
1024
|
-
input.vis-network-configuration.range::-moz-range-thumb {
|
1025
|
-
border: none;
|
1026
|
-
height: 16px;
|
1027
|
-
width: 16px;
|
1028
|
-
|
1029
|
-
border-radius: 50%;
|
1030
|
-
background: #385380;
|
1031
|
-
}
|
1032
|
-
|
1033
|
-
/*hide the outline behind the border*/
|
1034
|
-
input.vis-network-configuration.range:-moz-focusring{
|
1035
|
-
outline: 1px solid white;
|
1036
|
-
outline-offset: -1px;
|
1037
|
-
}
|
1038
|
-
|
1039
|
-
input.vis-network-configuration.range::-ms-track {
|
1040
|
-
width: 300px;
|
1041
|
-
height: 5px;
|
1042
|
-
|
1043
|
-
/*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
|
1044
|
-
background: transparent;
|
1045
|
-
|
1046
|
-
/*leave room for the larger thumb to overflow with a transparent border */
|
1047
|
-
border-color: transparent;
|
1048
|
-
border-width: 6px 0;
|
1049
|
-
|
1050
|
-
/*remove default tick marks*/
|
1051
|
-
color: transparent;
|
1052
|
-
}
|
1053
|
-
input.vis-network-configuration.range::-ms-fill-lower {
|
1054
|
-
background: #777;
|
1055
|
-
border-radius: 10px;
|
1056
|
-
}
|
1057
|
-
input.vis-network-configuration.range::-ms-fill-upper {
|
1058
|
-
background: #ddd;
|
1059
|
-
border-radius: 10px;
|
1060
|
-
}
|
1061
|
-
input.vis-network-configuration.range::-ms-thumb {
|
1062
|
-
border: none;
|
1063
|
-
height: 16px;
|
1064
|
-
width: 16px;
|
1065
|
-
border-radius: 50%;
|
1066
|
-
background: #385380;
|
1067
|
-
}
|
1068
|
-
input.vis-network-configuration.range:focus::-ms-fill-lower {
|
1069
|
-
background: #888;
|
1070
|
-
}
|
1071
|
-
input.vis-network-configuration.range:focus::-ms-fill-upper {
|
1072
|
-
background: #ccc;
|
1073
|
-
}
|
1074
|
-
|
1075
|
-
div.vis-color-picker {
|
1076
|
-
position:absolute;
|
1077
|
-
margin-top:-140px;
|
1078
|
-
margin-left:30px;
|
1079
|
-
width:293px;
|
1080
|
-
height:425px;
|
1081
|
-
padding: 10px;
|
1082
|
-
border-radius:15px;
|
1083
|
-
background-color:#ffffff;
|
1084
|
-
display:none;
|
1085
|
-
box-shadow: rgba(0,0,0,0.5) 0px 0px 10px 0px;
|
1086
|
-
}
|
1087
|
-
|
1088
|
-
div.vis-color-picker div.vis-arrow {
|
1089
|
-
position: absolute;
|
1090
|
-
top:147px;
|
1091
|
-
left:5px;
|
1092
|
-
}
|
1093
|
-
|
1094
|
-
div.vis-color-picker div.vis-arrow:after,
|
1095
|
-
div.vis-color-picker div.vis-arrow:before {
|
1096
|
-
right: 100%;
|
1097
|
-
top: 50%;
|
1098
|
-
border: solid transparent;
|
1099
|
-
content: " ";
|
1100
|
-
height: 0;
|
1101
|
-
width: 0;
|
1102
|
-
position: absolute;
|
1103
|
-
pointer-events: none;
|
1104
|
-
}
|
1105
|
-
|
1106
|
-
div.vis-color-picker div.vis-arrow:after {
|
1107
|
-
border-color: rgba(255, 255, 255, 0);
|
1108
|
-
border-right-color: #ffffff;
|
1109
|
-
border-width: 30px;
|
1110
|
-
margin-top: -30px;
|
1111
|
-
}
|
1112
|
-
|
1113
|
-
div.vis-color-picker div.vis-color {
|
1114
|
-
position:absolute;
|
1115
|
-
width: 289px;
|
1116
|
-
height: 289px;
|
1117
|
-
cursor: pointer;
|
1118
|
-
}
|
1119
|
-
|
1120
|
-
|
1121
|
-
|
1122
|
-
div.vis-color-picker div.vis-brightness {
|
1123
|
-
position: absolute;
|
1124
|
-
top:313px;
|
1125
|
-
}
|
1126
|
-
|
1127
|
-
div.vis-color-picker div.vis-opacity {
|
1128
|
-
position:absolute;
|
1129
|
-
top:350px;
|
1130
|
-
}
|
1131
|
-
|
1132
|
-
div.vis-color-picker div.vis-selector {
|
1133
|
-
position:absolute;
|
1134
|
-
top:137px;
|
1135
|
-
left:137px;
|
1136
|
-
width:15px;
|
1137
|
-
height:15px;
|
1138
|
-
border-radius:15px;
|
1139
|
-
border:1px solid #ffffff;
|
1140
|
-
background: #4c4c4c; /* Old browsers */
|
1141
|
-
background: -moz-linear-gradient(top, #4c4c4c 0%, #595959 12%, #666666 25%, #474747 39%, #2c2c2c 50%, #000000 51%, #111111 60%, #2b2b2b 76%, #1c1c1c 91%, #131313 100%); /* FF3.6+ */
|
1142
|
-
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4c4c4c), color-stop(12%,#595959), color-stop(25%,#666666), color-stop(39%,#474747), color-stop(50%,#2c2c2c), color-stop(51%,#000000), color-stop(60%,#111111), color-stop(76%,#2b2b2b), color-stop(91%,#1c1c1c), color-stop(100%,#131313)); /* Chrome,Safari4+ */
|
1143
|
-
background: -webkit-linear-gradient(top, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%); /* Chrome10+,Safari5.1+ */
|
1144
|
-
background: -o-linear-gradient(top, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%); /* Opera 11.10+ */
|
1145
|
-
background: -ms-linear-gradient(top, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%); /* IE10+ */
|
1146
|
-
background: linear-gradient(to bottom, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%); /* W3C */
|
1147
|
-
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#131313',GradientType=0 ); /* IE6-9 */
|
1148
|
-
}
|
1149
|
-
|
1150
|
-
|
1151
|
-
|
1152
|
-
div.vis-color-picker div.vis-new-color {
|
1153
|
-
position:absolute;
|
1154
|
-
width:140px;
|
1155
|
-
height:20px;
|
1156
|
-
border:1px solid rgba(0,0,0,0.1);
|
1157
|
-
border-radius:5px;
|
1158
|
-
top:380px;
|
1159
|
-
left:159px;
|
1160
|
-
text-align:right;
|
1161
|
-
padding-right:2px;
|
1162
|
-
font-size:10px;
|
1163
|
-
color:rgba(0,0,0,0.4);
|
1164
|
-
vertical-align:middle;
|
1165
|
-
line-height:20px;
|
1166
|
-
|
1167
|
-
}
|
1168
|
-
|
1169
|
-
div.vis-color-picker div.vis-initial-color {
|
1170
|
-
position:absolute;
|
1171
|
-
width:140px;
|
1172
|
-
height:20px;
|
1173
|
-
border:1px solid rgba(0,0,0,0.1);
|
1174
|
-
border-radius:5px;
|
1175
|
-
top:380px;
|
1176
|
-
left:10px;
|
1177
|
-
text-align:left;
|
1178
|
-
padding-left:2px;
|
1179
|
-
font-size:10px;
|
1180
|
-
color:rgba(0,0,0,0.4);
|
1181
|
-
vertical-align:middle;
|
1182
|
-
line-height:20px;
|
1183
|
-
}
|
1184
|
-
|
1185
|
-
div.vis-color-picker div.vis-label {
|
1186
|
-
position:absolute;
|
1187
|
-
width:300px;
|
1188
|
-
left:10px;
|
1189
|
-
}
|
1190
|
-
|
1191
|
-
div.vis-color-picker div.vis-label.vis-brightness {
|
1192
|
-
top:300px;
|
1193
|
-
}
|
1194
|
-
|
1195
|
-
div.vis-color-picker div.vis-label.vis-opacity {
|
1196
|
-
top:338px;
|
1197
|
-
}
|
1198
|
-
|
1199
|
-
div.vis-color-picker div.vis-button {
|
1200
|
-
position:absolute;
|
1201
|
-
width:68px;
|
1202
|
-
height:25px;
|
1203
|
-
border-radius:10px;
|
1204
|
-
vertical-align: middle;
|
1205
|
-
text-align:center;
|
1206
|
-
line-height: 25px;
|
1207
|
-
top:410px;
|
1208
|
-
border:2px solid #d9d9d9;
|
1209
|
-
background-color: #f7f7f7;
|
1210
|
-
cursor:pointer;
|
1211
|
-
}
|
1212
|
-
|
1213
|
-
div.vis-color-picker div.vis-button.vis-cancel {
|
1214
|
-
/*border:2px solid #ff4e33;*/
|
1215
|
-
/*background-color: #ff7761;*/
|
1216
|
-
left:5px;
|
1217
|
-
}
|
1218
|
-
div.vis-color-picker div.vis-button.vis-load {
|
1219
|
-
/*border:2px solid #a153e6;*/
|
1220
|
-
/*background-color: #cb8dff;*/
|
1221
|
-
left:82px;
|
1222
|
-
}
|
1223
|
-
div.vis-color-picker div.vis-button.vis-apply {
|
1224
|
-
/*border:2px solid #4588e6;*/
|
1225
|
-
/*background-color: #82b6ff;*/
|
1226
|
-
left:159px;
|
1227
|
-
}
|
1228
|
-
div.vis-color-picker div.vis-button.vis-save {
|
1229
|
-
/*border:2px solid #45e655;*/
|
1230
|
-
/*background-color: #6dff7c;*/
|
1231
|
-
left:236px;
|
1232
|
-
}
|
1233
|
-
|
1234
|
-
|
1235
|
-
div.vis-color-picker input.vis-range {
|
1236
|
-
width: 290px;
|
1237
|
-
height:20px;
|
1238
|
-
}
|
1239
|
-
|
1240
|
-
/* TODO: is this redundant?
|
1241
|
-
div.vis-color-picker input.vis-range-brightness {
|
1242
|
-
width: 289px !important;
|
1243
|
-
}
|
1244
|
-
|
1245
|
-
|
1246
|
-
div.vis-color-picker input.vis-saturation-range {
|
1247
|
-
width: 289px !important;
|
1
|
+
.vis .overlay {
|
2
|
+
position: absolute;
|
3
|
+
top: 0;
|
4
|
+
left: 0;
|
5
|
+
width: 100%;
|
6
|
+
height: 100%;
|
7
|
+
|
8
|
+
/* Must be displayed above for example selected Timeline items */
|
9
|
+
z-index: 10;
|
10
|
+
}
|
11
|
+
|
12
|
+
.vis-active {
|
13
|
+
box-shadow: 0 0 10px #86d5f8;
|
14
|
+
}
|
15
|
+
|
16
|
+
/* override some bootstrap styles screwing up the timelines css */
|
17
|
+
|
18
|
+
.vis [class*="span"] {
|
19
|
+
min-height: 0;
|
20
|
+
width: auto;
|
21
|
+
}
|
22
|
+
|
23
|
+
|
24
|
+
.vis-timeline {
|
25
|
+
position: relative;
|
26
|
+
border: 1px solid #bfbfbf;
|
27
|
+
|
28
|
+
overflow: hidden;
|
29
|
+
padding: 0;
|
30
|
+
margin: 0;
|
31
|
+
|
32
|
+
box-sizing: border-box;
|
33
|
+
}
|
34
|
+
|
35
|
+
|
36
|
+
.vis-panel {
|
37
|
+
position: absolute;
|
38
|
+
|
39
|
+
padding: 0;
|
40
|
+
margin: 0;
|
41
|
+
|
42
|
+
box-sizing: border-box;
|
43
|
+
}
|
44
|
+
|
45
|
+
.vis-panel.vis-center,
|
46
|
+
.vis-panel.vis-left,
|
47
|
+
.vis-panel.vis-right,
|
48
|
+
.vis-panel.vis-top,
|
49
|
+
.vis-panel.vis-bottom {
|
50
|
+
border: 1px #bfbfbf;
|
51
|
+
}
|
52
|
+
|
53
|
+
.vis-panel.vis-center,
|
54
|
+
.vis-panel.vis-left,
|
55
|
+
.vis-panel.vis-right {
|
56
|
+
border-top-style: solid;
|
57
|
+
border-bottom-style: solid;
|
58
|
+
overflow: hidden;
|
59
|
+
}
|
60
|
+
|
61
|
+
.vis-panel.vis-center,
|
62
|
+
.vis-panel.vis-top,
|
63
|
+
.vis-panel.vis-bottom {
|
64
|
+
border-left-style: solid;
|
65
|
+
border-right-style: solid;
|
66
|
+
}
|
67
|
+
|
68
|
+
.vis-background {
|
69
|
+
overflow: hidden;
|
70
|
+
}
|
71
|
+
|
72
|
+
.vis-panel > .vis-content {
|
73
|
+
position: relative;
|
74
|
+
}
|
75
|
+
|
76
|
+
.vis-panel .vis-shadow {
|
77
|
+
position: absolute;
|
78
|
+
width: 100%;
|
79
|
+
height: 1px;
|
80
|
+
box-shadow: 0 0 10px rgba(0,0,0,0.8);
|
81
|
+
/* TODO: find a nice way to ensure vis-shadows are drawn on top of items
|
82
|
+
z-index: 1;
|
83
|
+
*/
|
84
|
+
}
|
85
|
+
|
86
|
+
.vis-panel .vis-shadow.vis-top {
|
87
|
+
top: -1px;
|
88
|
+
left: 0;
|
89
|
+
}
|
90
|
+
|
91
|
+
.vis-panel .vis-shadow.vis-bottom {
|
92
|
+
bottom: -1px;
|
93
|
+
left: 0;
|
94
|
+
}
|
95
|
+
|
96
|
+
.vis-labelset {
|
97
|
+
position: relative;
|
98
|
+
|
99
|
+
overflow: hidden;
|
100
|
+
|
101
|
+
box-sizing: border-box;
|
102
|
+
}
|
103
|
+
|
104
|
+
.vis-labelset .vis-label {
|
105
|
+
position: relative;
|
106
|
+
left: 0;
|
107
|
+
top: 0;
|
108
|
+
width: 100%;
|
109
|
+
color: #4d4d4d;
|
110
|
+
|
111
|
+
box-sizing: border-box;
|
112
|
+
}
|
113
|
+
|
114
|
+
.vis-labelset .vis-label {
|
115
|
+
border-bottom: 1px solid #bfbfbf;
|
116
|
+
}
|
117
|
+
|
118
|
+
.vis-labelset .vis-label:last-child {
|
119
|
+
border-bottom: none;
|
120
|
+
}
|
121
|
+
|
122
|
+
.vis-labelset .vis-label .vis-inner {
|
123
|
+
display: inline-block;
|
124
|
+
padding: 5px;
|
125
|
+
}
|
126
|
+
|
127
|
+
.vis-labelset .vis-label .vis-inner.vis-hidden {
|
128
|
+
padding: 0;
|
129
|
+
}
|
130
|
+
|
131
|
+
|
132
|
+
.vis-itemset {
|
133
|
+
position: relative;
|
134
|
+
padding: 0;
|
135
|
+
margin: 0;
|
136
|
+
|
137
|
+
box-sizing: border-box;
|
138
|
+
}
|
139
|
+
|
140
|
+
.vis-itemset .vis-background,
|
141
|
+
.vis-itemset .vis-foreground {
|
142
|
+
position: absolute;
|
143
|
+
width: 100%;
|
144
|
+
height: 100%;
|
145
|
+
overflow: visible;
|
146
|
+
}
|
147
|
+
|
148
|
+
.vis-axis {
|
149
|
+
position: absolute;
|
150
|
+
width: 100%;
|
151
|
+
height: 0;
|
152
|
+
left: 0;
|
153
|
+
z-index: 1;
|
154
|
+
}
|
155
|
+
|
156
|
+
.vis-foreground .vis-group {
|
157
|
+
position: relative;
|
158
|
+
box-sizing: border-box;
|
159
|
+
border-bottom: 1px solid #bfbfbf;
|
160
|
+
}
|
161
|
+
|
162
|
+
.vis-foreground .vis-group:last-child {
|
163
|
+
border-bottom: none;
|
164
|
+
}
|
165
|
+
|
166
|
+
.vis-overlay {
|
167
|
+
position: absolute;
|
168
|
+
top: 0;
|
169
|
+
left: 0;
|
170
|
+
width: 100%;
|
171
|
+
height: 100%;
|
172
|
+
z-index: 10;
|
173
|
+
}
|
174
|
+
|
175
|
+
.vis-item {
|
176
|
+
position: absolute;
|
177
|
+
color: #1A1A1A;
|
178
|
+
border-color: #97B0F8;
|
179
|
+
border-width: 1px;
|
180
|
+
background-color: #D5DDF6;
|
181
|
+
display: inline-block;
|
182
|
+
/*overflow: hidden;*/
|
183
|
+
}
|
184
|
+
|
185
|
+
.vis-item.vis-selected {
|
186
|
+
border-color: #FFC200;
|
187
|
+
background-color: #FFF785;
|
188
|
+
|
189
|
+
/* z-index must be higher than the z-index of custom time bar and current time bar */
|
190
|
+
z-index: 2;
|
191
|
+
}
|
192
|
+
|
193
|
+
.vis-editable .vis-item.vis-selected {
|
194
|
+
cursor: move;
|
195
|
+
}
|
196
|
+
|
197
|
+
.vis-item.vis-point.vis-selected {
|
198
|
+
background-color: #FFF785;
|
199
|
+
}
|
200
|
+
|
201
|
+
.vis-item.vis-box {
|
202
|
+
text-align: center;
|
203
|
+
border-style: solid;
|
204
|
+
border-radius: 2px;
|
205
|
+
}
|
206
|
+
|
207
|
+
.vis-item.vis-point {
|
208
|
+
background: none;
|
209
|
+
}
|
210
|
+
|
211
|
+
.vis-item.vis-dot {
|
212
|
+
position: absolute;
|
213
|
+
padding: 0;
|
214
|
+
border-width: 4px;
|
215
|
+
border-style: solid;
|
216
|
+
border-radius: 4px;
|
217
|
+
}
|
218
|
+
|
219
|
+
.vis-item.vis-range {
|
220
|
+
border-style: solid;
|
221
|
+
border-radius: 2px;
|
222
|
+
box-sizing: border-box;
|
223
|
+
}
|
224
|
+
|
225
|
+
.vis-item.vis-background {
|
226
|
+
border: none;
|
227
|
+
background-color: rgba(213, 221, 246, 0.4);
|
228
|
+
box-sizing: border-box;
|
229
|
+
padding: 0;
|
230
|
+
margin: 0;
|
231
|
+
}
|
232
|
+
|
233
|
+
.vis-item .vis-item-overflow {
|
234
|
+
position: relative;
|
235
|
+
width: 100%;
|
236
|
+
height: 100%;
|
237
|
+
padding: 0;
|
238
|
+
margin: 0;
|
239
|
+
overflow: hidden;
|
240
|
+
}
|
241
|
+
|
242
|
+
.vis-item.vis-range .vis-item-content {
|
243
|
+
position: relative;
|
244
|
+
display: inline-block;
|
245
|
+
}
|
246
|
+
|
247
|
+
.vis-item.vis-background .vis-item-content {
|
248
|
+
position: absolute;
|
249
|
+
display: inline-block;
|
250
|
+
}
|
251
|
+
|
252
|
+
.vis-item.vis-line {
|
253
|
+
padding: 0;
|
254
|
+
position: absolute;
|
255
|
+
width: 0;
|
256
|
+
border-left-width: 1px;
|
257
|
+
border-left-style: solid;
|
258
|
+
}
|
259
|
+
|
260
|
+
.vis-item .vis-item-content {
|
261
|
+
white-space: nowrap;
|
262
|
+
box-sizing: border-box;
|
263
|
+
padding: 5px;
|
264
|
+
}
|
265
|
+
|
266
|
+
.vis-item .vis-delete {
|
267
|
+
background: asset-url('timeline/delete.png') no-repeat center;
|
268
|
+
position: absolute;
|
269
|
+
width: 24px;
|
270
|
+
height: 24px;
|
271
|
+
top: -4px;
|
272
|
+
right: -24px;
|
273
|
+
cursor: pointer;
|
274
|
+
}
|
275
|
+
|
276
|
+
.vis-item.vis-range .vis-drag-left {
|
277
|
+
position: absolute;
|
278
|
+
width: 24px;
|
279
|
+
max-width: 20%;
|
280
|
+
min-width: 2px;
|
281
|
+
height: 100%;
|
282
|
+
top: 0;
|
283
|
+
left: -4px;
|
284
|
+
|
285
|
+
cursor: w-resize;
|
286
|
+
}
|
287
|
+
|
288
|
+
.vis-item.vis-range .vis-drag-right {
|
289
|
+
position: absolute;
|
290
|
+
width: 24px;
|
291
|
+
max-width: 20%;
|
292
|
+
min-width: 2px;
|
293
|
+
height: 100%;
|
294
|
+
top: 0;
|
295
|
+
right: -4px;
|
296
|
+
|
297
|
+
cursor: e-resize;
|
298
|
+
}
|
299
|
+
|
300
|
+
.vis-time-axis {
|
301
|
+
position: relative;
|
302
|
+
overflow: hidden;
|
303
|
+
}
|
304
|
+
|
305
|
+
.vis-time-axis.vis-foreground {
|
306
|
+
top: 0;
|
307
|
+
left: 0;
|
308
|
+
width: 100%;
|
309
|
+
}
|
310
|
+
|
311
|
+
.vis-time-axis.vis-background {
|
312
|
+
position: absolute;
|
313
|
+
top: 0;
|
314
|
+
left: 0;
|
315
|
+
width: 100%;
|
316
|
+
height: 100%;
|
317
|
+
}
|
318
|
+
|
319
|
+
.vis-time-axis .vis-text {
|
320
|
+
position: absolute;
|
321
|
+
color: #4d4d4d;
|
322
|
+
padding: 3px;
|
323
|
+
white-space: nowrap;
|
324
|
+
}
|
325
|
+
|
326
|
+
.vis-time-axis .vis-text.vis-measure {
|
327
|
+
position: absolute;
|
328
|
+
padding-left: 0;
|
329
|
+
padding-right: 0;
|
330
|
+
margin-left: 0;
|
331
|
+
margin-right: 0;
|
332
|
+
visibility: hidden;
|
333
|
+
}
|
334
|
+
|
335
|
+
.vis-time-axis .vis-grid.vis-vertical {
|
336
|
+
position: absolute;
|
337
|
+
border-left: 1px solid;
|
338
|
+
}
|
339
|
+
|
340
|
+
.vis-time-axis .vis-grid.vis-minor {
|
341
|
+
border-color: #e5e5e5;
|
342
|
+
}
|
343
|
+
|
344
|
+
.vis-time-axis .vis-grid.vis-major {
|
345
|
+
border-color: #bfbfbf;
|
346
|
+
}
|
347
|
+
|
348
|
+
.vis-current-time {
|
349
|
+
background-color: #FF7F6E;
|
350
|
+
width: 2px;
|
351
|
+
z-index: 1;
|
352
|
+
}
|
353
|
+
.vis-custom-time {
|
354
|
+
background-color: #6E94FF;
|
355
|
+
width: 2px;
|
356
|
+
cursor: move;
|
357
|
+
z-index: 1;
|
358
|
+
}
|
359
|
+
.vis-timeline {
|
360
|
+
/*
|
361
|
+
-webkit-transition: height .4s ease-in-out;
|
362
|
+
transition: height .4s ease-in-out;
|
363
|
+
*/
|
364
|
+
}
|
365
|
+
|
366
|
+
.vis-panel {
|
367
|
+
/*
|
368
|
+
-webkit-transition: height .4s ease-in-out, top .4s ease-in-out;
|
369
|
+
transition: height .4s ease-in-out, top .4s ease-in-out;
|
370
|
+
*/
|
371
|
+
}
|
372
|
+
|
373
|
+
.vis-axis {
|
374
|
+
/*
|
375
|
+
-webkit-transition: top .4s ease-in-out;
|
376
|
+
transition: top .4s ease-in-out;
|
377
|
+
*/
|
378
|
+
}
|
379
|
+
|
380
|
+
/* TODO: get animation working nicely
|
381
|
+
|
382
|
+
.vis-item {
|
383
|
+
-webkit-transition: top .4s ease-in-out;
|
384
|
+
transition: top .4s ease-in-out;
|
385
|
+
}
|
386
|
+
|
387
|
+
.vis-item.line {
|
388
|
+
-webkit-transition: height .4s ease-in-out, top .4s ease-in-out;
|
389
|
+
transition: height .4s ease-in-out, top .4s ease-in-out;
|
390
|
+
}
|
391
|
+
/**/
|
392
|
+
|
393
|
+
.vis-panel.vis-background.vis-horizontal .vis-grid.vis-horizontal {
|
394
|
+
position: absolute;
|
395
|
+
width: 100%;
|
396
|
+
height: 0;
|
397
|
+
border-bottom: 1px solid;
|
398
|
+
}
|
399
|
+
|
400
|
+
.vis-panel.vis-background.vis-horizontal .vis-grid.vis-minor {
|
401
|
+
border-color: #e5e5e5;
|
402
|
+
}
|
403
|
+
|
404
|
+
.vis-panel.vis-background.vis-horizontal .vis-grid.vis-major {
|
405
|
+
border-color: #bfbfbf;
|
406
|
+
}
|
407
|
+
|
408
|
+
|
409
|
+
.vis-data-axis .vis-y-axis.vis-major {
|
410
|
+
width: 100%;
|
411
|
+
position: absolute;
|
412
|
+
color: #4d4d4d;
|
413
|
+
white-space: nowrap;
|
414
|
+
}
|
415
|
+
|
416
|
+
.vis-data-axis .vis-y-axis.vis-major.vis-measure {
|
417
|
+
padding: 0;
|
418
|
+
margin: 0;
|
419
|
+
border: 0;
|
420
|
+
visibility: hidden;
|
421
|
+
width: auto;
|
422
|
+
}
|
423
|
+
|
424
|
+
|
425
|
+
.vis-data-axis .vis-y-axis.vis-minor {
|
426
|
+
position: absolute;
|
427
|
+
width: 100%;
|
428
|
+
color: #bebebe;
|
429
|
+
white-space: nowrap;
|
430
|
+
}
|
431
|
+
|
432
|
+
.vis-data-axis .vis-y-axis.vis-minor.vis-measure {
|
433
|
+
padding: 0;
|
434
|
+
margin: 0;
|
435
|
+
border: 0;
|
436
|
+
visibility: hidden;
|
437
|
+
width: auto;
|
438
|
+
}
|
439
|
+
|
440
|
+
.vis-data-axis .vis-y-axis.vis-title {
|
441
|
+
position: absolute;
|
442
|
+
color: #4d4d4d;
|
443
|
+
white-space: nowrap;
|
444
|
+
bottom: 20px;
|
445
|
+
text-align: center;
|
446
|
+
}
|
447
|
+
|
448
|
+
.vis-data-axis .vis-y-axis.vis-title.vis-measure {
|
449
|
+
padding: 0;
|
450
|
+
margin: 0;
|
451
|
+
visibility: hidden;
|
452
|
+
width: auto;
|
453
|
+
}
|
454
|
+
|
455
|
+
.vis-data-axis .vis-y-axis.vis-title.vis-left {
|
456
|
+
bottom: 0;
|
457
|
+
-webkit-transform-origin: left top;
|
458
|
+
-moz-transform-origin: left top;
|
459
|
+
-ms-transform-origin: left top;
|
460
|
+
-o-transform-origin: left top;
|
461
|
+
transform-origin: left bottom;
|
462
|
+
-webkit-transform: rotate(-90deg);
|
463
|
+
-moz-transform: rotate(-90deg);
|
464
|
+
-ms-transform: rotate(-90deg);
|
465
|
+
-o-transform: rotate(-90deg);
|
466
|
+
transform: rotate(-90deg);
|
467
|
+
}
|
468
|
+
|
469
|
+
.vis-data-axis .vis-y-axis.vis-title.vis-right {
|
470
|
+
bottom: 0;
|
471
|
+
-webkit-transform-origin: right bottom;
|
472
|
+
-moz-transform-origin: right bottom;
|
473
|
+
-ms-transform-origin: right bottom;
|
474
|
+
-o-transform-origin: right bottom;
|
475
|
+
transform-origin: right bottom;
|
476
|
+
-webkit-transform: rotate(90deg);
|
477
|
+
-moz-transform: rotate(90deg);
|
478
|
+
-ms-transform: rotate(90deg);
|
479
|
+
-o-transform: rotate(90deg);
|
480
|
+
transform: rotate(90deg);
|
481
|
+
}
|
482
|
+
|
483
|
+
.vis-legend {
|
484
|
+
background-color: rgba(247, 252, 255, 0.65);
|
485
|
+
padding: 5px;
|
486
|
+
border: 1px solid #b3b3b3;
|
487
|
+
box-shadow: 2px 2px 10px rgba(154, 154, 154, 0.55);
|
488
|
+
}
|
489
|
+
|
490
|
+
.vis-legend-text {
|
491
|
+
/*font-size: 10px;*/
|
492
|
+
white-space: nowrap;
|
493
|
+
display: inline-block
|
494
|
+
}
|
495
|
+
.vis-graph-group0 {
|
496
|
+
fill:#4f81bd;
|
497
|
+
fill-opacity:0;
|
498
|
+
stroke-width:2px;
|
499
|
+
stroke: #4f81bd;
|
500
|
+
}
|
501
|
+
|
502
|
+
.vis-graph-group1 {
|
503
|
+
fill:#f79646;
|
504
|
+
fill-opacity:0;
|
505
|
+
stroke-width:2px;
|
506
|
+
stroke: #f79646;
|
507
|
+
}
|
508
|
+
|
509
|
+
.vis-graph-group2 {
|
510
|
+
fill: #8c51cf;
|
511
|
+
fill-opacity:0;
|
512
|
+
stroke-width:2px;
|
513
|
+
stroke: #8c51cf;
|
514
|
+
}
|
515
|
+
|
516
|
+
.vis-graph-group3 {
|
517
|
+
fill: #75c841;
|
518
|
+
fill-opacity:0;
|
519
|
+
stroke-width:2px;
|
520
|
+
stroke: #75c841;
|
521
|
+
}
|
522
|
+
|
523
|
+
.vis-graph-group4 {
|
524
|
+
fill: #ff0100;
|
525
|
+
fill-opacity:0;
|
526
|
+
stroke-width:2px;
|
527
|
+
stroke: #ff0100;
|
528
|
+
}
|
529
|
+
|
530
|
+
.vis-graph-group5 {
|
531
|
+
fill: #37d8e6;
|
532
|
+
fill-opacity:0;
|
533
|
+
stroke-width:2px;
|
534
|
+
stroke: #37d8e6;
|
535
|
+
}
|
536
|
+
|
537
|
+
.vis-graph-group6 {
|
538
|
+
fill: #042662;
|
539
|
+
fill-opacity:0;
|
540
|
+
stroke-width:2px;
|
541
|
+
stroke: #042662;
|
542
|
+
}
|
543
|
+
|
544
|
+
.vis-graph-group7 {
|
545
|
+
fill:#00ff26;
|
546
|
+
fill-opacity:0;
|
547
|
+
stroke-width:2px;
|
548
|
+
stroke: #00ff26;
|
549
|
+
}
|
550
|
+
|
551
|
+
.vis-graph-group8 {
|
552
|
+
fill:#ff00ff;
|
553
|
+
fill-opacity:0;
|
554
|
+
stroke-width:2px;
|
555
|
+
stroke: #ff00ff;
|
556
|
+
}
|
557
|
+
|
558
|
+
.vis-graph-group9 {
|
559
|
+
fill: #8f3938;
|
560
|
+
fill-opacity:0;
|
561
|
+
stroke-width:2px;
|
562
|
+
stroke: #8f3938;
|
563
|
+
}
|
564
|
+
|
565
|
+
.vis-timeline .vis-fill {
|
566
|
+
fill-opacity:0.1;
|
567
|
+
stroke: none;
|
568
|
+
}
|
569
|
+
|
570
|
+
|
571
|
+
.vis-timeline .vis-bar {
|
572
|
+
fill-opacity:0.5;
|
573
|
+
stroke-width:1px;
|
574
|
+
}
|
575
|
+
|
576
|
+
.vis-timeline .vis-point {
|
577
|
+
stroke-width:2px;
|
578
|
+
fill-opacity:1.0;
|
579
|
+
}
|
580
|
+
|
581
|
+
|
582
|
+
.vis-timeline .vis-legend-background {
|
583
|
+
stroke-width:1px;
|
584
|
+
fill-opacity:0.9;
|
585
|
+
fill: #ffffff;
|
586
|
+
stroke: #c2c2c2;
|
587
|
+
}
|
588
|
+
|
589
|
+
|
590
|
+
.vis-timeline .vis-outline {
|
591
|
+
stroke-width:1px;
|
592
|
+
fill-opacity:1;
|
593
|
+
fill: #ffffff;
|
594
|
+
stroke: #e5e5e5;
|
595
|
+
}
|
596
|
+
|
597
|
+
.vis-timeline .vis-icon-fill {
|
598
|
+
fill-opacity:0.3;
|
599
|
+
stroke: none;
|
600
|
+
}
|
601
|
+
|
602
|
+
div.vis-network div.vis-manipulation {
|
603
|
+
border-width: 0;
|
604
|
+
border-bottom: 1px;
|
605
|
+
border-style:solid;
|
606
|
+
border-color: #d6d9d8;
|
607
|
+
background: #ffffff; /* Old browsers */
|
608
|
+
background: -moz-linear-gradient(top, #ffffff 0%, #fcfcfc 48%, #fafafa 50%, #fcfcfc 100%); /* FF3.6+ */
|
609
|
+
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(48%,#fcfcfc), color-stop(50%,#fafafa), color-stop(100%,#fcfcfc)); /* Chrome,Safari4+ */
|
610
|
+
background: -webkit-linear-gradient(top, #ffffff 0%,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%); /* Chrome10+,Safari5.1+ */
|
611
|
+
background: -o-linear-gradient(top, #ffffff 0%,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%); /* Opera 11.10+ */
|
612
|
+
background: -ms-linear-gradient(top, #ffffff 0%,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%); /* IE10+ */
|
613
|
+
background: linear-gradient(to bottom, #ffffff 0%,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%); /* W3C */
|
614
|
+
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fcfcfc',GradientType=0 ); /* IE6-9 */
|
615
|
+
|
616
|
+
position: absolute;
|
617
|
+
left: 0;
|
618
|
+
top: 0;
|
619
|
+
width: 100%;
|
620
|
+
height: 30px;
|
621
|
+
}
|
622
|
+
|
623
|
+
div.vis-network div.vis-edit-mode {
|
624
|
+
position:absolute;
|
625
|
+
left: 0;
|
626
|
+
top: 15px;
|
627
|
+
height: 30px;
|
628
|
+
}
|
629
|
+
|
630
|
+
/* FIXME: shouldn't the vis-close button be a child of the vis-manipulation div? */
|
631
|
+
|
632
|
+
div.vis-network div.vis-close {
|
633
|
+
position:absolute;
|
634
|
+
right: 0;
|
635
|
+
top: 0;
|
636
|
+
width: 30px;
|
637
|
+
height: 30px;
|
638
|
+
|
639
|
+
background-position: 20px 3px;
|
640
|
+
background-repeat: no-repeat;
|
641
|
+
background-image: asset-url("network/cross.png");
|
642
|
+
cursor: pointer;
|
643
|
+
-webkit-touch-callout: none;
|
644
|
+
-webkit-user-select: none;
|
645
|
+
-khtml-user-select: none;
|
646
|
+
-moz-user-select: none;
|
647
|
+
-ms-user-select: none;
|
648
|
+
user-select: none;
|
649
|
+
}
|
650
|
+
|
651
|
+
div.vis-network div.vis-close:hover {
|
652
|
+
opacity: 0.6;
|
653
|
+
}
|
654
|
+
|
655
|
+
div.vis-network div.vis-manipulation div.vis-button,
|
656
|
+
div.vis-network div.vis-edit-mode div.vis-button {
|
657
|
+
position:relative;
|
658
|
+
top:-7px;
|
659
|
+
font-family: verdana;
|
660
|
+
font-size: 12px;
|
661
|
+
-moz-border-radius: 15px;
|
662
|
+
border-radius: 15px;
|
663
|
+
display:inline-block;
|
664
|
+
background-position: 0px 0px;
|
665
|
+
background-repeat:no-repeat;
|
666
|
+
height:24px;
|
667
|
+
margin: 0px 0px 0px 10px;
|
668
|
+
vertical-align:middle;
|
669
|
+
cursor: pointer;
|
670
|
+
padding: 0px 8px 0px 8px;
|
671
|
+
-webkit-touch-callout: none;
|
672
|
+
-webkit-user-select: none;
|
673
|
+
-khtml-user-select: none;
|
674
|
+
-moz-user-select: none;
|
675
|
+
-ms-user-select: none;
|
676
|
+
user-select: none;
|
677
|
+
}
|
678
|
+
|
679
|
+
div.vis-network div.vis-manipulation div.vis-button:hover {
|
680
|
+
box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.20);
|
681
|
+
}
|
682
|
+
|
683
|
+
div.vis-network div.vis-manipulation div.vis-button:active {
|
684
|
+
box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.50);
|
685
|
+
}
|
686
|
+
|
687
|
+
div.vis-network div.vis-manipulation div.vis-button.vis-back {
|
688
|
+
background-image: asset-url("network/backIcon.png");
|
689
|
+
}
|
690
|
+
|
691
|
+
div.vis-network div.vis-manipulation div.vis-button.vis-none:hover {
|
692
|
+
box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.0);
|
693
|
+
cursor: default;
|
694
|
+
}
|
695
|
+
div.vis-network div.vis-manipulation div.vis-button.vis-none:active {
|
696
|
+
box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.0);
|
697
|
+
}
|
698
|
+
div.vis-network div.vis-manipulation div.vis-button.vis-none {
|
699
|
+
padding: 0;
|
700
|
+
}
|
701
|
+
div.vis-network div.vis-manipulation div.notification {
|
702
|
+
margin: 2px;
|
703
|
+
font-weight: bold;
|
704
|
+
}
|
705
|
+
|
706
|
+
div.vis-network div.vis-manipulation div.vis-button.vis-add {
|
707
|
+
background-image: asset-url("network/addNodeIcon.png");
|
708
|
+
}
|
709
|
+
|
710
|
+
div.vis-network div.vis-manipulation div.vis-button.vis-edit,
|
711
|
+
div.vis-network div.vis-edit-mode div.vis-button.vis-edit {
|
712
|
+
background-image: asset-url("network/editIcon.png");
|
713
|
+
}
|
714
|
+
|
715
|
+
div.vis-network div.vis-edit-mode div.vis-button.vis-edit.vis-edit-mode {
|
716
|
+
background-color: #fcfcfc;
|
717
|
+
border: 1px solid #cccccc;
|
718
|
+
}
|
719
|
+
|
720
|
+
div.vis-network div.vis-manipulation div.vis-button.vis-connect {
|
721
|
+
background-image: asset-url("network/connectIcon.png");
|
722
|
+
}
|
723
|
+
|
724
|
+
div.vis-network div.vis-manipulation div.vis-button.vis-delete {
|
725
|
+
background-image: asset-url("network/deleteIcon.png");
|
726
|
+
}
|
727
|
+
/* top right bottom left */
|
728
|
+
div.vis-network div.vis-manipulation div.vis-label,
|
729
|
+
div.vis-network div.vis-edit-mode div.vis-label {
|
730
|
+
margin: 0 0 0 23px;
|
731
|
+
line-height: 25px;
|
732
|
+
}
|
733
|
+
div.vis-network div.vis-manipulation div.vis-separator-line {
|
734
|
+
display:inline-block;
|
735
|
+
width:1px;
|
736
|
+
height:20px;
|
737
|
+
background-color: #bdbdbd;
|
738
|
+
margin: 5px 7px 0 15px;
|
739
|
+
}
|
740
|
+
|
741
|
+
/* TODO: is this redundant?
|
742
|
+
div.network-navigation_wrapper {
|
743
|
+
position: absolute;
|
744
|
+
left: 0;
|
745
|
+
top: 0;
|
746
|
+
width: 100%;
|
747
|
+
height: 100%;
|
748
|
+
}
|
749
|
+
*/
|
750
|
+
div.vis-network div.vis-navigation div.vis-button {
|
751
|
+
width:34px;
|
752
|
+
height:34px;
|
753
|
+
-moz-border-radius: 17px;
|
754
|
+
border-radius: 17px;
|
755
|
+
position:absolute;
|
756
|
+
display:inline-block;
|
757
|
+
background-position: 2px 2px;
|
758
|
+
background-repeat:no-repeat;
|
759
|
+
cursor: pointer;
|
760
|
+
-webkit-touch-callout: none;
|
761
|
+
-webkit-user-select: none;
|
762
|
+
-khtml-user-select: none;
|
763
|
+
-moz-user-select: none;
|
764
|
+
-ms-user-select: none;
|
765
|
+
user-select: none;
|
766
|
+
}
|
767
|
+
|
768
|
+
div.vis-network div.vis-navigation div.vis-button:hover {
|
769
|
+
box-shadow: 0 0 3px 3px rgba(56, 207, 21, 0.30);
|
770
|
+
}
|
771
|
+
|
772
|
+
div.vis-network div.vis-navigation div.vis-button:active {
|
773
|
+
box-shadow: 0 0 1px 3px rgba(56, 207, 21, 0.95);
|
774
|
+
}
|
775
|
+
|
776
|
+
div.vis-network div.vis-navigation div.vis-button.vis-up {
|
777
|
+
background-image: asset-url("network/upArrow.png");
|
778
|
+
bottom:50px;
|
779
|
+
left:55px;
|
780
|
+
}
|
781
|
+
div.vis-network div.vis-navigation div.vis-button.vis-down {
|
782
|
+
background-image: asset-url("network/downArrow.png");
|
783
|
+
bottom:10px;
|
784
|
+
left:55px;
|
785
|
+
}
|
786
|
+
div.vis-network div.vis-navigation div.vis-button.vis-left {
|
787
|
+
background-image: asset-url("network/leftArrow.png");
|
788
|
+
bottom:10px;
|
789
|
+
left:15px;
|
790
|
+
}
|
791
|
+
div.vis-network div.vis-navigation div.vis-button.vis-right {
|
792
|
+
background-image: asset-url("network/rightArrow.png");
|
793
|
+
bottom:10px;
|
794
|
+
left:95px;
|
795
|
+
}
|
796
|
+
div.vis-network div.vis-navigation div.vis-button.vis-zoomIn {
|
797
|
+
background-image: asset-url("network/plus.png");
|
798
|
+
bottom:10px;
|
799
|
+
right:15px;
|
800
|
+
}
|
801
|
+
div.vis-network div.vis-navigation div.vis-button.vis-zoomOut {
|
802
|
+
background-image: asset-url("network/minus.png");
|
803
|
+
bottom:10px;
|
804
|
+
right:55px;
|
805
|
+
}
|
806
|
+
div.vis-network div.vis-navigation div.vis-button.vis-zoomExtends {
|
807
|
+
background-image: asset-url("network/zoomExtends.png");
|
808
|
+
bottom:50px;
|
809
|
+
right:15px;
|
810
|
+
}
|
811
|
+
div.vis-network-tooltip {
|
812
|
+
position: absolute;
|
813
|
+
visibility: hidden;
|
814
|
+
padding: 5px;
|
815
|
+
white-space: nowrap;
|
816
|
+
|
817
|
+
font-family: verdana;
|
818
|
+
font-size:14px;
|
819
|
+
font-color:#000000;
|
820
|
+
background-color: #f5f4ed;
|
821
|
+
|
822
|
+
-moz-border-radius: 3px;
|
823
|
+
-webkit-border-radius: 3px;
|
824
|
+
border-radius: 3px;
|
825
|
+
border: 1px solid #808074;
|
826
|
+
|
827
|
+
box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
|
828
|
+
pointer-events: none;
|
829
|
+
}
|
830
|
+
div.vis-network-configuration {
|
831
|
+
position:relative;
|
832
|
+
display:block;
|
833
|
+
float:left;
|
834
|
+
font-size:12px;
|
835
|
+
}
|
836
|
+
|
837
|
+
div.vis-network-configuration-wrapper {
|
838
|
+
display:block;
|
839
|
+
width:700px;
|
840
|
+
}
|
841
|
+
|
842
|
+
|
843
|
+
div.vis-network-configuration.vis-option-container{
|
844
|
+
display:block;
|
845
|
+
width:495px;
|
846
|
+
background-color: #ffffff;
|
847
|
+
border:2px solid #f7f8fa;
|
848
|
+
border-radius:4px;
|
849
|
+
margin-top:20px;
|
850
|
+
left:10px;
|
851
|
+
padding-left:5px;
|
852
|
+
}
|
853
|
+
|
854
|
+
div.vis-network-configuration.button{
|
855
|
+
display:block;
|
856
|
+
width:495px;
|
857
|
+
height:25px;
|
858
|
+
vertical-align: middle;
|
859
|
+
line-height:25px;
|
860
|
+
background-color: #f7f8fa;
|
861
|
+
border:2px solid #ceced0;
|
862
|
+
border-radius:4px;
|
863
|
+
margin-top:20px;
|
864
|
+
left:10px;
|
865
|
+
padding-left:5px;
|
866
|
+
cursor: pointer;
|
867
|
+
margin-bottom:30px;
|
868
|
+
}
|
869
|
+
|
870
|
+
div.vis-network-configuration.button.hover{
|
871
|
+
background-color: #4588e6;
|
872
|
+
border:2px solid #214373;
|
873
|
+
color:#ffffff;
|
874
|
+
}
|
875
|
+
|
876
|
+
div.vis-network-configuration.item{
|
877
|
+
display:block;
|
878
|
+
float:left;
|
879
|
+
width:495px;
|
880
|
+
height:25px;
|
881
|
+
vertical-align: middle;
|
882
|
+
line-height:25px;
|
883
|
+
}
|
884
|
+
|
885
|
+
|
886
|
+
div.vis-network-configuration.item.s2{
|
887
|
+
left:10px;
|
888
|
+
background-color: #f7f8fa;
|
889
|
+
padding-left:5px;
|
890
|
+
border-radius:3px;
|
891
|
+
}
|
892
|
+
div.vis-network-configuration.item.s3{
|
893
|
+
left:20px;
|
894
|
+
background-color: #e4e9f0;
|
895
|
+
padding-left:5px;
|
896
|
+
border-radius:3px;
|
897
|
+
}
|
898
|
+
div.vis-network-configuration.item.s4{
|
899
|
+
left:30px;
|
900
|
+
background-color: #cfd8e6;
|
901
|
+
padding-left:5px;
|
902
|
+
border-radius:3px;
|
903
|
+
}
|
904
|
+
|
905
|
+
div.vis-network-configuration.header{
|
906
|
+
font-size:18px;
|
907
|
+
font-weight: bold;
|
908
|
+
}
|
909
|
+
|
910
|
+
div.vis-network-configuration.label{
|
911
|
+
width:120px;
|
912
|
+
height:25px;
|
913
|
+
line-height: 25px;
|
914
|
+
}
|
915
|
+
|
916
|
+
div.vis-network-configuration.label.s3{
|
917
|
+
width:110px;
|
918
|
+
}
|
919
|
+
div.vis-network-configuration.label.s4{
|
920
|
+
width:100px;
|
921
|
+
}
|
922
|
+
|
923
|
+
div.vis-network-configuration.colorBlock{
|
924
|
+
top:1px;
|
925
|
+
width:30px;
|
926
|
+
height:19px;
|
927
|
+
border:1px solid #444444;
|
928
|
+
border-radius:2px;
|
929
|
+
padding:0px;
|
930
|
+
margin:0px;
|
931
|
+
cursor:pointer;
|
932
|
+
}
|
933
|
+
|
934
|
+
input.vis-network-configuration.checkbox {
|
935
|
+
left:-5px;
|
936
|
+
}
|
937
|
+
|
938
|
+
|
939
|
+
input.vis-network-configuration.rangeinput{
|
940
|
+
position:relative;
|
941
|
+
top:-5px;
|
942
|
+
width:60px;
|
943
|
+
height:13px;
|
944
|
+
padding:1px;
|
945
|
+
margin:0;
|
946
|
+
pointer-events:none;
|
947
|
+
}
|
948
|
+
|
949
|
+
input.vis-network-configuration.range{
|
950
|
+
/*removes default webkit styles*/
|
951
|
+
-webkit-appearance: none;
|
952
|
+
|
953
|
+
/*fix for FF unable to apply focus style bug */
|
954
|
+
border: 0px solid white;
|
955
|
+
background-color:rgba(0,0,0,0);
|
956
|
+
|
957
|
+
/*required for proper track sizing in FF*/
|
958
|
+
width: 300px;
|
959
|
+
height:20px;
|
960
|
+
}
|
961
|
+
input.vis-network-configuration.range::-webkit-slider-runnable-track {
|
962
|
+
width: 300px;
|
963
|
+
height: 5px;
|
964
|
+
background: #dedede; /* Old browsers */
|
965
|
+
background: -moz-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* FF3.6+ */
|
966
|
+
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dedede), color-stop(99%,#c8c8c8)); /* Chrome,Safari4+ */
|
967
|
+
background: -webkit-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* Chrome10+,Safari5.1+ */
|
968
|
+
background: -o-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* Opera 11.10+ */
|
969
|
+
background: -ms-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* IE10+ */
|
970
|
+
background: linear-gradient(to bottom, #dedede 0%,#c8c8c8 99%); /* W3C */
|
971
|
+
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dedede', endColorstr='#c8c8c8',GradientType=0 ); /* IE6-9 */
|
972
|
+
|
973
|
+
border: 1px solid #999999;
|
974
|
+
box-shadow: #aaaaaa 0px 0px 3px 0px;
|
975
|
+
border-radius: 3px;
|
976
|
+
}
|
977
|
+
input.vis-network-configuration.range::-webkit-slider-thumb {
|
978
|
+
-webkit-appearance: none;
|
979
|
+
border: 1px solid #14334b;
|
980
|
+
height: 17px;
|
981
|
+
width: 17px;
|
982
|
+
border-radius: 50%;
|
983
|
+
background: #3876c2; /* Old browsers */
|
984
|
+
background: -moz-linear-gradient(top, #3876c2 0%, #385380 100%); /* FF3.6+ */
|
985
|
+
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3876c2), color-stop(100%,#385380)); /* Chrome,Safari4+ */
|
986
|
+
background: -webkit-linear-gradient(top, #3876c2 0%,#385380 100%); /* Chrome10+,Safari5.1+ */
|
987
|
+
background: -o-linear-gradient(top, #3876c2 0%,#385380 100%); /* Opera 11.10+ */
|
988
|
+
background: -ms-linear-gradient(top, #3876c2 0%,#385380 100%); /* IE10+ */
|
989
|
+
background: linear-gradient(to bottom, #3876c2 0%,#385380 100%); /* W3C */
|
990
|
+
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3876c2', endColorstr='#385380',GradientType=0 ); /* IE6-9 */
|
991
|
+
box-shadow: #111927 0px 0px 1px 0px;
|
992
|
+
margin-top: -7px;
|
993
|
+
}
|
994
|
+
input.vis-network-configuration.range:focus {
|
995
|
+
outline: none;
|
996
|
+
}
|
997
|
+
input.vis-network-configuration.range:focus::-webkit-slider-runnable-track {
|
998
|
+
background: #9d9d9d; /* Old browsers */
|
999
|
+
background: -moz-linear-gradient(top, #9d9d9d 0%, #c8c8c8 99%); /* FF3.6+ */
|
1000
|
+
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9d9d9d), color-stop(99%,#c8c8c8)); /* Chrome,Safari4+ */
|
1001
|
+
background: -webkit-linear-gradient(top, #9d9d9d 0%,#c8c8c8 99%); /* Chrome10+,Safari5.1+ */
|
1002
|
+
background: -o-linear-gradient(top, #9d9d9d 0%,#c8c8c8 99%); /* Opera 11.10+ */
|
1003
|
+
background: -ms-linear-gradient(top, #9d9d9d 0%,#c8c8c8 99%); /* IE10+ */
|
1004
|
+
background: linear-gradient(to bottom, #9d9d9d 0%,#c8c8c8 99%); /* W3C */
|
1005
|
+
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9d9d9d', endColorstr='#c8c8c8',GradientType=0 ); /* IE6-9 */
|
1006
|
+
}
|
1007
|
+
|
1008
|
+
input.vis-network-configuration.range::-moz-range-track {
|
1009
|
+
width: 300px;
|
1010
|
+
height: 10px;
|
1011
|
+
background: #dedede; /* Old browsers */
|
1012
|
+
background: -moz-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* FF3.6+ */
|
1013
|
+
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dedede), color-stop(99%,#c8c8c8)); /* Chrome,Safari4+ */
|
1014
|
+
background: -webkit-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* Chrome10+,Safari5.1+ */
|
1015
|
+
background: -o-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* Opera 11.10+ */
|
1016
|
+
background: -ms-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* IE10+ */
|
1017
|
+
background: linear-gradient(to bottom, #dedede 0%,#c8c8c8 99%); /* W3C */
|
1018
|
+
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dedede', endColorstr='#c8c8c8',GradientType=0 ); /* IE6-9 */
|
1019
|
+
|
1020
|
+
border: 1px solid #999999;
|
1021
|
+
box-shadow: #aaaaaa 0px 0px 3px 0px;
|
1022
|
+
border-radius: 3px;
|
1023
|
+
}
|
1024
|
+
input.vis-network-configuration.range::-moz-range-thumb {
|
1025
|
+
border: none;
|
1026
|
+
height: 16px;
|
1027
|
+
width: 16px;
|
1028
|
+
|
1029
|
+
border-radius: 50%;
|
1030
|
+
background: #385380;
|
1031
|
+
}
|
1032
|
+
|
1033
|
+
/*hide the outline behind the border*/
|
1034
|
+
input.vis-network-configuration.range:-moz-focusring{
|
1035
|
+
outline: 1px solid white;
|
1036
|
+
outline-offset: -1px;
|
1037
|
+
}
|
1038
|
+
|
1039
|
+
input.vis-network-configuration.range::-ms-track {
|
1040
|
+
width: 300px;
|
1041
|
+
height: 5px;
|
1042
|
+
|
1043
|
+
/*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
|
1044
|
+
background: transparent;
|
1045
|
+
|
1046
|
+
/*leave room for the larger thumb to overflow with a transparent border */
|
1047
|
+
border-color: transparent;
|
1048
|
+
border-width: 6px 0;
|
1049
|
+
|
1050
|
+
/*remove default tick marks*/
|
1051
|
+
color: transparent;
|
1052
|
+
}
|
1053
|
+
input.vis-network-configuration.range::-ms-fill-lower {
|
1054
|
+
background: #777;
|
1055
|
+
border-radius: 10px;
|
1056
|
+
}
|
1057
|
+
input.vis-network-configuration.range::-ms-fill-upper {
|
1058
|
+
background: #ddd;
|
1059
|
+
border-radius: 10px;
|
1060
|
+
}
|
1061
|
+
input.vis-network-configuration.range::-ms-thumb {
|
1062
|
+
border: none;
|
1063
|
+
height: 16px;
|
1064
|
+
width: 16px;
|
1065
|
+
border-radius: 50%;
|
1066
|
+
background: #385380;
|
1067
|
+
}
|
1068
|
+
input.vis-network-configuration.range:focus::-ms-fill-lower {
|
1069
|
+
background: #888;
|
1070
|
+
}
|
1071
|
+
input.vis-network-configuration.range:focus::-ms-fill-upper {
|
1072
|
+
background: #ccc;
|
1073
|
+
}
|
1074
|
+
|
1075
|
+
div.vis-color-picker {
|
1076
|
+
position:absolute;
|
1077
|
+
margin-top:-140px;
|
1078
|
+
margin-left:30px;
|
1079
|
+
width:293px;
|
1080
|
+
height:425px;
|
1081
|
+
padding: 10px;
|
1082
|
+
border-radius:15px;
|
1083
|
+
background-color:#ffffff;
|
1084
|
+
display:none;
|
1085
|
+
box-shadow: rgba(0,0,0,0.5) 0px 0px 10px 0px;
|
1086
|
+
}
|
1087
|
+
|
1088
|
+
div.vis-color-picker div.vis-arrow {
|
1089
|
+
position: absolute;
|
1090
|
+
top:147px;
|
1091
|
+
left:5px;
|
1092
|
+
}
|
1093
|
+
|
1094
|
+
div.vis-color-picker div.vis-arrow:after,
|
1095
|
+
div.vis-color-picker div.vis-arrow:before {
|
1096
|
+
right: 100%;
|
1097
|
+
top: 50%;
|
1098
|
+
border: solid transparent;
|
1099
|
+
content: " ";
|
1100
|
+
height: 0;
|
1101
|
+
width: 0;
|
1102
|
+
position: absolute;
|
1103
|
+
pointer-events: none;
|
1104
|
+
}
|
1105
|
+
|
1106
|
+
div.vis-color-picker div.vis-arrow:after {
|
1107
|
+
border-color: rgba(255, 255, 255, 0);
|
1108
|
+
border-right-color: #ffffff;
|
1109
|
+
border-width: 30px;
|
1110
|
+
margin-top: -30px;
|
1111
|
+
}
|
1112
|
+
|
1113
|
+
div.vis-color-picker div.vis-color {
|
1114
|
+
position:absolute;
|
1115
|
+
width: 289px;
|
1116
|
+
height: 289px;
|
1117
|
+
cursor: pointer;
|
1118
|
+
}
|
1119
|
+
|
1120
|
+
|
1121
|
+
|
1122
|
+
div.vis-color-picker div.vis-brightness {
|
1123
|
+
position: absolute;
|
1124
|
+
top:313px;
|
1125
|
+
}
|
1126
|
+
|
1127
|
+
div.vis-color-picker div.vis-opacity {
|
1128
|
+
position:absolute;
|
1129
|
+
top:350px;
|
1130
|
+
}
|
1131
|
+
|
1132
|
+
div.vis-color-picker div.vis-selector {
|
1133
|
+
position:absolute;
|
1134
|
+
top:137px;
|
1135
|
+
left:137px;
|
1136
|
+
width:15px;
|
1137
|
+
height:15px;
|
1138
|
+
border-radius:15px;
|
1139
|
+
border:1px solid #ffffff;
|
1140
|
+
background: #4c4c4c; /* Old browsers */
|
1141
|
+
background: -moz-linear-gradient(top, #4c4c4c 0%, #595959 12%, #666666 25%, #474747 39%, #2c2c2c 50%, #000000 51%, #111111 60%, #2b2b2b 76%, #1c1c1c 91%, #131313 100%); /* FF3.6+ */
|
1142
|
+
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4c4c4c), color-stop(12%,#595959), color-stop(25%,#666666), color-stop(39%,#474747), color-stop(50%,#2c2c2c), color-stop(51%,#000000), color-stop(60%,#111111), color-stop(76%,#2b2b2b), color-stop(91%,#1c1c1c), color-stop(100%,#131313)); /* Chrome,Safari4+ */
|
1143
|
+
background: -webkit-linear-gradient(top, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%); /* Chrome10+,Safari5.1+ */
|
1144
|
+
background: -o-linear-gradient(top, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%); /* Opera 11.10+ */
|
1145
|
+
background: -ms-linear-gradient(top, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%); /* IE10+ */
|
1146
|
+
background: linear-gradient(to bottom, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%); /* W3C */
|
1147
|
+
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#131313',GradientType=0 ); /* IE6-9 */
|
1148
|
+
}
|
1149
|
+
|
1150
|
+
|
1151
|
+
|
1152
|
+
div.vis-color-picker div.vis-new-color {
|
1153
|
+
position:absolute;
|
1154
|
+
width:140px;
|
1155
|
+
height:20px;
|
1156
|
+
border:1px solid rgba(0,0,0,0.1);
|
1157
|
+
border-radius:5px;
|
1158
|
+
top:380px;
|
1159
|
+
left:159px;
|
1160
|
+
text-align:right;
|
1161
|
+
padding-right:2px;
|
1162
|
+
font-size:10px;
|
1163
|
+
color:rgba(0,0,0,0.4);
|
1164
|
+
vertical-align:middle;
|
1165
|
+
line-height:20px;
|
1166
|
+
|
1167
|
+
}
|
1168
|
+
|
1169
|
+
div.vis-color-picker div.vis-initial-color {
|
1170
|
+
position:absolute;
|
1171
|
+
width:140px;
|
1172
|
+
height:20px;
|
1173
|
+
border:1px solid rgba(0,0,0,0.1);
|
1174
|
+
border-radius:5px;
|
1175
|
+
top:380px;
|
1176
|
+
left:10px;
|
1177
|
+
text-align:left;
|
1178
|
+
padding-left:2px;
|
1179
|
+
font-size:10px;
|
1180
|
+
color:rgba(0,0,0,0.4);
|
1181
|
+
vertical-align:middle;
|
1182
|
+
line-height:20px;
|
1183
|
+
}
|
1184
|
+
|
1185
|
+
div.vis-color-picker div.vis-label {
|
1186
|
+
position:absolute;
|
1187
|
+
width:300px;
|
1188
|
+
left:10px;
|
1189
|
+
}
|
1190
|
+
|
1191
|
+
div.vis-color-picker div.vis-label.vis-brightness {
|
1192
|
+
top:300px;
|
1193
|
+
}
|
1194
|
+
|
1195
|
+
div.vis-color-picker div.vis-label.vis-opacity {
|
1196
|
+
top:338px;
|
1197
|
+
}
|
1198
|
+
|
1199
|
+
div.vis-color-picker div.vis-button {
|
1200
|
+
position:absolute;
|
1201
|
+
width:68px;
|
1202
|
+
height:25px;
|
1203
|
+
border-radius:10px;
|
1204
|
+
vertical-align: middle;
|
1205
|
+
text-align:center;
|
1206
|
+
line-height: 25px;
|
1207
|
+
top:410px;
|
1208
|
+
border:2px solid #d9d9d9;
|
1209
|
+
background-color: #f7f7f7;
|
1210
|
+
cursor:pointer;
|
1211
|
+
}
|
1212
|
+
|
1213
|
+
div.vis-color-picker div.vis-button.vis-cancel {
|
1214
|
+
/*border:2px solid #ff4e33;*/
|
1215
|
+
/*background-color: #ff7761;*/
|
1216
|
+
left:5px;
|
1217
|
+
}
|
1218
|
+
div.vis-color-picker div.vis-button.vis-load {
|
1219
|
+
/*border:2px solid #a153e6;*/
|
1220
|
+
/*background-color: #cb8dff;*/
|
1221
|
+
left:82px;
|
1222
|
+
}
|
1223
|
+
div.vis-color-picker div.vis-button.vis-apply {
|
1224
|
+
/*border:2px solid #4588e6;*/
|
1225
|
+
/*background-color: #82b6ff;*/
|
1226
|
+
left:159px;
|
1227
|
+
}
|
1228
|
+
div.vis-color-picker div.vis-button.vis-save {
|
1229
|
+
/*border:2px solid #45e655;*/
|
1230
|
+
/*background-color: #6dff7c;*/
|
1231
|
+
left:236px;
|
1232
|
+
}
|
1233
|
+
|
1234
|
+
|
1235
|
+
div.vis-color-picker input.vis-range {
|
1236
|
+
width: 290px;
|
1237
|
+
height:20px;
|
1238
|
+
}
|
1239
|
+
|
1240
|
+
/* TODO: is this redundant?
|
1241
|
+
div.vis-color-picker input.vis-range-brightness {
|
1242
|
+
width: 289px !important;
|
1243
|
+
}
|
1244
|
+
|
1245
|
+
|
1246
|
+
div.vis-color-picker input.vis-saturation-range {
|
1247
|
+
width: 289px !important;
|
1248
1248
|
}*/
|