line-graph.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .msp-canvas {
  2. width: 100%;
  3. height: 100%;
  4. background-color: #f3f2ee;
  5. text {
  6. -webkit-touch-callout: none; /* iOS Safari */
  7. -webkit-user-select: none; /* Safari */
  8. -khtml-user-select: none; /* Konqueror HTML */
  9. -moz-user-select: none; /* Firefox */
  10. -ms-user-select: none; /* Internet Explorer/Edge */
  11. user-select: none; /* Non-prefixed version, currently
  12. supported by Chrome and Opera */
  13. }
  14. circle {
  15. stroke: black;
  16. stroke-width: 10;
  17. stroke-opacity: .3;
  18. &:hover {
  19. fill: #ae5d04;
  20. stroke: black;
  21. stroke-width: 10px;
  22. }
  23. }
  24. .info {
  25. fill: white;
  26. stroke: black;
  27. stroke-width: 3;
  28. }
  29. .show {
  30. visibility: visible;
  31. }
  32. .hide {
  33. visibility: hidden;
  34. }
  35. .delete-button {
  36. rect {
  37. fill: #ED4337;
  38. stroke: black;
  39. }
  40. text {
  41. stroke: white;
  42. fill: white;
  43. }
  44. &:hover {
  45. stroke: black;
  46. stroke-width: 3;
  47. fill: #ff6961;
  48. }
  49. }
  50. .infoCircle {
  51. &:hover {
  52. fill: #4c66b2;
  53. }
  54. }
  55. }