| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- .ng-resizable {
- position: relative;
- }
- .ng-resizable-handle {
- position: absolute;
- font-size: 0.1px;
- display: block;
- -ms-touch-action: none;
- touch-action: none;
- }
- .ng-resizable-handle.ng-resizable-e {
- cursor: e-resize;
- width: 7px;
- right: -5px;
- height: 100%;
- top: 0;
- }
- .ng-resizable-handle.ng-resizable-w {
- cursor: w-resize;
- width: 7px;
- left: -5px;
- height: 100%;
- top: 0;
- }
- .ng-resizable-handle.ng-resizable-s {
- cursor: s-resize;
- height: 7px;
- bottom: -5px;
- width: 100%;
- left: 0;
- }
- .ng-resizable-handle.ng-resizable-n {
- cursor: n-resize;
- height: 7px;
- top: -5px;
- width: 100%;
- left: 0;
- }
- .ng-resizable-handle.ng-resizable-se {
- cursor: se-resize;
- width: 12px;
- height: 12px;
- right: 1px;
- bottom: 1px;
- }
- .ng-resizable-handle.ng-resizable-sw {
- cursor: sw-resize;
- width: 12px;
- height: 12px;
- left: 1px;
- bottom: 1px;
- }
- .ng-resizable-handle.ng-resizable-ne {
- cursor: ne-resize;
- width: 12px;
- height: 12px;
- right: 1px;
- top: 1px;
- }
- .ng-resizable-handle.ng-resizable-nw {
- cursor: nw-resize;
- width: 12px;
- height: 12px;
- left: 1px;
- top: 1px;
- }
- .ng-resizable-diagonal {
- box-sizing: border-box;
- width: 0;
- height: 0;
- border-bottom: 12px solid #aaa;
- border-left: 12px solid transparent;
- }
|