-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.css
99 lines (74 loc) · 1.4 KB
/
demo.css
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
#list-one {
left:50px;
top:100px;
}
#list-two {
left:450px;
top:100px;
}
/** JSPLUMB ARTEFACTS **/
.jtk-connector {
z-index:1;
}
.demo {
text-align: center;
}
.list {
border: 1px solid #ccc;
width: 250px;
height: 100%;
position:absolute;
padding:10px;
}
.list ul {
max-height:250px;
overflow:auto;
margin:0;
padding:0;
}
.list li {
background-color: #fff1c6;
}
.jtk-drag-active {
background-color:#cbeae1 !important;
}
.jtk-drag-hover {
background-color:#5c96bc !important;
color:white;
}
[jtk-scrollable-list] {
position:relative;
}
.collapsibleList li{
list-style-image : url('button.png');
cursor : auto;
}
.treeView{
-moz-user-select:none;
position:relative;
}
li{
margin:0;
padding:0;
background:url('list-item.png') no-repeat top left;
list-style-position:inside;
list-style-image:url('button.png');
cursor:auto;
}
li.lastChild{
background-image:url('list-item-last.png');
}
li.collapsibleListOpen{
background-image:url('list-item-open.png');
}
li.collapsibleListOpen.lastChild{
background-image:url('list-item-last-open.png');
}
li.collapsibleListOpen{
list-style-image : url('button-open.png');
cursor : pointer;
}
li.collapsibleListClosed{
list-style-image : url('button-closed.png');
cursor : pointer;
}