vben
2021-12-12 b0a0cbcd6a67ed290dfd84c4e46af55ccf90132d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
@tree-prefix-cls: ~'@{namespace}-tree';
 
.@{tree-prefix-cls} {
  background-color: @component-background;
 
  .ant-tree-node-content-wrapper {
    position: relative;
 
    .ant-tree-title {
      position: absolute;
      left: 0;
      width: 100%;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
  }
 
  &__title {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding-right: 10px;
 
    &:hover {
      .@{tree-prefix-cls}__action {
        visibility: visible;
      }
    }
  }
 
  &__content {
    overflow: hidden;
  }
 
  &__actions {
    position: absolute;
    //top: 2px;
    right: 3px;
    display: flex;
  }
 
  &__action {
    margin-left: 4px;
    visibility: hidden;
  }
 
  &-header {
    border-bottom: 1px solid @border-color-base;
  }
}