UNPKG

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