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.

59 lines
965 B

1 year ago
  1. .tree {
  2. text-align: left;
  3. /* height: 45px;
  4. line-height: 45px; */
  5. padding-left: 15px;
  6. }
  7. .tree-item {
  8. height: 45px;
  9. line-height: 45px;
  10. display: flex;
  11. /* padding-left: 15px; */
  12. }
  13. .tree-item-onOff {
  14. width: 30px;
  15. display: flex;
  16. justify-content: center;
  17. align-items: center;
  18. }
  19. .tree-item-onOff image {
  20. width: 9px;
  21. height: 5px;
  22. display: block;
  23. transition: 0.4s;
  24. }
  25. .tree-item-onOff-closed {
  26. transform: rotate(-90deg);
  27. }
  28. .tree-item-onOff-open {
  29. transform: rotate(0deg);
  30. }
  31. .tree-item-name {
  32. width: calc(100% - 40px);
  33. display: flex;
  34. padding-left: 10px;
  35. }
  36. .name {
  37. width: calc(100% - 50px);
  38. overflow: hidden;
  39. text-overflow: ellipsis;
  40. white-space: nowrap;
  41. }
  42. .img {
  43. width: 50px;
  44. display: flex;
  45. justify-content: center;
  46. align-items: center;
  47. }
  48. .img image {
  49. width: 15px;
  50. height: 10px;
  51. display: block;
  52. }
  53. .tree-item-name-select {
  54. background: #ECF7FA;
  55. color: #0079FE;
  56. }
  57. .tree-item-name-select2 {
  58. color: #0079FE;
  59. }