blob: 4befa2c797dd421279e4dd00ba311dc04265a9cb (
plain)
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
|
.navigation-wrapper {
text-align: left;
}
.node-item {
border: 1px dotted;
border-right: none;
border-bottom: none;
width: 100%;
}
.node-item:last-child {
border-left: none;
}
.node-data-wrapper {
cursor: default;
height: 39px;
line-height: 39px;
position: relative;
top: -20px;
background-color: white;
margin-left: 0.7em;
}
.children-node {
padding-left: 40px;
}
.node-data {
margin-left: 10px;
margin-right: 10px;
}
.node-data-wrapper.selected {
background-color: #e6f6fb;
.node-data {
color: #009fdb;
}
}
.node-data-wrapper:hover {
background-color: #eaeaea;
}
.mark{
background-color: yellow;
}
|