zhaojs
2023-10-07 74f6db362e1aacb440eacce84e9433de1368a51a
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
 .table:not(.table-condensed) > tbody > tr > td.treenode {
     padding-top: 0;
     padding-bottom: 0;
     border-bottom: solid #fff 1px;
 }
 
 .table:not(.table-condensed) > tbody > tr:last-child > td.treenode {
     border-bottom: none;
 }
 
 .treenode {
     .text {
         float: left;
         display: block;
         padding-top: 6px;
         padding-bottom: 6px;
     }
     .vertical,
     .vertical.last {
         float: left;
         display: block;
         width: 1px;
         border-left: dashed silver 1px;
         height: 38px;
         margin-left: 8px;
     }
     .vertical.last {
         height: 15px;
     }
     
     .space,
     .node {
         float: left;
         display: block;
         width: 15px;
         height: 5px;
         margin-top: 15px;
     }
     
     .node {
         border-top: dashed silver 1px;
     }
 }