standingBook.less 7.12 KB
Newer Older
皮倩雯's avatar
皮倩雯 committed
1 2 3
.redText {
  color: red;
  cursor: pointer;
shaoan123's avatar
shaoan123 committed
4
}
5

6 7
// .ant-layout {
//   overflow: auto;
8

9 10 11 12
//   .ant-layout-content {
//     margin: 12px !important;
//   }
// }
13

14 15 16 17 18
// .ant-btn>.anticon+span,
// .ant-btn>span+.anticon {
//   margin-left: 8px;
//   vertical-align: middle;
// }
19

皮倩雯's avatar
皮倩雯 committed
20 21 22 23 24 25
.siteTitle {
  font-size: 16px;
  margin: 0 0 6px 0;
  user-select: none;
  padding: 3px;
  border-bottom: 1px solid #ccc;
shaoan123's avatar
shaoan123 committed
26
}
27

皮倩雯's avatar
皮倩雯 committed
28 29
.userManageContainer {
  .ant-card-body {
30 31
    height: 100%;
    padding: 12px 24px 24px 10px;
皮倩雯's avatar
皮倩雯 committed
32
  }
33

皮倩雯's avatar
皮倩雯 committed
34
  .listItem {
35 36
    // display: flex;
    // justify-content: space-between;
皮倩雯's avatar
皮倩雯 committed
37 38 39 40 41 42 43
    font-size: 14px;
    font-weight: 400;
    color: #414e65;
    cursor: pointer;
    line-height: 28px;
    align-items: center;
    padding: 8px 14px;
44 45 46
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
皮倩雯's avatar
皮倩雯 committed
47
  }
48

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

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

皮倩雯's avatar
皮倩雯 committed
57 58 59
  .ant-form-item {
    vertical-align: top;
  }
60 61

  .ant-form-item-label>label {
皮倩雯's avatar
皮倩雯 committed
62 63
    align-items: middle;
  }
64

皮倩雯's avatar
皮倩雯 committed
65 66 67 68
  .ant-modal-body {
    padding-bottom: 0px;
    padding-right: 40px;
    padding-left: 40px;
69

皮倩雯's avatar
皮倩雯 committed
70 71
    .ant-form {
      width: 90%;
shaoan123's avatar
shaoan123 committed
72
    }
皮倩雯's avatar
皮倩雯 committed
73
  }
74

皮倩雯's avatar
皮倩雯 committed
75 76 77
  .anticon svg {
    margin-top: -3px;
  }
78

皮倩雯's avatar
皮倩雯 committed
79 80 81 82 83 84
  .ant-popover-message {
    position: relative;
    padding: 0px 0 0px;
    color: rgba(0, 0, 0, 0.85);
    font-size: 14px;
  }
85

皮倩雯's avatar
皮倩雯 committed
86 87
  .ant-tree-treenode {
    width: 100% !important;
88

皮倩雯's avatar
皮倩雯 committed
89 90 91
    .ant-tree-node-content-wrapper {
      display: inline-block;
      width: 100%;
shaoan123's avatar
shaoan123 committed
92
    }
皮倩雯's avatar
皮倩雯 committed
93 94 95

    .iconWraper1 {
      float: right;
96

皮倩雯's avatar
皮倩雯 committed
97 98 99
      span {
        display: none;
      }
shaoan123's avatar
shaoan123 committed
100
    }
皮倩雯's avatar
皮倩雯 committed
101
  }
102

皮倩雯's avatar
皮倩雯 committed
103
  .ant-tree-treenode:hover {
104
    .iconWraper1>span {
皮倩雯's avatar
皮倩雯 committed
105 106 107
      margin-left: 12px;
      font-size: 18px;
      display: inline-block;
shaoan123's avatar
shaoan123 committed
108
    }
皮倩雯's avatar
皮倩雯 committed
109
  }
110

皮倩雯's avatar
皮倩雯 committed
111 112 113
  .ant-radio-group {
    margin: 0px !important;
  }
114

皮倩雯's avatar
皮倩雯 committed
115 116 117
  .contentContainers {
    display: flex;
    width: 100%;
118
    height: 100%;
皮倩雯's avatar
皮倩雯 committed
119
    position: relative;
120 121

    .ant-table.ant-table-bordered>.ant-table-container {
122
      // min-width: calc(100vw - 582px);
123
      // height: calc(100vh - 175px);
124
      height: 100%;
皮倩雯's avatar
皮倩雯 committed
125 126
      overflow-x: hidden;
      border: none;
shaoan123's avatar
shaoan123 committed
127
    }
128

皮倩雯's avatar
皮倩雯 committed
129
    .orgContainer {
130 131 132
      // height: calc(100vh - 74px);
      height: 100%;
      width: 250px;
皮倩雯's avatar
皮倩雯 committed
133 134 135 136 137 138 139
      left: 0;
      top: 0;
      margin-right: 10px;
      position: relative;
      transition-property: width, left;
      transition-duration: 0.5s;
      white-space: nowrap;
140
      padding-right: 20px;
141

皮倩雯's avatar
皮倩雯 committed
142 143
      .ant-tree {
        padding-top: 6px;
144

皮倩雯's avatar
皮倩雯 committed
145 146 147 148
        .ant-tree-switcher {
          line-height: 1;
          margin-right: 0px !important;
          color: #1890ff;
149

皮倩雯's avatar
皮倩雯 committed
150 151 152
          .ant-tree-switcher-line-icon {
            margin-left: 5px;
          }
shaoan123's avatar
shaoan123 committed
153
        }
皮倩雯's avatar
皮倩雯 committed
154
      }
155

皮倩雯's avatar
皮倩雯 committed
156 157 158 159 160 161 162 163 164 165
      .switcher {
        display: block;
        position: absolute;
        font-size: 18px;
        color: #1890ff !important;
        top: 50%;
        right: 2px;
        transform: translate(0%, -50%);
        z-index: 1;
      }
shaoan123's avatar
shaoan123 committed
166 167
    }

皮倩雯's avatar
皮倩雯 committed
168 169 170 171 172
    .orgContainerHide {
      // transform: translateX(-230px);
      left: 0px;
      top: 0;
      width: 26px;
shaoan123's avatar
shaoan123 committed
173
    }
174

皮倩雯's avatar
皮倩雯 committed
175 176
    .ant-popover-message-title {
      padding-left: 20px;
shaoan123's avatar
shaoan123 committed
177
    }
178

皮倩雯's avatar
皮倩雯 committed
179
    .userContainer {
180
      height: 100%;
皮倩雯's avatar
皮倩雯 committed
181 182 183 184 185 186
      z-index: 999;
      min-width: 800px;
      background: white;
      width: 100%;
      position: relative;
      transition: width 0.5s;
187

皮倩雯's avatar
皮倩雯 committed
188 189 190 191 192 193 194 195 196
      .title {
        margin: 16px 0 10px 16px;
        display: inline-block;
        width: 270px;
        cursor: pointer;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }
197

198 199 200 201 202 203 204
      .ant-table-wrapper {
        height: 100%;
        .ant-table {
          height: 100%;
        }
      }

皮倩雯's avatar
皮倩雯 committed
205 206 207 208 209 210 211
      .ant-table-pagination {
        padding-right: 12px;
        background: white;
        margin: 1px 0;
        padding: 8px;
        padding-right: 20px;
      }
212

皮倩雯's avatar
皮倩雯 committed
213 214
      .ant-btn {
        margin: 0px 10px;
215

皮倩雯's avatar
皮倩雯 committed
216 217
        .ant-btn-primary {
          background: #50aefc;
shaoan123's avatar
shaoan123 committed
218
        }
皮倩雯's avatar
皮倩雯 committed
219
      }
220

皮倩雯's avatar
皮倩雯 committed
221 222 223
      .ant-input-search-button {
        margin-left: 0px !important;
      }
224

皮倩雯's avatar
皮倩雯 committed
225 226 227 228
      .ant-table-thead tr th {
        font-weight: 600;
        color: rgba(0, 0, 0, 0.85);
      }
229

皮倩雯's avatar
皮倩雯 committed
230 231 232 233 234 235
      .ant-table-cell {
        text-align: center;
        overflow: hidden;
        // text-overflow:ellipsis;
        white-space: nowrap;
      }
236

皮倩雯's avatar
皮倩雯 committed
237
      .ant-table-body {
238 239 240
        // height: calc(100vh - 210px);
        // border-right: white;
        // overflow: auto !important;
皮倩雯's avatar
皮倩雯 committed
241
      }
242

皮倩雯's avatar
皮倩雯 committed
243 244 245
      .clickRowStyle {
        background: #cfe7fd;
      }
246

皮倩雯's avatar
皮倩雯 committed
247 248 249 250
      .ant-pagination {
        z-index: 999;
        border-top: 1px solid #f0eded;
      }
shaoan123's avatar
shaoan123 committed
251
    }
皮倩雯's avatar
皮倩雯 committed
252
  }
shaoan123's avatar
shaoan123 committed
253
}
254

