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.

21 lines
388 B

  1. div.vis-tooltip {
  2. position: absolute;
  3. visibility: hidden;
  4. padding: 5px;
  5. white-space: nowrap;
  6. font-family: verdana;
  7. font-size:14px;
  8. color:#000000;
  9. background-color: #f5f4ed;
  10. -moz-border-radius: 3px;
  11. -webkit-border-radius: 3px;
  12. border-radius: 3px;
  13. border: 1px solid #808074;
  14. box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  15. pointer-events: none;
  16. z-index: 5;
  17. }