dgraph.css 468 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .node circle {
  2. stroke: #999999;
  3. stroke-width: 1px;
  4. fill: #99cccc;
  5. cursor: inherit;
  6. }
  7. .nodeHighlighted circle {
  8. fill: #ffcc00;
  9. }
  10. .nodeHighlighted text {
  11. font-weight: bold;
  12. }
  13. .srcNodeHighlighted circle {
  14. fill: #6666cc;
  15. }
  16. .targetNodeHighlighted circle {
  17. fill: #cc6666;
  18. }
  19. line {
  20. stroke: #eaeaea;
  21. stroke-width: 1px;
  22. }
  23. .edge {
  24. stroke-width: 0.6px;
  25. stroke: #999999;
  26. }
  27. .srcEdgeHighlighted {
  28. stroke: #0000aa;
  29. }
  30. .targetEdgeHighlighted {
  31. stroke: #aa0000;
  32. }