123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- ResizableElement
- {
- position:absolute;
- top: 0;
- bottom: 0;
- right: 0;
- left: 0;
- flex-direction: row;
- align-items: stretch;
- }
- ResizableElement #right
- {
- width: 8px;
- flex-direction: column;
- align-items: stretch;
- }
- ResizableElement #left
- {
- width: 8px;
- flex-direction: column;
- align-items: stretch;
- }
- ResizableElement #middle
- {
- flex:1 0 auto;
- flex-direction: column;
- align-items: stretch;
- }
- ResizableElement #left #top-left-resize
- {
- height: 8px;
- cursor: resize-up-left;
- }
- ResizableElement #left #left-resize
- {
- flex:1 0 auto;
- cursor: resize-horizontal;
- }
- ResizableElement #left #bottom-left-resize
- {
- height: 8px;
- cursor: resize-up-right;
- }
- ResizableElement #middle #top-resize
- {
- height: 8px;
- cursor: resize-vertical;
- }
- ResizableElement #middle #middle-center
- {
- flex:1 0 auto;
- }
- ResizableElement #middle #bottom-resize
- {
- height: 8px;
- cursor: resize-vertical;
- }
- ResizableElement #right #top-right-resize
- {
- height: 8px;
- cursor: resize-up-right;
- }
- ResizableElement #right #right-resize
- {
- flex:1 0 auto;
- cursor: resize-horizontal;
- }
- ResizableElement #right #bottom-right-resize
- {
- height: 8px;
- cursor: resize-up-left;
- }
|