incident.less 5.95 KB
Newer Older
皮倩雯's avatar
皮倩雯 committed
1
.ant-modal-close-x {
皮倩雯's avatar
皮倩雯 committed
2
  line-height: 35px;
皮倩雯's avatar
皮倩雯 committed
3
}
皮倩雯's avatar
皮倩雯 committed
4
.ant-btn .anticon.anticon-plus > svg {
皮倩雯's avatar
皮倩雯 committed
5
  margin-top: -5px;
皮倩雯's avatar
皮倩雯 committed
6
}
皮倩雯's avatar
皮倩雯 committed
7 8 9 10
.incidentContainer {
  .ant-card-body {
    padding: 12px 24px 24px 24px;
  }
皮倩雯's avatar
皮倩雯 committed
11 12 13
  .ant-modal-body {
    padding: 0px 24px 0px 24px;
  }
皮倩雯's avatar
皮倩雯 committed
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
  .linkDrowp {
    position: absolute;
    left: 93.5%;
    width: 1rem;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .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;
  }
  .ant-btn .anticon.anticon-plus > svg,
  .ant-btn .anticon.anticon-minus > svg {
    margin-top: -5px;
  }
  .pickItem {
    background-color: #f5f6f9;
  }
  .contentContainers {
皮倩雯's avatar
皮倩雯 committed
41 42 43 44
    .ant-table table {
      width: 100% !important;
      overflow-x: scroll;
    }
皮倩雯's avatar
皮倩雯 committed
45 46 47 48 49 50 51 52
    display: flex;
    width: 100%;
    position: relative;
    .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
53
    }
皮倩雯's avatar
皮倩雯 committed
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
    .orgContainer {
      height: calc(100vh - 74px);
      width: 250px;
      left: 0;
      top: 0;
      margin-right: 10px;
      position: relative;
      transition-property: width, left;
      transition-duration: 0.5s;
      white-space: nowrap;
      .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;
皮倩雯's avatar
皮倩雯 committed
77
        position: absolute;
皮倩雯's avatar
皮倩雯 committed
78 79 80 81 82 83 84
        font-size: 18px;
        color: #1890ff !important;
        top: 50%;
        right: 2px;
        transform: translate(0%, -50%);
        z-index: 1;
      }
皮倩雯's avatar
皮倩雯 committed
85
    }
皮倩雯's avatar
皮倩雯 committed
86

皮倩雯's avatar
皮倩雯 committed
87 88 89 90 91
    .orgContainerHide {
      // transform: translateX(-230px);
      left: 0px;
      top: 0;
      width: 26px;
皮倩雯's avatar
皮倩雯 committed
92
    }
皮倩雯's avatar
皮倩雯 committed
93 94
    .ant-popover-message-title {
      padding-left: 20px;
皮倩雯's avatar
皮倩雯 committed
95
    }
皮倩雯's avatar
皮倩雯 committed
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
    .userContainer {
      height: calc(100vh - 74px) !important;
      z-index: 999;
      min-width: 800px;
      background: white;
      width: 100%;
      position: relative;
      transition: width 0.5s;
      .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;
124
        }
皮倩雯's avatar
皮倩雯 committed
125 126 127 128 129 130 131 132 133 134 135 136
      }
      .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;
皮倩雯's avatar
皮倩雯 committed
137
        text-overflow: ellipsis;
皮倩雯's avatar
皮倩雯 committed
138 139 140 141 142 143 144 145 146 147 148 149 150 151
        white-space: nowrap;
      }
      .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;
      }
152
    }
皮倩雯's avatar
皮倩雯 committed
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 180 181 182
  }
  .icon {
    margin-top: -5px !important;
    vertical-align: text-bottom;
  }
}
.formData {
  height: 38rem;
  overflow-y: scroll;
  .ant-form-item-label
    > label.ant-form-item-required:not(.ant-form-item-required-mark-optional)::before {
    display: none;
  }
  .formData_label {
    display: flex;
    align-items: center;
  }
  .filed_listItem {
    display: flex;
    height: 3.6rem;
    .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;
183
    }
皮倩雯's avatar
皮倩雯 committed
184 185 186 187 188
  }
  .ant-modal-root .ant-checkbox-group .ant-checkbox-group-item {
    margin-right: 0px !important;
    min-width: 200px !important;
  }
