rlm@46: /* rlm@46: * Ext JS Library 2.1 rlm@46: * Copyright(c) 2006-2008, Ext JS, LLC. rlm@46: * licensing@extjs.com rlm@46: * rlm@46: * http://extjs.com/license rlm@46: */ rlm@46: rlm@46: .x-resizable-handle { rlm@46: position:absolute; rlm@46: z-index:100; rlm@46: /* ie needs these */ rlm@46: font-size:1px; rlm@46: line-height:6px; rlm@46: overflow:hidden; rlm@46: background:white; rlm@46: filter:alpha(opacity=0); rlm@46: opacity:0; rlm@46: zoom:1; rlm@46: } rlm@46: .x-resizable-handle-east{ rlm@46: width:6px; rlm@46: cursor:e-resize; rlm@46: right:0; rlm@46: top:0; rlm@46: height:100%; rlm@46: } rlm@46: .ext-ie .x-resizable-handle-east { rlm@46: margin-right:-1px; /*IE rounding error*/ rlm@46: } rlm@46: .x-resizable-handle-south{ rlm@46: width:100%; rlm@46: cursor:s-resize; rlm@46: left:0; rlm@46: bottom:0; rlm@46: height:6px; rlm@46: } rlm@46: .ext-ie .x-resizable-handle-south { rlm@46: margin-bottom:-1px; /*IE rounding error*/ rlm@46: } rlm@46: .x-resizable-handle-west{ rlm@46: width:6px; rlm@46: cursor:w-resize; rlm@46: left:0; rlm@46: top:0; rlm@46: height:100%; rlm@46: } rlm@46: .x-resizable-handle-north{ rlm@46: width:100%; rlm@46: cursor:n-resize; rlm@46: left:0; rlm@46: top:0; rlm@46: height:6px; rlm@46: } rlm@46: .x-resizable-handle-southeast{ rlm@46: width:6px; rlm@46: cursor:se-resize; rlm@46: right:0; rlm@46: bottom:0; rlm@46: height:6px; rlm@46: z-index:101; rlm@46: } rlm@46: .x-resizable-handle-northwest{ rlm@46: width:6px; rlm@46: cursor:nw-resize; rlm@46: left:0; rlm@46: top:0; rlm@46: height:6px; rlm@46: z-index:101; rlm@46: } rlm@46: .x-resizable-handle-northeast{ rlm@46: width:6px; rlm@46: cursor:ne-resize; rlm@46: right:0; rlm@46: top:0; rlm@46: height:6px; rlm@46: z-index:101; rlm@46: } rlm@46: .x-resizable-handle-southwest{ rlm@46: width:6px; rlm@46: cursor:sw-resize; rlm@46: left:0; rlm@46: bottom:0; rlm@46: height:6px; rlm@46: z-index:101; rlm@46: } rlm@46: .x-resizable-over .x-resizable-handle, .x-resizable-pinned .x-resizable-handle{ rlm@46: filter:alpha(opacity=100); rlm@46: opacity:1; rlm@46: } rlm@46: .x-resizable-over .x-resizable-handle-east, .x-resizable-pinned .x-resizable-handle-east{ rlm@46: background:url(../images/default/sizer/e-handle.gif); rlm@46: background-position: left; rlm@46: } rlm@46: .x-resizable-over .x-resizable-handle-west, .x-resizable-pinned .x-resizable-handle-west{ rlm@46: background:url(../images/default/sizer/e-handle.gif); rlm@46: background-position: left; rlm@46: } rlm@46: .x-resizable-over .x-resizable-handle-south, .x-resizable-pinned .x-resizable-handle-south{ rlm@46: background:url(../images/default/sizer/s-handle.gif); rlm@46: background-position: top; rlm@46: } rlm@46: .x-resizable-over .x-resizable-handle-north, .x-resizable-pinned .x-resizable-handle-north{ rlm@46: background:url(../images/default/sizer/s-handle.gif); rlm@46: background-position: top; rlm@46: } rlm@46: .x-resizable-over .x-resizable-handle-southeast, .x-resizable-pinned .x-resizable-handle-southeast{ rlm@46: background:url(../images/default/sizer/se-handle.gif); rlm@46: background-position: top left; rlm@46: } rlm@46: .x-resizable-over .x-resizable-handle-northwest, .x-resizable-pinned .x-resizable-handle-northwest{ rlm@46: background:url(../images/default/sizer/nw-handle.gif); rlm@46: background-position:bottom right; rlm@46: } rlm@46: .x-resizable-over .x-resizable-handle-northeast, .x-resizable-pinned .x-resizable-handle-northeast{ rlm@46: background:url(../images/default/sizer/ne-handle.gif); rlm@46: background-position: bottom left; rlm@46: } rlm@46: .x-resizable-over .x-resizable-handle-southwest, .x-resizable-pinned .x-resizable-handle-southwest{ rlm@46: background:url(../images/default/sizer/sw-handle.gif); rlm@46: background-position: top right; rlm@46: } rlm@46: .x-resizable-proxy{ rlm@46: border: 1px dashed #3b5a82; rlm@46: position:absolute; rlm@46: overflow:hidden; rlm@46: display:none; rlm@46: left:0;top:0; rlm@46: z-index:50000; rlm@46: } rlm@46: .x-resizable-overlay{ rlm@46: width:100%; rlm@46: height:100%; rlm@46: display:none; rlm@46: position:absolute; rlm@46: left:0; rlm@46: top:0; rlm@46: background:white; rlm@46: z-index:200000; rlm@46: -moz-opacity: 0; rlm@46: opacity:0; rlm@46: filter: alpha(opacity=0); rlm@46: }