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