tree.less
1.36 KB
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
53
54
55
56
57
58
59
60
61
62
@tree-prefix-cls: ~"@{css-prefix}tree";
.@{tree-prefix-cls} {
ul{
list-style: none;
margin: 0;
padding: 0;
font-size: @font-size-small;
li{
list-style: none;
margin: 8px 0;
padding: 0;
white-space: nowrap;
outline: none;
}
}
li{
ul{
margin: 0;
padding: 0 0 0 18px;
}
}
&-title {
display: inline-block;
margin: 0;
padding: 0 4px;
border-radius: @btn-border-radius-small;
cursor: pointer;
vertical-align: top;
color: @text-color;
transition: all @transition-time @ease-in-out;
&:hover {
background-color: tint(@primary-color, 90%);
}
&-selected, &-selected:hover{
background-color: tint(@primary-color, 80%);
}
}
&-arrow{
cursor: pointer;
width: 12px;
text-align: center;
display: inline-block;
i {
transition: all @transition-time @ease-in-out;
}
&-open{
i {
transform: rotate(90deg);
}
}
&-hidden{
cursor: auto;
i{
display: none;
}
}
&-disabled{
cursor: @cursor-disabled;
}
}
}