incident.less 7.33 KB
Newer Older
皮倩雯's avatar
皮倩雯 committed
1
.ant-modal-close-x {
皮倩雯's avatar
皮倩雯 committed
2
  line-height: 35px;
皮倩雯's avatar
皮倩雯 committed
3
}
4 5

.ant-btn .anticon.anticon-plus>svg {
皮倩雯's avatar
皮倩雯 committed
6
  margin-top: -5px;
皮倩雯's avatar
皮倩雯 committed
7
}
8

皮倩雯's avatar
皮倩雯 committed
9
.incidentContainer {
10 11 12 13 14 15
  height: 100%;

  .ant-checkbox-wrapper ant-checkbox-group-item {
    color: red;
  }

皮倩雯's avatar
皮倩雯 committed
16
  .ant-card-body {
17
    padding: 12px 24px 24px 10px;
皮倩雯's avatar
皮倩雯 committed
18
  }
19

皮倩雯's avatar
皮倩雯 committed
20 21 22
  .ant-modal-body {
    padding: 0px 24px 0px 24px;
  }
23

皮倩雯's avatar
皮倩雯 committed
24 25 26 27 28 29 30 31
  .linkDrowp {
    position: absolute;
    left: 93.5%;
    width: 1rem;
    height: 100%;
    display: flex;
    align-items: center;
  }
32

皮倩雯's avatar
皮倩雯 committed
33 34 35 36 37 38 39 40 41 42 43
  .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;
  }
44 45 46

  .ant-btn .anticon.anticon-plus>svg,
  .ant-btn .anticon.anticon-minus>svg {
皮倩雯's avatar
皮倩雯 committed
47 48
    margin-top: -5px;
  }
49

皮倩雯's avatar
皮倩雯 committed
50
  .pickItem {
51 52
    background-color: #aed8fa;
  }
53

54
  .listHover {
皮倩雯's avatar
皮倩雯 committed
55 56
    background-color: #f5f6f9;
  }
57

