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.

141 lines
3.6 KiB

  1. div.network-manipulationDiv {
  2. border-width: 0;
  3. border-bottom: 1px;
  4. border-style:solid;
  5. border-color: #d6d9d8;
  6. background: #ffffff; /* Old browsers */
  7. background: -moz-linear-gradient(top, #ffffff 0%, #fcfcfc 48%, #fafafa 50%, #fcfcfc 100%); /* FF3.6+ */
  8. 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+ */
  9. background: -webkit-linear-gradient(top, #ffffff 0%,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%); /* Chrome10+,Safari5.1+ */
  10. background: -o-linear-gradient(top, #ffffff 0%,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%); /* Opera 11.10+ */
  11. background: -ms-linear-gradient(top, #ffffff 0%,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%); /* IE10+ */
  12. background: linear-gradient(to bottom, #ffffff 0%,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%); /* W3C */
  13. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fcfcfc',GradientType=0 ); /* IE6-9 */
  14. position: absolute;
  15. left: 0;
  16. top: 0;
  17. width: 100%;
  18. height: 30px;
  19. }
  20. div.network-manipulation-editMode {
  21. position:absolute;
  22. left: 0;
  23. top: 0;
  24. height: 30px;
  25. margin-top:20px;
  26. }
  27. div.network-manipulation-closeDiv {
  28. position:absolute;
  29. right: 0;
  30. top: 0;
  31. width: 30px;
  32. height: 30px;
  33. background-position: 20px 3px;
  34. background-repeat: no-repeat;
  35. background-image: url("img/network/cross.png");
  36. cursor: pointer;
  37. -webkit-touch-callout: none;
  38. -webkit-user-select: none;
  39. -khtml-user-select: none;
  40. -moz-user-select: none;
  41. -ms-user-select: none;
  42. user-select: none;
  43. }
  44. div.network-manipulation-closeDiv:hover {
  45. opacity: 0.6;
  46. }
  47. span.network-manipulationUI {
  48. font-family: verdana;
  49. font-size: 12px;
  50. -moz-border-radius: 15px;
  51. border-radius: 15px;
  52. display:inline-block;
  53. background-position: 0px 0px;
  54. background-repeat:no-repeat;
  55. height:24px;
  56. margin: -14px 0px 0px 10px;
  57. vertical-align:middle;
  58. cursor: pointer;
  59. padding: 0px 8px 0px 8px;
  60. -webkit-touch-callout: none;
  61. -webkit-user-select: none;
  62. -khtml-user-select: none;
  63. -moz-user-select: none;
  64. -ms-user-select: none;
  65. user-select: none;
  66. }
  67. span.network-manipulationUI:hover {
  68. box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.20);
  69. }
  70. span.network-manipulationUI:active {
  71. box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.50);
  72. }
  73. span.network-manipulationUI.back {
  74. background-image: url("img/network/backIcon.png");
  75. }
  76. span.network-manipulationUI.none:hover {
  77. box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.0);
  78. cursor: default;
  79. }
  80. span.network-manipulationUI.none:active {
  81. box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.0);
  82. }
  83. span.network-manipulationUI.none {
  84. padding: 0;
  85. }
  86. span.network-manipulationUI.notification{
  87. margin: 2px;
  88. font-weight: bold;
  89. }
  90. span.network-manipulationUI.add {
  91. background-image: url("img/network/addNodeIcon.png");
  92. }
  93. span.network-manipulationUI.edit {
  94. background-image: url("img/network/editIcon.png");
  95. }
  96. span.network-manipulationUI.edit.editmode {
  97. background-color: #fcfcfc;
  98. border-style:solid;
  99. border-width:1px;
  100. border-color: #cccccc;
  101. }
  102. span.network-manipulationUI.connect {
  103. background-image: url("img/network/connectIcon.png");
  104. }
  105. span.network-manipulationUI.delete {
  106. background-image: url("img/network/deleteIcon.png");
  107. }
  108. /* top right bottom left */
  109. span.network-manipulationLabel {
  110. margin: 0px 0px 0px 23px;
  111. line-height: 25px;
  112. }
  113. div.network-seperatorLine {
  114. display:inline-block;
  115. width:1px;
  116. height:20px;
  117. background-color: #bdbdbd;
  118. margin: 5px 7px 0px 15px;
  119. }
  120. div.network-navigation_wrapper {
  121. position: absolute;
  122. left: 0;
  123. top: 0;
  124. width: 100%;
  125. height: 100%;
  126. }