7
|
1 /*!
|
|
2 * jQuery UI Resizable 1.10.4
|
|
3 * http://jqueryui.com
|
|
4 *
|
|
5 * Copyright 2014 jQuery Foundation and other contributors
|
|
6 * Released under the MIT license.
|
|
7 * http://jquery.org/license
|
|
8 */
|
|
9 .ui-resizable {
|
|
10 position: relative;
|
|
11 }
|
|
12 .ui-resizable-handle {
|
|
13 position: absolute;
|
|
14 font-size: 0.1px;
|
|
15 display: block;
|
|
16 }
|
|
17 .ui-resizable-disabled .ui-resizable-handle,
|
|
18 .ui-resizable-autohide .ui-resizable-handle {
|
|
19 display: none;
|
|
20 }
|
|
21 .ui-resizable-n {
|
|
22 cursor: n-resize;
|
|
23 height: 7px;
|
|
24 width: 100%;
|
|
25 top: -5px;
|
|
26 left: 0;
|
|
27 }
|
|
28 .ui-resizable-s {
|
|
29 cursor: s-resize;
|
|
30 height: 7px;
|
|
31 width: 100%;
|
|
32 bottom: -5px;
|
|
33 left: 0;
|
|
34 }
|
|
35 .ui-resizable-e {
|
|
36 cursor: e-resize;
|
|
37 width: 7px;
|
|
38 right: -5px;
|
|
39 top: 0;
|
|
40 height: 100%;
|
|
41 }
|
|
42 .ui-resizable-w {
|
|
43 cursor: w-resize;
|
|
44 width: 7px;
|
|
45 left: -5px;
|
|
46 top: 0;
|
|
47 height: 100%;
|
|
48 }
|
|
49 .ui-resizable-se {
|
|
50 cursor: se-resize;
|
|
51 width: 12px;
|
|
52 height: 12px;
|
|
53 right: 1px;
|
|
54 bottom: 1px;
|
|
55 }
|
|
56 .ui-resizable-sw {
|
|
57 cursor: sw-resize;
|
|
58 width: 9px;
|
|
59 height: 9px;
|
|
60 left: -5px;
|
|
61 bottom: -5px;
|
|
62 }
|
|
63 .ui-resizable-nw {
|
|
64 cursor: nw-resize;
|
|
65 width: 9px;
|
|
66 height: 9px;
|
|
67 left: -5px;
|
|
68 top: -5px;
|
|
69 }
|
|
70 .ui-resizable-ne {
|
|
71 cursor: ne-resize;
|
|
72 width: 9px;
|
|
73 height: 9px;
|
|
74 right: -5px;
|
|
75 top: -5px;
|
|
76 }
|