root / trunk / web / dojo / dojox / layout / resources / ResizeHandle.css
History | View | Annotate | Download (707 Bytes)
| 1 |
.dojoxResizeHandle {
|
|---|---|
| 2 |
float: right; |
| 3 |
position: absolute; |
| 4 |
right: 2px; |
| 5 |
bottom: 2px; |
| 6 |
width: 13px; |
| 7 |
height: 13px; |
| 8 |
z-index: 20; |
| 9 |
background-image: url('icons/resize.png'); |
| 10 |
line-height: 0px; |
| 11 |
} |
| 12 |
.dijitRtl .dojoxResizeHandle { |
| 13 |
float: right; |
| 14 |
left: 0px; |
| 15 |
right: auto; |
| 16 |
background-image: url('icons/resizeRtl.png'); |
| 17 |
} |
| 18 |
.dojoxResizeNW {
|
| 19 |
cursor: nw-resize; |
| 20 |
} |
| 21 |
.dijitRtl .dojoxResizeNW { |
| 22 |
cursor: ne-resize; |
| 23 |
} |
| 24 |
.dojoxResizeNE {
|
| 25 |
cursor: ne-resize; |
| 26 |
} |
| 27 |
.dijitRtl .dojoxResizeNE { |
| 28 |
cursor: nw-resize; |
| 29 |
} |
| 30 |
.dojoxResizeW {
|
| 31 |
cursor: w-resize; |
| 32 |
} |
| 33 |
.dojoxResizeN {
|
| 34 |
cursor: n-resize; |
| 35 |
} |
| 36 |
.dojoxResizeHandleClone {
|
| 37 |
position:absolute; top:0; left:0; |
| 38 |
border:1px dashed #666; |
| 39 |
z-index:999; |
| 40 |
} |