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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
| ul li {
| list-style: none;
| }
|
| .operation-li {
| line-height: 60px;
| color: #555;
| font-size: 12px;
| width: 240px;
| margin-top: 1px;
| }
|
| .api-tree {
| padding: 0;
| margin: 0;
| }
|
| .nav-api-side {
| overflow-x: hidden;
| border: 1px solid #ddd;
| width: 240px;
| margin-left: 10px;
| border-radius: 4px;
| position: fixed;
| top: 110px;
| bottom: 10px;
| }
|
| .nav-api-header {
| height: 50px;
| left: 202px;
| right: 0;
| border-bottom: 1px solid #ddd;
| background-color: #f7f7f7;
| position: fixed;
| z-index: 100;
| }
|
| .custom-tree-node {
| flex: 1;
| display: flex;
| align-items: center;
| justify-content: space-between;
| font-size: 14px;
| padding-right: 8px;
| width: 0;
| }
|
| .custom-tree-node-span {
| flex-grow: 1;
| overflow: hidden;
| text-overflow: ellipsis;
| white-space: nowrap;
| }
|
| .badge-item {
| margin-left: 5px;
| }
|
| .tree {
| overflow-y: auto;
| overflow-x: auto;
| width: 280px;
| height: 500px;
| }
|
| .el-tree {
| min-width: 100%;
| display: inline-block !important;
| }
|
| .el-tree-node__expand-icon {
| padding: 4px !important;
| }
|
| .el-tree-node__content {
| height: 50px;
| }
|
| .el-tree--highlight-current .el-tree-node.is-current > .el-tree-node__content {
| background-color: rgba(64, 158, 255, 0.1);
| color: #409eff;
| }
|
|