king
3 天以前 047dbd742341e268ca772eda8d2ff0b6ba09cb44
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
.tree-page {
  position: relative;
  min-height: calc(100vh - 94px);
  padding: 16px 16px 80px;
  .box404 {
    padding-top: 30px;
  }
  .ant-modal-mask {
    position: absolute;
  }
  .ant-modal-wrap {
    position: absolute;
  }
  .action-modal .ant-modal {
    top: 40px;
    max-width: 95%;
    .ant-modal-body {
      max-height: calc(100vh - 265px);
    }
  }
  > .ant-spin {
    position: absolute;
    z-index: 10;
    left: calc(50% - 22px);
    top: calc(50vh - 70px);
  }
  > .ant-row {
    > .ant-col:last-child {
      > .ant-tabs:first-child {
        padding-top: 6px;
      }
    }
  }
  .tree-card {
    min-height: calc(100vh - 125px);
    box-shadow: 0px 0px 2px #dddddd;
 
    .ant-card-head {
      padding: 0 10px;
      .ant-card-head-title {
        padding: 13px 0 7px;
        font-size: 14px;
        .tree-title {
          display: inline-block;
          width: 100%;
          color: #1890ff;
          .ant-input-affix-wrapper {
            display: inline-block;
            width: 62%;
            margin-top: 0px;
            height: 28px;
            text-align: right;
            vertical-align: top;
 
            .ant-input {
              width: 100%;
              border-radius: 20px;
              height: 28px;
              text-align: left;
            }
            .ant-input-clear-icon {
              display: none;
            }
          }
          .ant-input-affix-wrapper:hover {
            .ant-input-clear-icon {
              display: inline-block;
            }
          }
 
          .title {
            width: 38%;
            display: inline-block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
          }
        }
      }
    }
    >.ant-card-body {
      padding: 0px;
      .ant-menu-inline {
        border-right: 0;
        margin-top: 2px;
      }
 
      .tree-box {
        min-height: calc(100vh - 180px);
        overflow-x: auto;
        padding-bottom: 20px;
 
        .ant-tree-node-content-wrapper-close > span > span > .anticon-folder-open {
          display: none;
        }
        .ant-tree-node-content-wrapper-open > span > span > .anticon-folder {
          display: none;
        }
      }
      .tree-box::-webkit-scrollbar {
        height: 10px;
      }
      .tree-box::-webkit-scrollbar-thumb {
        border-radius: 5px;
        box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.13);
        background: rgba(0, 0, 0, 0.13);
      }
      .tree-box::-webkit-scrollbar-track {/*滚动条里面轨道*/
        box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
        border-radius: 3px;
        border: 1px solid rgba(0, 0, 0, 0.07);
        background: rgba(0, 0, 0, 0);
      }
      .ant-tree-node-selected
      .ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper::before,
      .ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper::before {
        right: 0px;
      }
 
      >.ant-spin {
        margin: 10px;
      }
    }
  }
  
  .ant-tabs {
    .ant-tabs-tab:not(.ant-tabs-tab-active) {
      cursor: pointer;
    }
    .ant-tabs-tab.ant-tabs-tab-active {
      cursor: default;
    }
  }
  .tree-page-copy {
    position: fixed;
    z-index: 2;
    bottom: 65px;
    right: 30px;
    width: 40px;
    height: 40px;
  }
}
.tree-page.bg-gray {
  background: #f0f2f5;
  .ant-tabs {
    background: #ffffff;
    padding: 0px 5px 5px;
    margin-bottom: 20px;
  }
}
 
.common-table-custom-modal {
  .ant-modal {
    top: 50px;
    padding-bottom: 5px;
    .ant-modal-body {
      max-height: calc(100vh - 190px);
      min-height: 250px;
      overflow-y: auto;
      .ant-empty {
        margin: 15vh 8px;
      }
    }
    .ant-modal-body::-webkit-scrollbar {
      width: 7px;
    }
    .ant-modal-body::-webkit-scrollbar-thumb {
      border-radius: 5px;
      box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.13);
      background: rgba(0, 0, 0, 0.13);
    }
    .ant-modal-body::-webkit-scrollbar-track {
      box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
      border-radius: 3px;
      border: 1px solid rgba(0, 0, 0, 0.07);
      background: rgba(0, 0, 0, 0);
    }
  }
}