dndDefault.css
1.37 KB
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
/*
there are basically all the classes you can set
for the various dojo.dnd states and elements in
their simplest form. hacking welcome.
*/
.container {
border: 3px solid #ccc;
padding: 1em 3em;
cursor: default;
radius: 8pt;
background: #fff;
-moz-border-radius: 8pt 8pt;
}
.dojoDndContainerOver {
/* cursor:pointer; */
border: 3px solid #aaa;
}
.dojoDndTargetDisabled {
background: #eee;
}
.dojoDndItem {
padding: 3px;
/* Prevent magnifying-glass text selection icon to appear on mobile webkit as it causes a touchout event */
-webkit-touch-callout: none;
-webkit-user-select: none; /* Disable selection/Copy of UIWebView */
}
.dj_ff2 .dojoDndItem {
-moz-user-select: none; /* workaround FF2 dragging bug, see #6345, #4854, #6350 */
}
.dojoDndItemOver {
background: #ededed;
cursor: pointer;
}
.dojoDndItemSelected {
background: #ccf; color: #444;
}
.dojoDndItemAnchor {
background: #ccf; color: black;
}
.dojoDndItemOver .dojoDndItemSelected {
background: #ededed;
}
.dojoDndItemOver .dojoDndItemAnchor {
background: #ededed;
}
.dojoDndItemBefore {
border-top: 2px solid #369;
}
.dojoDndItemAfter {
border-bottom: 2px solid #369;
}
.dojoDndAvatar {
border: 2px solid #ccc;
font-size: 75%;
-moz-border-radius: 8pt 8pt;
radius: 8pt;
}
.dojoDndAvatarHeader {
background: #aaa;
}
.dojoDndAvatarItem {
background: #fff;
border-bottom: 1px solid #666;
}