皮倩雯's avatar
皮倩雯 committed
58
  .contentContainers {
59 60
    height: 100%;

皮倩雯's avatar
皮倩雯 committed
61 62 63 64
    .ant-table table {
      width: 100% !important;
      overflow-x: scroll;
    }
65

皮倩雯's avatar
皮倩雯 committed
66 67 68
    display: flex;
    width: 100%;
    position: relative;
69 70 71 72 73 74 75 76

    // .ant-table.ant-table-bordered>.ant-table-container {
    //   min-width: calc(100vw - 582px);
    //   height: calc(100vh - 166px);
    //   overflow-x: hidden;
    //   border: none;
    // }

皮倩雯's avatar
皮倩雯 committed
77
    .orgContainer {
78 79
      // height: calc(100vh - 74px);
      height: 100%;
皮倩雯's avatar
皮倩雯 committed
80 81 82 83 84 85 86 87
      width: 250px;
      left: 0;
      top: 0;
      margin-right: 10px;
      position: relative;
      transition-property: width, left;
      transition-duration: 0.5s;
      white-space: nowrap;
88 89 90 91 92

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

皮倩雯's avatar
皮倩雯 committed
93 94
      .ant-tree {
        padding-top: 6px;
95

皮倩雯's avatar
皮倩雯 committed
96 97 98 99
        .ant-tree-switcher {
          line-height: 1;
          margin-right: 0px !important;
          color: #1890ff;
100

皮倩雯's avatar
皮倩雯 committed
101 102 103 104 105
          .ant-tree-switcher-line-icon {
            margin-left: 5px;
          }
        }
      }
106

皮倩雯's avatar
皮倩雯 committed
107 108
      .switcher {
        display: block;
皮倩雯's avatar
皮倩雯 committed
109
        position: absolute;
皮倩雯's avatar
皮倩雯 committed
110 111 112 113 114 115 116
        font-size: 18px;
        color: #1890ff !important;
        top: 50%;
        right: 2px;
        transform: translate(0%, -50%);
        z-index: 1;
      }
皮倩雯's avatar
皮倩雯 committed
117
    }
皮倩雯's avatar
皮倩雯 committed
118

皮倩雯's avatar
皮倩雯 committed
119 120 121 122 123
    .orgContainerHide {
      // transform: translateX(-230px);
      left: 0px;
      top: 0;
      width: 26px;
皮倩雯's avatar
皮倩雯 committed
124
    }
125

皮倩雯's avatar
皮倩雯 committed
126 127
    .ant-popover-message-title {
      padding-left: 20px;
皮倩雯's avatar
皮倩雯 committed
128
    }
129

皮倩雯's avatar
皮倩雯 committed
130
    .userContainer {
131
      height: 100%;
皮倩雯's avatar
皮倩雯 committed
132 133 134 135 136 137
      z-index: 999;
      min-width: 800px;
      background: white;
      width: 100%;
      position: relative;
      transition: width 0.5s;
138

皮倩雯's avatar
皮倩雯 committed
139 140 141 142 143 144 145 146 147
      .title {
        margin: 16px 0 10px 16px;
        display: inline-block;
        width: 270px;
        cursor: pointer;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }
148

皮倩雯's avatar
皮倩雯 committed
149 150 151 152 153 154 155
      .ant-table-pagination {
        padding-right: 12px;
        background: white;
        margin: 1px 0;
        padding: 8px;
        padding-right: 20px;
      }
156

皮倩雯's avatar
皮倩雯 committed
157 158
      .ant-btn {
        margin: 0px 10px;
159

皮倩雯's avatar
皮倩雯 committed
160 161
        .ant-btn-primary {
          background: #50aefc;
162
        }
皮倩雯's avatar
皮倩雯 committed
163
      }
164

皮倩雯's avatar
皮倩雯 committed
165 166 167
      .ant-input-search-button {
        margin-left: 0px !important;
      }
168

皮倩雯's avatar
皮倩雯 committed
169 170 171 172 173
      .ant-table-thead tr th {
        font-weight: 600;
        color: rgba(0, 0, 0, 0.85);
        background-color: #f6f9fe;
      }
174

皮倩雯's avatar
皮倩雯 committed
175 176 177
      .ant-table-cell {
        text-align: center;
        overflow: hidden;
皮倩雯's avatar
皮倩雯 committed
178
        text-overflow: ellipsis;
皮倩雯's avatar
皮倩雯 committed
179 180
        white-space: nowrap;
      }
181 182 183 184 185 186 187 188 189 190 191

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

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

          .ant-table-container {
            height: 100%;
          }
        }
皮倩雯's avatar
皮倩雯 committed
192
      }
193 194 195 196 197 198 199

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

皮倩雯's avatar
皮倩雯 committed
200 201 202
      .clickRowStyle {
        background: #cfe7fd;
      }
203

皮倩雯's avatar
皮倩雯 committed
204 205 206 207
      .ant-pagination {
        z-index: 999;
        border-top: 1px solid #f0eded;
      }
208
    }
皮倩雯's avatar
皮倩雯 committed
209
  }
210

皮倩雯's avatar
皮倩雯 committed
211 212 213 214 215
  .icon {
    margin-top: -5px !important;
    vertical-align: text-bottom;
  }
}
216

皮倩雯's avatar
皮倩雯 committed
217 218 219
.formData {
  height: 38rem;
  overflow-y: scroll;
220 221

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

皮倩雯's avatar
皮倩雯 committed
225 226 227 228
  .formData_label {
    display: flex;
    align-items: center;
  }
229

皮倩雯's avatar
皮倩雯 committed
230 231 232
  .filed_listItem {
    display: flex;
    height: 3.6rem;
233

皮倩雯's avatar
皮倩雯 committed
234 235 236 237 238 239 240 241 242 243
    .ant-btn-icon-only {
      width: 32px;
      height: 32px;
      /* padding: 2.4px 0; */
      font-size: 16px;
      border-radius: 2px;

      display: flex;
      align-items: center;
      justify-content: center;
244
    }
皮倩雯's avatar
皮倩雯 committed
245
  }
246

皮倩雯's avatar
皮倩雯 committed
247 248 249 250
  .ant-modal-root .ant-checkbox-group .ant-checkbox-group-item {
    margin-right: 0px !important;
    min-width: 200px !important;
  }
皮倩雯's avatar
皮倩雯 committed
251
}
252

