-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist-reorder.css
More file actions
73 lines (62 loc) · 921 Bytes
/
Copy pathlist-reorder.css
File metadata and controls
73 lines (62 loc) · 921 Bytes
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
body {
text-align:center;
}
h3 {
clear: both;
}
ul, ol {
float:left;
width: 150px;
margin:25px;
}
#wrap {
width: 600px;
margin: 0 auto;
text-align:left;
}
#example2out {
clear: both;
width: 400px;
height: 100px;
border: 1px solid #999;
margin-left: 25px;
padding: 5px;
}
#example2 input {
margin-left:25px;
}
.dragHandle {
display: block;
float: right;
width: 10px;
height: 10px;
border: 2px solid #06f;
background: #fff;
cursor: move;
}
ul.lists {
list-style: none;
padding: 0;
border-left: 3px solid #06f;
border-top: 1px solid #999;
}
.lists li {
margin: 0;
padding: 10px 3px;
border: 1px solid #999;
border-top: 0;
border-left-color: #06f;
background: #f6f6f6;
}
.myItemHover {
background: #cef;
}
.myDragTarget {
background: #cef;
opacity: 0.7;
border: 2px dashed #f90;
padding: 10px 3px; /* matches '.list li' padding */
}
.lists .myDropTarget {
background: #ccc;
}