blob: 6eda93c8968d0590a82c3fdec3cc765dfac032c8 (
plain)
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
|
@import url("../../mdnd/resources/dnd.css");
.dj_ie6 .gridContainer *{
zoom:1;
}
.gridContainer{
display:block;
position:relative;
background:#FFF;
margin:0;
width:100%;
/*height:1%;*/ /*Bug focus with IE6/7)*/
height:auto;
overflow-y:auto;
overflow-x:hidden !important;
}
.gridContainerTable{
width:100%;
border:1px solid #BFBFBF;
}
.gridContainerTable tbody, .gridContainerTable tr{
height:100%;
}
.gridContainerZone{
vertical-align:top;
background-color:#FDFDFD;
height:100%;
}
.gridContainerZone .serviceWidgetTitleText h2{
position:relative;
}
.gridContainerGrip{
cursor:default;
position:absolute;
top:0;
width:10px;
padding:0;
margin:0;
background-image:url(icons/pixel.gif);
height:100%;
}
.gridContainerGripShow{
cursor:e-resize;
position:absolute;
top:0;
width:10px;
padding:0;
margin:0;
background-image:url(icons/gridcontainer_grip.gif);
height:100%;
}
.dropIndicator{
border:2px dashed #BFBFBF;
}
.dropIndicator > div{
background-color:#FFF;
}
.dj_ie6 .dropIndicator,
.dj_ie6 .dojoxPortlet .dijitContentPane,
.dj_ie6 .dojoxPortlet, .dj_ie6 .dojoxPortlet.dijitTitlePane{
margin: 10px;
}
.gridContainerZone > *{
margin: 10px !important;
}
|