皮倩雯's avatar
皮倩雯 committed
253 254 255 256
.listCard {
  display: flex;
  justify-content: space-around;
  width: 100%;
257

皮倩雯's avatar
皮倩雯 committed
258 259 260 261
  .cardItem {
    padding: 0.5rem;
    width: 50%;
  }
262

皮倩雯's avatar
皮倩雯 committed
263 264
  .cardContent {
    height: 30rem;
皮倩雯's avatar
皮倩雯 committed
265
    overflow-y: scroll;
266 267
    overflow-x: scroll;
    width: 100%;
268 269 270 271 272 273 274

    .ant-checkbox-group {
      .ant-checkbox-wrapper {
        width: 100%;
      }
    }

皮倩雯's avatar
皮倩雯 committed
275
  }
276

皮倩雯's avatar
皮倩雯 committed
277 278 279 280
  .cardItemData {
    padding: 1rem;
    border: 1px solid #b5b8c8;
    margin-bottom: 1rem;
281
    overflow-x: scroll;
282

皮倩雯's avatar
皮倩雯 committed
283
  }
284

皮倩雯's avatar
皮倩雯 committed
285 286 287 288 289
  .cardItemData1 {
    padding: 1rem;
    border: 1px solid #b5b8c8;
    margin-bottom: 1rem;
    overflow-x: scroll;
290

皮倩雯's avatar
皮倩雯 committed
291 292 293
    .ant-checkbox-group-item {
      color: red !important;
    }
皮倩雯's avatar
皮倩雯 committed
294
  }
皮倩雯's avatar
皮倩雯 committed
295
}
296

皮倩雯's avatar
皮倩雯 committed
297
.listCard1 {
皮倩雯's avatar
皮倩雯 committed
298
  width: 100%;
皮倩雯's avatar
皮倩雯 committed
299
  display: flex;
皮倩雯's avatar
皮倩雯 committed
300
  height: 34rem;
301

皮倩雯's avatar
皮倩雯 committed
302
  .cardItem1 {
皮倩雯's avatar
皮倩雯 committed
303
    border: 1px solid #b5b8c8;
皮倩雯's avatar
皮倩雯 committed
304
    padding: 0.5rem;
皮倩雯's avatar
皮倩雯 committed
305 306
    width: 70%;
  }
307

皮倩雯's avatar
皮倩雯 committed
308
  .cardItem11 {
皮倩雯's avatar
皮倩雯 committed
309 310
    border: 1px solid #b5b8c8;
    padding: 0.5rem;
皮倩雯's avatar
皮倩雯 committed
311
    width: 30%;
皮倩雯's avatar
皮倩雯 committed
312
  }
313

皮倩雯's avatar
皮倩雯 committed
314 315 316
  .cardContent1 {
    height: 33rem;
    overflow-y: scroll;
317
    width: 100%;
皮倩雯's avatar
皮倩雯 committed
318
    display: flex;
皮倩雯's avatar
皮倩雯 committed
319 320
    justify-content: space-around;
  }
321

皮倩雯's avatar
皮倩雯 committed
322 323 324
  .tab {
    width: 100%;
  }
325

皮倩雯's avatar
皮倩雯 committed
326
  .cardItemData1 {
皮倩雯's avatar
皮倩雯 committed
327
    padding: 0rem 1rem;
皮倩雯's avatar
皮倩雯 committed
328
    margin-bottom: 1rem;
皮倩雯's avatar
皮倩雯 committed
329
    width: 100%;
330
    // height: 28re;
皮倩雯's avatar
皮倩雯 committed
331
  }
皮倩雯's avatar
皮倩雯 committed
332
}
333

