Blame view

assets/global/plugins/easyui/themes/metro/tree.css 3.4 KB
6eb38308   Andy   add
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
  .tree {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .tree li {
    white-space: nowrap;
  }
  .tree li ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  .tree-node {
    height: 18px;
    white-space: nowrap;
    cursor: pointer;
  }
  .tree-hit {
    cursor: pointer;
  }
  .tree-expanded,
  .tree-collapsed,
  .tree-folder,
  .tree-file,
  .tree-checkbox,
  .tree-indent {
    display: inline-block;
    width: 16px;
    height: 18px;
    vertical-align: top;
    overflow: hidden;
  }
  .tree-expanded {
    background: url('images/tree_icons.png') no-repeat -18px 0px;
  }
  .tree-expanded-hover {
    background: url('images/tree_icons.png') no-repeat -50px 0px;
  }
  .tree-collapsed {
    background: url('images/tree_icons.png') no-repeat 0px 0px;
  }
  .tree-collapsed-hover {
    background: url('images/tree_icons.png') no-repeat -32px 0px;
  }
  .tree-lines .tree-expanded,
  .tree-lines .tree-root-first .tree-expanded {
    background: url('images/tree_icons.png') no-repeat -144px 0;
  }
  .tree-lines .tree-collapsed,
  .tree-lines .tree-root-first .tree-collapsed {
    background: url('images/tree_icons.png') no-repeat -128px 0;
  }
  .tree-lines .tree-node-last .tree-expanded,
  .tree-lines .tree-root-one .tree-expanded {
    background: url('images/tree_icons.png') no-repeat -80px 0;
  }
  .tree-lines .tree-node-last .tree-collapsed,
  .tree-lines .tree-root-one .tree-collapsed {
    background: url('images/tree_icons.png') no-repeat -64px 0;
  }
  .tree-line {
    background: url('images/tree_icons.png') no-repeat -176px 0;
  }
  .tree-join {
    background: url('images/tree_icons.png') no-repeat -192px 0;
  }
  .tree-joinbottom {
    background: url('images/tree_icons.png') no-repeat -160px 0;
  }
  .tree-folder {
    background: url('images/tree_icons.png') no-repeat -208px 0;
  }
  .tree-folder-open {
    background: url('images/tree_icons.png') no-repeat -224px 0;
  }
  .tree-file {
    background: url('images/tree_icons.png') no-repeat -240px 0;
  }
  .tree-loading {
    background: url('images/loading.gif') no-repeat center center;
  }
  .tree-checkbox0 {
    background: url('images/tree_icons.png') no-repeat -208px -18px;
  }
  .tree-checkbox1 {
    background: url('images/tree_icons.png') no-repeat -224px -18px;
  }
  .tree-checkbox2 {
    background: url('images/tree_icons.png') no-repeat -240px -18px;
  }
  .tree-title {
    font-size: 12px;
    display: inline-block;
    text-decoration: none;
    vertical-align: top;
    white-space: nowrap;
    padding: 0 2px;
    height: 18px;
    line-height: 18px;
  }
  .tree-node-proxy {
    font-size: 12px;
    line-height: 20px;
    padding: 0 2px 0 20px;
    border-width: 1px;
    border-style: solid;
    z-index: 9900000;
  }
  .tree-dnd-icon {
    display: inline-block;
    position: absolute;
    width: 16px;
    height: 18px;
    left: 2px;
    top: 50%;
    margin-top: -9px;
  }
  .tree-dnd-yes {
    background: url('images/tree_icons.png') no-repeat -256px 0;
  }
  .tree-dnd-no {
    background: url('images/tree_icons.png') no-repeat -256px -18px;
  }
  .tree-node-top {
    border-top: 1px dotted red;
  }
  .tree-node-bottom {
    border-bottom: 1px dotted red;
  }
  .tree-node-append .tree-title {
    border: 1px dotted red;
  }
  .tree-editor {
    border: 1px solid #ddd;
    font-size: 12px;
    line-height: 16px;
    padding: 0 4px;
    margin: 0;
    width: 80px;
    outline-style: none;
    vertical-align: top;
    position: absolute;
    top: 0;
  }
  .tree-node-proxy {
    background-color: #fff;
    color: #444;
    border-color: #ddd;
  }
  .tree-node-hover {
    background: #E6E6E6;
    color: #444;
  }
  .tree-node-selected {
    background: #CCE6FF;
    color: #000;
  }
  .tree-node-hidden {
    display: none;
  }