treePackUp.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. .pack-up-box {
  2. margin: 0 -16px;
  3. height: 100%;
  4. position: absolute;
  5. background-color: #f6f7fb;
  6. display: flex;
  7. }
  8. .pack-up-button {
  9. position: absolute;
  10. margin: 0 -16px;
  11. height: none;
  12. min-height: calc(100vh - 40px);
  13. line-height: calc(100vh - 40px);
  14. background-color: #f6f7fb;
  15. display: flex;
  16. a {
  17. display: block;
  18. height: 100px;
  19. line-height: 100px;
  20. padding: 50px 0 50px 0;
  21. display: flex;
  22. top: 45%;
  23. // align-self: center;
  24. justify-content: center;
  25. background-color: #f1f1f1;
  26. border-top-right-radius: 25px;
  27. border-bottom-right-radius: 25px;
  28. i {
  29. align-self: center;
  30. color: #c6c6db;
  31. }
  32. span {
  33. align-self: center;
  34. }
  35. &:hover {
  36. background-color: var(--bs-el-color-primary);
  37. }
  38. }
  39. }
  40. .visible-pack-up {
  41. position: absolute !important;
  42. right: 7px;
  43. display: flex;
  44. height: 40px !important;
  45. line-height: 40px !important;
  46. position: absolute !important;
  47. cursor: col-resize !important;
  48. background-color: var(--bs-background-2) !important;
  49. opacity: 0.8;
  50. span {
  51. opacity: 0.7;
  52. font-size: 16px;
  53. color: #ffffff;
  54. align-self: center;
  55. white-space: nowrap;
  56. display: block;
  57. margin-right: 4px;
  58. }
  59. &:hover {
  60. cursor: col-resize;
  61. }
  62. }
  63. .visible-tree {
  64. width: 25%;
  65. float: left;
  66. }
  67. .hidden-tree {
  68. opacity: 0;
  69. width: 0%;
  70. height: 0;
  71. }
  72. .table-portion {
  73. float: left;
  74. width: 75%;
  75. }
  76. .table-overall {
  77. width: 100%;
  78. height: 100%;
  79. }
  80. .resize {
  81. cursor: col-resize;
  82. float: left;
  83. user-select: none;
  84. width: 15px;
  85. z-index: 1;
  86. width: 16px;
  87. display: flex;
  88. align-items: center;
  89. height: auto;
  90. background-color: var(--bs-el-background-1);
  91. height: 100%;
  92. a {
  93. position: unset !important;
  94. display: block;
  95. height: 100px;
  96. line-height: 0px;
  97. border-top-right-radius: 25px;
  98. border-bottom-right-radius: 25px;
  99. background-color: var(--bs-background-2);
  100. i {
  101. line-height: 100px;
  102. color: #c6c6db;
  103. }
  104. &:hover {
  105. background-color: var(--bs-el-color-primary);
  106. }
  107. }
  108. }
  109. .left-box {
  110. width: 25%;
  111. height: auto;
  112. overflow: hidden;
  113. .inner-container {
  114. height: 100% !important;
  115. }
  116. }
  117. .right-box {
  118. width: 75%;
  119. margin-left: 16px;
  120. // position: relative;
  121. }