SelectUser.less 1.56 KB
Newer Older
1 2
.pushTestContent {
  display: flex;
3 4
  height: calc(100% - 75px);

5 6 7
  .searchHeader {
    display: flex;
  }
8 9

  .checkScrollBox {
10
    overflow-y: scroll;
11
    height: calc(100% - 82px);
12 13
    margin: 20px 0;
    padding-right: 5px;
14 15

    .checkContainer {
16
      width: 100%;
17 18 19 20 21 22 23 24 25 26 27

      .checkContent {
        display: flex;
        width: 100%;
        flex-direction: column;
        border: 1px solid #c2cdfd;
        border-radius: 5px;
        margin-top: 20px;
        min-height: 50px;
        padding: 0 10px 10px 20px;

28
        .ant-checkbox-wrapper {
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
          background-color: #fff;
        }

        .topCheckbox {
          height: 20px;
          margin: -10px 0 0 0px;
          line-height: 20px;
        }

        .topCheckbox>label :hover {
          font-weight: 600;
        }

        .bottomCheckbox {
          margin-top: 10px;

          .ant-checkbox-wrapper {
            min-width: 150px;
            margin-left: 0;
          }

          // .ant-checkbox-group-item {
          //   min-width: 150px !important;
          // }
          // .ant-checkbox-wrapper {
          //   min-width: 150px !important;
          // }
        }

        .checkdiv {
          display: flex;
          flex-wrap: wrap;
61 62 63 64
        }
      }
    }
  }
65

66
  .leftContent {
67
    width: 100%;
68
  }
69

70 71
  .tableRight {
    margin-left: 10px;
72
    height: 100%;
73 74 75 76 77 78 79 80 81 82 83 84

    .ant-spin-nested-loading {
      height: 100%;

      .ant-table {
        height: 100%;

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

87
  .ant-table-body {
88
    // height: calc(100vh - 290px);
89
  }
90
}