index.less 870 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. .datasourceBox {
  2. display: flex;
  3. width: 100%;
  4. overflow: hidden;
  5. .left {
  6. width: 280px;
  7. .tables {
  8. // :global {
  9. // .ant-tree-treenode .ant-tree-node-selected {
  10. // background-color: white;
  11. // }
  12. // }
  13. .treeTitle {
  14. display: flex;
  15. justify-content: space-between;
  16. width: 200px;
  17. .title {
  18. width: 150px;
  19. overflow: hidden;
  20. white-space: nowrap;
  21. text-overflow: ellipsis;
  22. }
  23. .options {
  24. display: none;
  25. }
  26. }
  27. // .treeTitle:hover {
  28. // .options {
  29. // display: block;
  30. // }
  31. // }
  32. .active {
  33. background-color: #c3d3f7;
  34. }
  35. }
  36. }
  37. .right {
  38. width: calc(100% - 310px);
  39. margin-left: 15px;
  40. padding-left: 15px;
  41. border-left: 1px solid #f0f0f0;
  42. }
  43. }