blob: 533d250cfbeba49f4969c24c85e64b45d6e48d27 (
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
|
.dojoxResizeHandle {
float: right;
position: absolute;
right: 2px;
bottom: 2px;
width: 13px;
height: 13px;
z-index: 20;
background-image: url('icons/resize.png');
line-height: 0px;
}
.dijitRtl .dojoxResizeHandle {
float: right;
left: 0px;
right: auto;
background-image: url('icons/resizeRtl.png');
}
.dojoxResizeNW {
cursor: nw-resize;
}
.dijitRtl .dojoxResizeNW {
cursor: ne-resize;
}
.dojoxResizeNE {
cursor: ne-resize;
}
.dijitRtl .dojoxResizeNE {
cursor: nw-resize;
}
.dojoxResizeW {
cursor: w-resize;
}
.dojoxResizeN {
cursor: n-resize;
}
.dojoxResizeHandleClone {
position:absolute; top:0; left:0;
border:1px dashed #666;
z-index:999;
}
|