皮倩雯's avatar
皮倩雯 committed
189
}
皮倩雯's avatar
皮倩雯 committed
190 191 192 193 194 195 196 197 198 199
.listCard {
  display: flex;
  justify-content: space-around;
  width: 100%;
  .cardItem {
    padding: 0.5rem;
    width: 50%;
  }
  .cardContent {
    height: 30rem;
皮倩雯's avatar
皮倩雯 committed
200
    overflow-y: scroll;
201 202
    overflow-x: scroll;
    width: 100%;
皮倩雯's avatar
皮倩雯 committed
203 204 205 206 207
  }
  .cardItemData {
    padding: 1rem;
    border: 1px solid #b5b8c8;
    margin-bottom: 1rem;
208
    overflow-x: scroll;
皮倩雯's avatar
皮倩雯 committed
209
  }
皮倩雯's avatar
皮倩雯 committed
210
}
皮倩雯's avatar
皮倩雯 committed
211
.listCard1 {
皮倩雯's avatar
皮倩雯 committed
212
  width: 100%;
皮倩雯's avatar
皮倩雯 committed
213
  display: flex;
皮倩雯's avatar
皮倩雯 committed
214
  height: 34rem;
皮倩雯's avatar
皮倩雯 committed
215
  .cardItem1 {
皮倩雯's avatar
皮倩雯 committed
216
    border: 1px solid #b5b8c8;
皮倩雯's avatar
皮倩雯 committed
217
    padding: 0.5rem;
皮倩雯's avatar
皮倩雯 committed
218 219 220
    width: 70%;
  }
  .cardItem11 {
皮倩雯's avatar
皮倩雯 committed
221 222
    border: 1px solid #b5b8c8;
    padding: 0.5rem;
皮倩雯's avatar
皮倩雯 committed
223
    width: 30%;
皮倩雯's avatar
皮倩雯 committed
224 225 226 227
  }
  .cardContent1 {
    height: 33rem;
    overflow-y: scroll;
228
    width: 100%;
皮倩雯's avatar
皮倩雯 committed
229
    display: flex;
皮倩雯's avatar
皮倩雯 committed
230 231
    justify-content: space-around;
  }
皮倩雯's avatar
皮倩雯 committed
232 233 234
  .tab {
    width: 100%;
  }
皮倩雯's avatar
皮倩雯 committed
235
  .cardItemData1 {
皮倩雯's avatar
皮倩雯 committed
236
    padding: 0rem 1rem;
皮倩雯's avatar
皮倩雯 committed
237
    margin-bottom: 1rem;
皮倩雯's avatar
皮倩雯 committed
238
    width: 100%;
239
    // height: 28re;
皮倩雯's avatar
皮倩雯 committed
240
  }
皮倩雯's avatar
皮倩雯 committed
241 242
}
.doctorTable {
皮倩雯's avatar
皮倩雯 committed
243
  margin-bottom: 16px;
皮倩雯's avatar
皮倩雯 committed
244
}
皮倩雯's avatar
皮倩雯 committed
245

皮倩雯's avatar
皮倩雯 committed
246
.ant-drawer-footer {
皮倩雯's avatar
皮倩雯 committed
247 248
  display: flex;
  justify-content: flex-end;
皮倩雯's avatar
皮倩雯 committed
249
}
皮倩雯's avatar
皮倩雯 committed
250 251 252 253 254 255 256 257 258 259 260
.config {
  display: flex;
  padding: 1rem 0 0.5rem 0.5rem;
  justify-content: space-between;
  width: calc(100% - 10px);
  .title {
    font-size: 18px;
    color: rgba(0, 114, 255, 1);
    font-weight: bold;
  }
  .btn {
皮倩雯's avatar
皮倩雯 committed
261
    display: flex;
皮倩雯's avatar
皮倩雯 committed
262 263 264 265 266 267 268 269
    justify-content: flex-end;
    width: 20rem;
  }
  .ant-btn {
    display: flex;
    align-items: center;
    margin-left: 20px;
  }
皮倩雯's avatar
皮倩雯 committed
270 271
}
.containerBox {
皮倩雯's avatar
皮倩雯 committed
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
  width: 100vm;
  height: calc(100vh - 90px);
  background: #ffffff;
  .ant-table.ant-table-small
    .ant-table-tbody
    .ant-table-wrapper:only-child
    .ant-table {
    margin-left: 0;
  }
  .ant-table.ant-table-bordered > .ant-table-container {
    border: none;
  }
  .clickRowStyle {
    background: #cfe7fd;
  }
  .ant-table-thead tr th {
    font-weight: 600;
    color: rgba(0, 0, 0, 0.85);
  }
}
.panda-pro-pages-platform-center-bsmanager-work-order-incident-filed_listItem {
  display: flex;
294
}