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
|
.v-tree {
text-align: left; /* Force default alignment */
overflow: hidden;
padding: 1px 0;
outline: none;
}
.v-tree-node {
background: transparent url(../common/img/sprites.png) no-repeat 5px -37px;
padding: 1px 0;
}
.v-tree-node-caption:focus {
outline: none;
}
div.v-tree-node-leaf {
background: transparent;
}
.v-tree-node-expanded {
background: transparent url(../common/img/sprites.png) no-repeat -5px -10px;
}
.v-tree-node-caption {
margin-left: 1em;
}
.v-tree-node span {
cursor: pointer;
}
.v-tree-node-caption div {
white-space: nowrap;
}
.v-tree-node-caption span,
.v-tree-node-caption .v-icon {
vertical-align: middle;
}
.v-tree-node-selected span {
background: #999;
color: #fff;
}
.v-tree-node-children {
padding-left: 1em;
}
/***************************************
* Drag'n'drop styles
***************************************/
.v-tree .v-tree-node-drag-top {
border-top: 2px solid #1d9dff;
margin-top: -1px;
padding-top: 0;
}
.v-tree .v-tree-node-drag-bottom {
border-bottom: 2px solid #1d9dff;
margin-bottom: -1px;
padding-bottom: 0;
}
.v-tree .v-tree-node-drag-top:before,
.v-tree .v-tree-node-drag-bottom:after,
.v-tree .v-tree-node-caption-drag-center:after {
display: block;
content: "";
position: absolute;
width: 6px;
height: 6px;
margin-top: -4px;
background: transparent url(../common/img/drag-slot-dot.png);
}
.v-tree .v-tree-node-drag-bottom:after {
margin-top: -2px;
}
.v-tree .v-tree-node-caption-drag-center:after {
margin-left: 14px;
}
.v-ff .v-tree .v-tree-node-caption-drag-center:after,
.v-ie .v-tree .v-tree-node-caption-drag-center:after {
margin-top: -2px;
}
.v-tree .v-tree-node-drag-top {
background-position: 5px -38px;
}
.v-tree .v-tree-node-drag-top.v-tree-node-expanded {
background-position: -5px -11px;
}
.v-tree .v-tree-node-caption-drag-center div {
border: 2px solid #1d9dff;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
margin: -2px 2px -2px -2px;
background-color: #bcdcff;
}
.v-tree .v-tree-node-caption-drag-center div {
background-color: rgba(169,209,255,.6);
}
.v-tree .v-tree-node-caption-drag-center div,
.v-tree .v-tree-node-drag-top,
.v-tree .v-tree-node-drag-bottom {
border-color: rgba(0,109,232,.6);
}
|