index.less 3.49 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
.modalContainer {
  .ant-modal-body {
    padding: 0;
  }
  .ant-modal-header {
    padding: 28px 16px;
  }
  .pageContent {
    display: flex;
    height: 100%;
    .optionalList {
      position: relative;
      width: 60%;
      border-right: 1px solid #e7e7e7;
      .title {
        position: absolute;
        left: 17px;
        top: 10px;
        font-weight: 700;
        font-size: 14px;
        z-index: 1;
        color: #00070d;
      }
      .tabContent {
皮倩雯's avatar
皮倩雯 committed
25
        height: 590px;
26
        .ant-tabs-content-holder {
皮倩雯's avatar
皮倩雯 committed
27
          height: 523px;
28 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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
        }
      }
      .searchInput {
        position: absolute;
        width: 200px;
        z-index: 1;
        top: 3px;
        right: 40px;
        .anticon svg {
          margin-top: 0px;
        }

        .ant-input,
        .ant-input-affix-wrapper {
          border-top-left-radius: 20px;
          border-bottom-left-radius: 20px;
        }
        .ant-input-group-addon {
          border-top-right-radius: 20px;
          border-bottom-right-radius: 20px;
        }
        .ant-input-search-button {
          width: 40px;
          border-top-right-radius: 20px;
          border-bottom-right-radius: 20px;
        }
      }
      .checkContent {
        display: flex;
        flex-wrap: wrap;
        margin-left: 32px;
        .check {
          .ant-checkbox-wrapper {
            width: 180px;
            margin-bottom: 10px;
            margin-left: 6px;
          }
          .ant-checkbox-wrapper span {
            max-width: 160px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
          }
        }
      }
      .footer {
        padding-left: 25px;
        .ant-pagination {
          border: none;
        }
      }
      .ant-tabs-nav {
        background-color: #f2f1f1;
      }
      .ant-tabs-tab {
        background-color: #f2f1f1;
        color: #666666;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
      }
      .ant-tabs-tab-active {
        background-color: #fff;
        color: #1685ff;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
      }
    }
    .selectedList {
      position: relative;
      width: 40%;

      .header {
        height: 40px;
        width: 100%;
        background-color: #f2f1f1;
        .title {
          position: absolute;
          left: 17px;
          top: 10px;
          font-weight: 700;
          font-size: 14px;
          z-index: 1;
          color: #00070d;
        }
        .tagHead {
          display: flex;
          position: absolute;
          top: 10px;
          left: 88px;
          .tagContent {
            display: flex;
            align-items: center;
            margin-right: 11px;
          }
          .tagRol,
          .tagOrg,
          .tagSite {
            width: 10px;
            height: 3px;

            margin-right: 5px;
          }
          .tagRol {
            background-color: #87e8de;
          }
          .tagOrg {
            background-color: #ffd591;
          }
          .tagSite {
            background-color: #a785dd;
          }
        }
      }
      .selectBox {
皮倩雯's avatar
皮倩雯 committed
142
        height: 528px;
143 144 145 146 147 148 149 150 151 152 153 154 155
        padding: 10px;
        overflow-y: scroll;
        .selectContent {
          display: flex;
          flex-wrap: wrap;
          flex-direction: row;
          .selectValue {
            margin-bottom: 15px;
          }
        }
      }
    }
  }
156 157 158
  .ant-empty-normal {
    margin: auto;
  }
皮倩雯's avatar
皮倩雯 committed
159 160 161 162
  .ant-divider-horizontal {
    margin-top: 0px;
    margin-bottom: 10px;
  }
163
}