treePackUp.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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. right: 7px;
  42. display: flex;
  43. height: 40px !important;
  44. line-height: 40px !important;
  45. position: absolute !important;
  46. cursor: col-resize !important;
  47. background-color: var(--bs-background-2) !important;
  48. opacity: 0.8;
  49. span {
  50. opacity: 0.7;
  51. font-size: 16px;
  52. color: #ffffff;
  53. align-self: center;
  54. white-space: nowrap;
  55. display: block;
  56. margin-right: 4px;
  57. }
  58. &:hover {
  59. cursor: col-resize;
  60. }
  61. }
  62. .visible-tree {
  63. width: 25%;
  64. float: left;
  65. }
  66. .hidden-tree {
  67. opacity: 0;
  68. width: 0%;
  69. height: 0;
  70. }
  71. .table-portion {
  72. float: left;
  73. width: 75%;
  74. }
  75. .table-overall {
  76. width: 100%;
  77. height: 100%;
  78. }
  79. .resize {
  80. cursor: col-resize;
  81. float: left;
  82. user-select: none;
  83. width: 15px;
  84. z-index: 1;
  85. width: 14px;
  86. display: flex;
  87. height: auto;
  88. background-color: var(--bs-el-background-1);
  89. height: 100%;
  90. a {
  91. align-self: center;
  92. display: block;
  93. height: 100px;
  94. line-height: 0px;
  95. border-top-right-radius: 25px;
  96. border-bottom-right-radius: 25px;
  97. background-color: var(--bs-background-2);
  98. i {
  99. line-height: 100px;
  100. color: #c6c6db;
  101. }
  102. &:hover {
  103. background-color: var(--bs-el-color-primary);
  104. }
  105. }
  106. }
  107. .left-box {
  108. width: 25%;
  109. height: auto;
  110. overflow: hidden;
  111. .inner-container {
  112. height: 100% !important;
  113. }
  114. }
  115. .right-box {
  116. width: 75%;
  117. // margin-left: 1px;
  118. }