index.less 795 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .cip-tree{
  2. height: 100%;
  3. display: flex;
  4. flex-direction: column;
  5. &__header {
  6. display: flex;
  7. .el-button {
  8. flex: 1;
  9. margin: 0;
  10. }
  11. }
  12. &__filter{
  13. padding-top: 0px;
  14. }
  15. &__scrollbar{
  16. flex: 1;
  17. }
  18. .custom-tree-node{
  19. flex: 1;
  20. display: flex;
  21. align-items: center;
  22. justify-content: space-between;
  23. font-size: 14px;
  24. padding-right: 8px;
  25. position: relative;
  26. overflow: hidden;
  27. .operation {
  28. display: none;
  29. position: absolute;
  30. right: 0px;
  31. padding-right: 8px;
  32. background: #f0f7ff;
  33. }
  34. .view-node {
  35. position: absolute;
  36. right: 0px;
  37. padding-right: 8px;
  38. }
  39. &:hover {
  40. .operation {
  41. margin-left: 10px;
  42. display: inline-block !important;
  43. }
  44. }
  45. }
  46. }