255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
// .ant-modal-root {
//   .ant-tree-switcher {
//     line-height: 1;
//     color: #1890ff;
//     margin-right: 0px !important;
//   }

//   .ant-checkbox-group .ant-checkbox-group-item {
//     margin-right: 0px !important;
//     // min-width: 200px !important;
//   }

//   .ant-tree-list-holder {
//     overflow: auto;
//     overflow-x: hidden;
//     height: 40vh;
//   }

//   .ant-tabs-content-holder {
//     overflow: auto;
//     height: 50vh;
//   }
// }
shaoan123's avatar
shaoan123 committed
278

279 280 281
// .ant-modal-content {
//   border-radius: 5px;
// }
282

283 284 285 286
// .ant-modal-header {
//   border-radius: 5px 5px 0 0;
//   padding: 28px 40px;
// }
287

288 289 290 291
// .ant-modal-close {
//   top: 14px;
//   right: 20px;
// }
292

293 294 295 296
// .ant-modal-footer {
//   border: none;
//   padding: 28px 40px;
// }
297

298 299 300 301
// .ant-modal-footer .ant-btn+.ant-btn:not(.ant-dropdown-trigger) {
//   margin-bottom: 0;
//   margin-left: 15px;
// }
302

shaoan123's avatar
shaoan123 committed
303 304 305
// .ant-form-horizontal .ant-form-item-control {
//     margin-left: 10px;
// }
皮倩雯's avatar
皮倩雯 committed
306 307 308 309 310 311 312 313 314
.linkDrowp {
  position: absolute;
  top: 0;
  left: 94.6%;
  width: 1rem;
  height: 100%;
  display: flex;
  align-items: center;
}
315

