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.

index.less 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. .ragNode {
  2. position: relative;
  3. box-shadow:
  4. -6px 0 12px 0 rgba(179, 177, 177, 0.08),
  5. -3px 0 6px -4px rgba(0, 0, 0, 0.12),
  6. -6px 0 16px 6px rgba(0, 0, 0, 0.05);
  7. padding: 5px;
  8. border-radius: 5px;
  9. background: white;
  10. width: 100px;
  11. height: 100px;
  12. border-radius: 50%;
  13. display: flex;
  14. // align-items: center;
  15. // justify-self: center;
  16. justify-content: center;
  17. .nodeName {
  18. font-size: 8px;
  19. }
  20. label {
  21. display: block;
  22. color: #777;
  23. font-size: 12px;
  24. }
  25. .description {
  26. font-size: 10px;
  27. }
  28. .bottomBox {
  29. position: absolute;
  30. bottom: -26px;
  31. background: white;
  32. padding: 2px 5px;
  33. border-radius: 5px;
  34. box-shadow:
  35. -6px 0 12px 0 rgba(179, 177, 177, 0.08),
  36. -3px 0 6px -4px rgba(0, 0, 0, 0.12),
  37. -6px 0 16px 6px rgba(0, 0, 0, 0.05);
  38. }
  39. .categorizeAnchorPointText {
  40. position: absolute;
  41. top: -4px;
  42. left: 8px;
  43. white-space: nowrap;
  44. }
  45. }
  46. .selectedNode {
  47. border: 1px solid rgb(59, 118, 244);
  48. }
  49. .handle {
  50. display: inline-flex;
  51. text-align: center;
  52. // align-items: center;
  53. }