UNPKG

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