index.less 3.57 KB
Newer Older
1 2 3 4
.modalContainer {
  .ant-modal-body {
    padding: 0;
  }
5

6 7 8
  .ant-modal-header {
    padding: 28px 16px;
  }
9

10 11 12
  .pageContent {
    display: flex;
    height: 100%;
13

14 15
    .optionalList {
      position: relative;
16
      width: 68%;
17
      border-right: 1px solid #e7e7e7;
18

19 20 21 22 23 24 25 26 27
      .title {
        position: absolute;
        left: 17px;
        top: 10px;
        font-weight: 700;
        font-size: 14px;
        z-index: 1;
        color: #00070d;
      }
28

29
      .tabContent {
皮倩雯's avatar
皮倩雯 committed
30
        height: 590px;
31

32
        .ant-tabs-content-holder {
皮倩雯's avatar
皮倩雯 committed
33
          height: 523px;
34 35
        }
      }
36

37 38 39 40 41 42
      .searchInput {
        position: absolute;
        width: 200px;
        z-index: 1;
        top: 3px;
        right: 40px;
43

44 45 46 47 48 49 50 51 52
        .anticon svg {
          margin-top: 0px;
        }

        .ant-input,
        .ant-input-affix-wrapper {
          border-top-left-radius: 20px;
          border-bottom-left-radius: 20px;
        }
53

54 55 56 57
        .ant-input-group-addon {
          border-top-right-radius: 20px;
          border-bottom-right-radius: 20px;
        }
58

59 60 61 62 63 64
        .ant-input-search-button {
          width: 40px;
          border-top-right-radius: 20px;
          border-bottom-right-radius: 20px;
        }
      }
65

66 67 68 69
      .checkContent {
        display: flex;
        flex-wrap: wrap;
        margin-left: 32px;
70 71 72
        height: 525px;
        overflow-y: scroll;

73 74 75 76 77 78
        .check {
          .ant-checkbox-wrapper {
            width: 180px;
            margin-bottom: 10px;
            margin-left: 6px;
          }
79

80 81 82 83 84 85 86 87
          .ant-checkbox-wrapper span {
            max-width: 160px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
          }
        }
      }
88

89 90
      .footer {
        padding-left: 25px;
91

92 93 94 95
        .ant-pagination {
          border: none;
        }
      }
96

97 98 99
      .ant-tabs-nav {
        background-color: #f2f1f1;
      }
100

101 102 103 104 105 106
      .ant-tabs-tab {
        background-color: #f2f1f1;
        color: #666666;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
      }
107

108 109 110 111 112 113 114
      .ant-tabs-tab-active {
        background-color: #fff;
        color: #1685ff;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
      }
    }
115

116 117 118 119 120 121 122 123
    .selectedList {
      position: relative;
      width: 40%;

      .header {
        height: 40px;
        width: 100%;
        background-color: #f2f1f1;
124

125 126 127 128 129 130 131 132 133
        .title {
          position: absolute;
          left: 17px;
          top: 10px;
          font-weight: 700;
          font-size: 14px;
          z-index: 1;
          color: #00070d;
        }
134

135 136 137 138 139
        .tagHead {
          display: flex;
          position: absolute;
          top: 10px;
          left: 88px;
140

141 142 143 144 145
          .tagContent {
            display: flex;
            align-items: center;
            margin-right: 11px;
          }
146

147 148 149 150 151 152 153 154
          .tagRol,
          .tagOrg,
          .tagSite {
            width: 10px;
            height: 3px;

            margin-right: 5px;
          }
155

156 157 158
          .tagRol {
            background-color: #87e8de;
          }
159

160 161 162
          .tagOrg {
            background-color: #ffd591;
          }
163

164 165 166 167 168
          .tagSite {
            background-color: #a785dd;
          }
        }
      }
169

170
      .selectBox {
皮倩雯's avatar
皮倩雯 committed
171
        height: 528px;
172 173
        padding: 10px;
        overflow-y: scroll;
174

175 176 177 178
        .selectContent {
          display: flex;
          flex-wrap: wrap;
          flex-direction: row;
179

180 181 182 183 184 185 186
          .selectValue {
            margin-bottom: 15px;
          }
        }
      }
    }
  }
187

188 189 190
  .ant-empty-normal {
    margin: auto;
  }
191

皮倩雯's avatar
皮倩雯 committed
192 193 194 195
  .ant-divider-horizontal {
    margin-top: 0px;
    margin-bottom: 10px;
  }
196
}