皮倩雯's avatar
皮倩雯 committed
316 317 318 319
.title {
  display: flex;
  align-items: center;
  width: 100%;
320
}
321

皮倩雯's avatar
皮倩雯 committed
322 323
.tip {
  display: none;
324
}
325

皮倩雯's avatar
皮倩雯 committed
326 327 328 329
.fs {
  font-size: 18px;
  margin-left: 10px;
}
330

皮倩雯's avatar
皮倩雯 committed
331 332
.title:hover {
  .tip {
shaoan123's avatar
shaoan123 committed
333 334
    display: flex;
    align-items: center;
皮倩雯's avatar
皮倩雯 committed
335
    justify-content: flex-end;
shaoan123's avatar
shaoan123 committed
336 337
    width: 100%;
  }
皮倩雯's avatar
皮倩雯 committed
338
}
339

皮倩雯's avatar
皮倩雯 committed
340 341 342 343 344 345
.titleText {
  width: 12rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
346

347 348 349 350
// .ant-popover-inner {
//   border-radius: 10px;
//   background-color: rgba(255, 255, 255, 0.788);
// }
351

352 353 354
// .ant-popover-inner-content {
//   padding: 10px 10px;
// }
皮倩雯's avatar
皮倩雯 committed
355

356 357 358
// .ant-popover-message>.anticon {
//   top: 7.0005px;
// }
359

皮倩雯's avatar
皮倩雯 committed
360 361
.listCard {
  display: flex;
362

363 364 365 366
  .ant-checkbox-group-item {
    width: 100%;
  }

皮倩雯's avatar
皮倩雯 committed
367 368
  .cardItem {
    padding: 0.5rem;
shaoan123's avatar
shaoan123 committed
369
  }
370

皮倩雯's avatar
皮倩雯 committed
371
  .cardContent {
邓超's avatar
邓超 committed
372
    height: 40rem;
皮倩雯's avatar
皮倩雯 committed
373
    overflow-y: scroll;
皮倩雯's avatar
皮倩雯 committed
374
    width: 21rem;
shaoan123's avatar
shaoan123 committed
375
  }
376

皮倩雯's avatar
皮倩雯 committed
377 378 379 380
  .cardItemData {
    padding: 1rem;
    border: 1px solid #b5b8c8;
    margin-bottom: 1rem;
shaoan123's avatar
shaoan123 committed
381 382
  }
}
383

皮倩雯's avatar
皮倩雯 committed
384 385
.sortable-ghost {
  border-bottom: 2px dashed #1890ff;
shaoan123's avatar
shaoan123 committed
386
}
皮倩雯's avatar
皮倩雯 committed
387 388 389

.doctorTable {
  margin-bottom: 16px;
390

邓超's avatar
邓超 committed
391 392 393 394
  .cardContent {
    height: 40rem;
    overflow-y: scroll;
    width: 19.5rem;
皮倩雯's avatar
皮倩雯 committed
395
  }
shaoan123's avatar
shaoan123 committed
396
}
397

皮倩雯's avatar
皮倩雯 committed
398 399 400 401
.formData {
  height: calc(100vh - 170px);
  overflow-y: scroll;
  padding-right: 20px;
402 403

  .ant-form-item-label>label.ant-form-item-required:not(.ant-form-item-required-mark-optional)::before {
皮倩雯's avatar
皮倩雯 committed
404
    display: none;
shaoan123's avatar
shaoan123 committed
405
  }
邓超's avatar
邓超 committed
406

shaoan123's avatar
shaoan123 committed
407 408 409
  .doctorTable {
    margin-bottom: 16px;
  }
410

皮倩雯's avatar
皮倩雯 committed
411 412 413
  .filed_listItem {
    display: flex;
    height: 3.6rem;
414

皮倩雯's avatar
皮倩雯 committed
415 416 417 418 419 420 421 422 423 424
    .ant-btn-icon-only {
      width: 32px;
      height: 32px;
      /* padding: 2.4px 0; */
      font-size: 16px;
      border-radius: 2px;
      vertical-align: -1px;
      display: flex;
      align-items: center;
      justify-content: center;
shaoan123's avatar
shaoan123 committed
425
    }
皮倩雯's avatar
皮倩雯 committed
426
  }
427
}