hjg
2023-10-16 a92547a2e458ca159b4877fb901f27227b941acf
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
.mtree,
.mtree ul,
.mtree li {
    padding: 0;
    margin: 0;
    padding-left: 10px;
    list-style: none;
}
 
.mtree input
{
    position: absolute;
    opacity: 0;
}
 
.mtree
{
    font: normal 12px "Segoe UI", Arial, Sans-serif;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
.mtree a{
    color: #00f;
    text-decoration: none;
}
.mtree a:hover
{
    text-decoration: underline;
}
.mtree input + label + ul
{
    margin: 0 0 0 15px;
}
.mtree input ~ ul
{
    display: none;
}
.mtree label,
.mtree label::before
{
    cursor: pointer;
}
 
.mtree input:disabled + label
{
    cursor: default;
    opacity: .6;
}
.mtree input:checked:not(:disabled) ~ ul
{
    display: block;
}
 
.mtree label,
.mtree label::before
{
    background: url("icons.png") no-repeat;
}
 
.mtree label,
.mtree a,
.mtree label::before
{
    display: inline-block;
    height: 16px;
    line-height: 16px;
    vertical-align: middle;
}
 
.mtree label
{
    background-position: 18px 0;
}
 
.mtree label::before
{
    content: "";
    width: 16px;
    margin: 0 22px 0 0;
    vertical-align: middle;
    background-position: 0 -32px;
}
 
.mtree input:checked + label::before
{
    background-position: 0 -16px;
}
 
@media screen and (-webkit-min-device-pixel-ratio:0)
{
    .mtree 
    {
        -webkit-animation: webkit-adjacent-element-selector-bugfix infinite 1s;
    }
 
    @-webkit-keyframes webkit-adjacent-element-selector-bugfix 
    {
        from 
        { 
            padding: 0;
        } 
        to 
        { 
            padding: 0;
        }
    }
}