Resizable.uss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. ResizableElement
  2. {
  3. position:absolute;
  4. top: 0;
  5. bottom: 0;
  6. right: 0;
  7. left: 0;
  8. flex-direction: row;
  9. align-items: stretch;
  10. }
  11. ResizableElement #right
  12. {
  13. width: 8px;
  14. flex-direction: column;
  15. align-items: stretch;
  16. }
  17. ResizableElement #left
  18. {
  19. width: 8px;
  20. flex-direction: column;
  21. align-items: stretch;
  22. }
  23. ResizableElement #middle
  24. {
  25. flex:1 0 auto;
  26. flex-direction: column;
  27. align-items: stretch;
  28. }
  29. ResizableElement #left #top-left-resize
  30. {
  31. height: 8px;
  32. cursor: resize-up-left;
  33. }
  34. ResizableElement #left #left-resize
  35. {
  36. flex:1 0 auto;
  37. cursor: resize-horizontal;
  38. }
  39. ResizableElement #left #bottom-left-resize
  40. {
  41. height: 8px;
  42. cursor: resize-up-right;
  43. }
  44. ResizableElement #middle #top-resize
  45. {
  46. height: 8px;
  47. cursor: resize-vertical;
  48. }
  49. ResizableElement #middle #middle-center
  50. {
  51. flex:1 0 auto;
  52. }
  53. ResizableElement #middle #bottom-resize
  54. {
  55. height: 8px;
  56. cursor: resize-vertical;
  57. }
  58. ResizableElement #right #top-right-resize
  59. {
  60. height: 8px;
  61. cursor: resize-up-right;
  62. }
  63. ResizableElement #right #right-resize
  64. {
  65. flex:1 0 auto;
  66. cursor: resize-horizontal;
  67. }
  68. ResizableElement #right #bottom-right-resize
  69. {
  70. height: 8px;
  71. cursor: resize-up-left;
  72. }