SelectUser.less 2.19 KB
Newer Older
1 2 3 4
.searchHeader {
  display: flex;
  justify-content: space-between;
}
5
.header {
6
  display: flex;
7 8 9
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
10
}
11
.pushTestContent {
12 13
  .ant-table-body {
    height: calc(100vh - 225px) !important;
14
  }
15
  display: flex;
16
  height: calc(100% - 43px);
17
  .checkScrollBox {
18
    overflow-y: scroll;
19 20
    height: calc(100% - 25px);
    margin: 10px 0px 0px 0px;
21
    padding-right: 5px;
22 23

    .checkContainer {
24
      width: 100%;
邓超's avatar
邓超 committed
25
      overflow: hidden;
26 27 28 29 30 31 32 33 34 35
      .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;

36
        .ant-checkbox-wrapper {
37 38 39 40 41 42 43 44 45
          background-color: #fff;
        }

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

46
        .topCheckbox > label :hover {
47 48 49 50 51
          font-weight: 600;
        }

        .bottomCheckbox {
          margin-top: 10px;
52 53
          display: flex;
          flex-wrap: wrap;
54
          .ant-checkbox-wrapper {
55
            display: flex;
56
            margin-left: 0;
57 58 59 60
            width: 160px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
61
            margin-top: 10px;
62 63
            .ant-checkbox + span {
              display: flex;
64
            }
65 66 67
          }
          .fontlabel {
            display: inline-block;
68
            width: 130px;
69 70 71
            overflow: hidden;
            text-overflow: ellipsis;
            // white-space: nowrap;
72 73 74 75 76 77 78 79 80 81 82 83 84
          }

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

        .checkdiv {
          display: flex;
          flex-wrap: wrap;
85 86 87 88
        }
      }
    }
  }
89

90
  .leftContent {
91
    width: 100%;
92
  }
93

94 95
  .tableRight {
    margin-left: 10px;
96
    margin-top: 10px;
97 98 99 100 101 102 103

    .ant-spin-nested-loading {
      .ant-table {
        .ant-table-container {
        }
      }
    }
104
  }
105

106
  .ant-table-body {
107
    // height: calc(100vh - 290px);
108
  }
109
}