vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1440 lines
32 KiB

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