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
| /*++++++++ A ++++++++++*/
|
| .treemenu-A {
| position: relative;
| list-style: none;
| margin: 0;
| padding: 0;
| }
|
| .treemenu-A-item {
| position: relative;
| line-height: 36px;
| font-weight: normal;
| cursor: pointer;
| }
|
| .treemenu-A-itemBody {
| background-color: #016985;
| color: #ddd;
| /* border-left: 5px solid transparent; */
| }
|
| .treemenu-A-itemBody:HOVER {
| background-color: #1a9182;
| color: white;
| }
|
| .treemenu-A-activeBody {
| background-color: #796161;
| color: white;
| font-weight: bold;
| border-left: 5px solid #33aecc;
| }
|
| .treemenu-A-body-arrow {
| float: right;
| margin-right: 20px;
| }
|
| .treemenu-A-text {
| margin-left: 5px;
| }
|
|