patrolFeedback.less 4.85 KB
Newer Older
皮倩雯's avatar
皮倩雯 committed
1
.PatrolFeedbackContainer {
2 3 4 5
  height: 100%;

  .contentContainers {
    height: 100%;
6 7 8
    display: flex;
    width: 100%;
    position: relative;
9 10 11 12 13 14 15 16 17 18 19

    .ant-table-wrapper {
      height: calc(100% - 100px);

      .ant-table {
        height: 100%;
      }
    }
    .ant-pagination {
      padding: 10px;
    }
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
    .pickItem {
      background-color: #aed8fa;
    }
  
    .listHover {
      background-color: #f5f6f9;
    }

    .listItem {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
      font-weight: 400;
      color: #414e65;
      cursor: pointer;
      line-height: 28px;
      align-items: center;
      padding: 8px 14px;
    }

    .orgContainer {
      // height: calc(100vh - 74px);
      height: 100%;
      width: 250px;
      left: 0;
      top: 0;
      margin-right: 10px;
      position: relative;
      transition-property: width, left;
      transition-duration: 0.5s;
      white-space: nowrap;

      .ant-card-body {
        height: 100%;
      }

      .ant-tree {
        padding-top: 6px;

        .ant-tree-switcher {
          line-height: 1;
          margin-right: 0px !important;
          color: #1890ff;

          .ant-tree-switcher-line-icon {
            margin-left: 5px;
          }
        }
      }

      .switcher {
        display: block;
        position: absolute;
        font-size: 18px;
        color: #1890ff !important;
        top: 50%;
        right: 2px;
        transform: translate(0%, -50%);
        z-index: 1;
      }
    }

    .orgContainerHide {
      // transform: translateX(-230px);
      left: 0px;
      top: 0;
      width: 26px;
    }

    .userContainer {
      height: 100%;
      z-index: 999;
      min-width: 800px;
      background: white;
      width: 100%;
      position: relative;
      transition: width 0.5s;

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
      .title {
        margin: 16px 0 10px 16px;
        display: inline-block;
        width: 270px;
        cursor: pointer;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      .ant-table-pagination {
        padding-right: 12px;
        background: white;
        margin: 1px 0;
        padding: 8px;
        padding-right: 20px;
      }

      .ant-btn {
        margin: 0px 10px;

        .ant-btn-primary {
          background: #50aefc;
        }
      }

      .ant-input-search-button {
        margin-left: 0px !important;
      }

      .ant-table-thead tr th {
        font-weight: 600;
        color: rgba(0, 0, 0, 0.85);
        background-color: #f6f9fe;
      }

      .ant-table-cell {
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      .ant-table-wrapper {
        height: calc(100% - 50px);

        .ant-table {
          height: calc(100% - 45px);

          .ant-table-container {
            height: 100%;
          }
        }
      }

      // .ant-table-body {
      //   height: calc(100vh - 210px);
      //   border-right: white;
      //   overflow: auto !important;
      // }

      .clickRowStyle {
        background: #cfe7fd;
      }

      .ant-pagination {
        z-index: 999;
        border-top: 1px solid #f0eded;
      }
    }
170 171 172 173
  }



皮倩雯's avatar
皮倩雯 committed
174 175 176
  .ant-card-body {
    padding: 12px 24px 24px 24px;
  }
177 178 179



皮倩雯's avatar
皮倩雯 committed
180 181 182
  .pickItem {
    background-color: #f5f6f9;
  }
183
}
184

皮倩雯's avatar
皮倩雯 committed
185 186 187
.formData {
  height: 38rem;
  overflow-y: scroll;
188 189

  .ant-form-item-label>label.ant-form-item-required:not(.ant-form-item-required-mark-optional)::before {
皮倩雯's avatar
皮倩雯 committed
190 191
    display: none;
  }
192

皮倩雯's avatar
皮倩雯 committed
193
  .formData_label {
皮倩雯's avatar
皮倩雯 committed
194 195
    display: flex;
    align-items: center;
皮倩雯's avatar
皮倩雯 committed
196
  }
197

皮倩雯's avatar
皮倩雯 committed
198
  .filed_listItem {
皮倩雯's avatar
皮倩雯 committed
199
    display: flex;
皮倩雯's avatar
皮倩雯 committed
200
    height: 3.6rem;
201

皮倩雯's avatar
皮倩雯 committed
202 203 204 205 206 207
    .ant-btn-icon-only {
      width: 32px;
      height: 32px;
      /* padding: 2.4px 0; */
      font-size: 16px;
      border-radius: 2px;
皮倩雯's avatar
皮倩雯 committed
208

皮倩雯's avatar
皮倩雯 committed
209 210 211 212 213 214
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }
}
215

216 217 218 219 220 221
.cardContent {
  height: 30rem;
  overflow-y: scroll;
  overflow-x: scroll;
  width: 100%;
}
222

223 224 225
.doctorTable {
  margin-bottom: 16px;
}
226

皮倩雯's avatar
皮倩雯 committed
227 228 229 230 231 232 233 234 235
.linkDrowp {
  position: absolute;
  top: 0px;
  left: 93.5%;
  width: 1rem;
  height: 100%;
  display: flex;
  align-items: center;
}
236

皮倩雯's avatar
皮倩雯 committed
237 238 239 240 241 242 243 244 245 246
.listItem {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 400;
  color: #414e65;
  cursor: pointer;
  line-height: 28px;
  align-items: center;
  padding: 8px 14px;
皮倩雯's avatar
皮倩雯 committed
247
}
248

皮倩雯's avatar
皮倩雯 committed
249
.ant-select-arrow .anticon {
皮倩雯's avatar
皮倩雯 committed
250
  vertical-align: middle;
皮倩雯's avatar
皮倩雯 committed
251
}
252

皮倩雯's avatar
皮倩雯 committed
253 254
.listCard {
  display: flex;
255

皮倩雯's avatar
皮倩雯 committed
256 257 258
  .cardItem {
    padding: 0.5rem;
  }
259

皮倩雯's avatar
皮倩雯 committed
260 261 262 263 264
  .cardContent {
    height: 30rem;
    overflow-y: scroll;
    width: 100%;
  }
265

皮倩雯's avatar
皮倩雯 committed
266 267 268 269 270
  .cardItemData {
    display: inline-block;
    padding: 0.5rem;
    border: 1px solid #b5b8c8;
    width: 100%;
271 272
    min-height: 100px;
    min-width: 333px;
皮倩雯's avatar
皮倩雯 committed
273 274 275
    // height: 30rem;
    overflow-y: scroll;
  }
皮倩雯's avatar
皮倩雯 committed
276
}
277

皮倩雯's avatar
皮倩雯 committed
278
.ant-modal-body {
皮倩雯's avatar
皮倩雯 committed
279
  padding: 10px 24px 0px 24px;
皮倩雯's avatar
皮倩雯 committed
280
}
281

皮倩雯's avatar
皮倩雯 committed
282
.ant-modal-footer {
283
  padding: 10px 48px 10px 40px;
皮倩雯's avatar
皮倩雯 committed
284
}
285

皮倩雯's avatar
皮倩雯 committed
286
.ant-table-pagination.ant-pagination {
皮倩雯's avatar
皮倩雯 committed
287
  margin: 5px 0;
288
}