皮倩雯's avatar
皮倩雯 committed
334
.doctorTable {
皮倩雯's avatar
皮倩雯 committed
335
  margin-bottom: 16px;
皮倩雯's avatar
皮倩雯 committed
336
}
皮倩雯's avatar
皮倩雯 committed
337

皮倩雯's avatar
皮倩雯 committed
338
.ant-drawer-footer {
皮倩雯's avatar
皮倩雯 committed
339 340
  display: flex;
  justify-content: flex-end;
皮倩雯's avatar
皮倩雯 committed
341
}
342

皮倩雯's avatar
皮倩雯 committed
343 344 345 346 347
.config {
  display: flex;
  padding: 1rem 0 0.5rem 0.5rem;
  justify-content: space-between;
  width: calc(100% - 10px);
348

皮倩雯's avatar
皮倩雯 committed
349 350 351 352 353
  .title {
    font-size: 18px;
    color: rgba(0, 114, 255, 1);
    font-weight: bold;
  }
354

皮倩雯's avatar
皮倩雯 committed
355
  .btn {
皮倩雯's avatar
皮倩雯 committed
356
    display: flex;
皮倩雯's avatar
皮倩雯 committed
357 358 359
    justify-content: flex-end;
    width: 20rem;
  }
360

皮倩雯's avatar
皮倩雯 committed
361 362 363 364 365
  .ant-btn {
    display: flex;
    align-items: center;
    margin-left: 20px;
  }
皮倩雯's avatar
皮倩雯 committed
366
}
367

368
.imgg {
皮倩雯's avatar
皮倩雯 committed
369
  position: relative;
370
  top: -95px;
皮倩雯's avatar
皮倩雯 committed
371
  left: -9px;
372 373
  height: 104px;
  width: 104px;
374
  background: rgba(0, 0, 0, 0.5);
375
  border-radius: 2px;
376
  z-index: 1;
377
}
378

379 380 381 382 383
.imgg :hover {
  opacity: 0.7;
  width: '100%';
  background-color: '#2881a1';
}
384

皮倩雯's avatar
皮倩雯 committed
385
.containerBox {
皮倩雯's avatar
皮倩雯 committed
386 387 388
  width: 100vm;
  height: calc(100vh - 90px);
  background: #ffffff;
389

390
  .ant-table.ant-table-small .ant-table-tbody .ant-table-wrapper:only-child .ant-table {
皮倩雯's avatar
皮倩雯 committed
391 392
    margin-left: 0;
  }
393 394

  .ant-table.ant-table-bordered>.ant-table-container {
皮倩雯's avatar
皮倩雯 committed
395 396
    border: none;
  }
397

皮倩雯's avatar
皮倩雯 committed
398 399 400
  .clickRowStyle {
    background: #cfe7fd;
  }
401

皮倩雯's avatar
皮倩雯 committed
402 403 404 405 406
  .ant-table-thead tr th {
    font-weight: 600;
    color: rgba(0, 0, 0, 0.85);
  }
}
407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
.iconSize{
  font-size: 18px;
   color: #1890FF;
   svg{
    margin-top:-7px;
   }

}
.titleName{
  font-size: 18px;
  color: rgba(0, 114, 255, 1);
  font-weight: bold;
  display: inline-block;
  margin-left: 10px;
  line-height: 50px;
}
423

424 425 426 427 428 429 430 431 432 433 434 435
.buttonList {
  float: right;
  margin-right: 10px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  
  >span {
    display: flex;
  }
}

436 437 438
// .panda-pro-pages-platform-center-bsmanager-work-order-incident-filed_listItem {
//   display: flex;
// }