Last change
on this file since 263 was
256,
checked in by hendrikvanantwerpen, 13 years ago
|
Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).
|
File size:
1.2 KB
|
Line | |
---|
1 | /* |
---|
2 | |
---|
3 | there are basically all the classes you can set |
---|
4 | for the various dojo.dnd states and elements in |
---|
5 | their simplest form. hacking welcome. |
---|
6 | |
---|
7 | */ |
---|
8 | .container { |
---|
9 | border: 3px solid #ccc; |
---|
10 | padding: 1em 3em; |
---|
11 | cursor: default; |
---|
12 | radius: 8pt; |
---|
13 | background: #fff; |
---|
14 | -moz-border-radius: 8pt 8pt; |
---|
15 | } |
---|
16 | |
---|
17 | .dojoDndContainerOver { |
---|
18 | /* cursor:pointer; */ |
---|
19 | border: 3px solid #aaa; |
---|
20 | } |
---|
21 | |
---|
22 | .dojoDndTargetDisabled { |
---|
23 | background: #eee; |
---|
24 | } |
---|
25 | |
---|
26 | .dojoDndItem { |
---|
27 | padding: 3px; |
---|
28 | } |
---|
29 | |
---|
30 | .dj_ff2 .dojoDndItem { |
---|
31 | -moz-user-select: none; /* workaround FF2 dragging bug, see #6345, #4854, #6350 */ |
---|
32 | } |
---|
33 | |
---|
34 | .dojoDndItemOver { |
---|
35 | background: #ededed; |
---|
36 | cursor: pointer; |
---|
37 | } |
---|
38 | |
---|
39 | .dojoDndItemSelected { |
---|
40 | background: #ccf; color: #444; |
---|
41 | } |
---|
42 | |
---|
43 | .dojoDndItemAnchor { |
---|
44 | background: #ccf; color: black; |
---|
45 | } |
---|
46 | |
---|
47 | .dojoDndItemOver .dojoDndItemSelected { |
---|
48 | background: #ededed; |
---|
49 | } |
---|
50 | |
---|
51 | .dojoDndItemOver .dojoDndItemAnchor { |
---|
52 | background: #ededed; |
---|
53 | } |
---|
54 | |
---|
55 | .dojoDndItemBefore { |
---|
56 | border-top: 2px solid #369; |
---|
57 | } |
---|
58 | |
---|
59 | .dojoDndItemAfter { |
---|
60 | border-bottom: 2px solid #369; |
---|
61 | } |
---|
62 | |
---|
63 | .dojoDndAvatar { |
---|
64 | border: 2px solid #ccc; |
---|
65 | font-size: 75%; |
---|
66 | -moz-border-radius: 8pt 8pt; |
---|
67 | radius: 8pt; |
---|
68 | } |
---|
69 | |
---|
70 | .dojoDndAvatarHeader { |
---|
71 | background: #aaa; |
---|
72 | } |
---|
73 | |
---|
74 | .dojoDndAvatarItem { |
---|
75 | background: #fff; |
---|
76 | border-bottom: 1px solid #666; |
---|
77 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.