flow.less 2.99 KB
Newer Older
邓超's avatar
邓超 committed
1 2 3
.flowContainer {
  display: flex;
  width: 100%;
4
  height: 100%;
5
  position: relative;
6

邓超's avatar
邓超 committed
7 8 9 10
  .orgContainer {
    position: relative;
    left: 0;
    top: 0;
11
    height: 100%;
邓超's avatar
邓超 committed
12
    width: 250px;
邓超's avatar
邓超 committed
13
    margin-right: 10px;
邓超's avatar
邓超 committed
14
    transition-property: width;
邓超's avatar
邓超 committed
15 16
    transition-duration: 0.5s;
    white-space: nowrap;
17 18 19 20 21 22

    .ant-card-body {
      height: 100%;
      padding: 12px 24px 24px 10px;
    }

邓超's avatar
邓超 committed
23 24 25 26 27 28
    .processTitle {
      font-size: 15px;
      font-weight: bold;
      color: #333e51;
      padding-left: 14px;
    }
29

邓超's avatar
邓超 committed
30 31 32 33
    .splitLine {
      width: 100%;
      color: #eeecec;
    }
34

邓超's avatar
邓超 committed
35 36 37 38 39 40 41 42 43 44 45
    .listItem {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 14px;
      line-height: 28px;
      font-size: 14px;
      font-weight: 400;
      color: #414e65;
      cursor: pointer;
    }
46

47
    .listHover {
邓超's avatar
邓超 committed
48 49
      background-color: #f5f6f9;
    }
50 51 52 53

    .pickItem {
      background-color: #aed8fa;
    }
54

邓超's avatar
邓超 committed
55 56 57 58 59 60 61 62 63 64 65
    .switcher {
      display: block;
      position: absolute;
      font-size: 18px;
      color: #1890ff !important;
      top: 50%;
      right: 2px;
      transform: translate(0%, -50%);
      z-index: 1;
    }
  }
66

邓超's avatar
邓超 committed
67 68 69
  .orgContainerHide {
    width: 26px;
  }
70

邓超's avatar
邓超 committed
71 72 73
  .processContainer {
    position: relative;
    width: 100%;
74
    height: 100%;
邓超's avatar
邓超 committed
75 76
    min-width: 800px;
    background: white;
77 78 79 80 81 82 83 84 85 86 87 88 89

    .ant-table-wrapper {
      height: calc(100% - 52px);

      .ant-table {
        height: calc(100% - 50px);

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

邓超's avatar
邓超 committed
90 91 92 93
    .buttonList {
      display: flex;
      justify-content: flex-end;
      margin: 10px 10px 10px 0;
94

邓超's avatar
邓超 committed
95 96 97 98 99
      .ant-btn {
        vertical-align: middle;
        line-height: 2px;
      }
    }
100

邓超's avatar
邓超 committed
101 102 103 104 105 106 107
    .ant-table-pagination {
      padding-right: 12px;
      background: white;
      margin: 1px 0;
      padding: 8px;
      padding-right: 20px;
    }
108

邓超's avatar
邓超 committed
109 110 111 112
    .ant-table-thead tr th {
      font-weight: 600;
      color: rgba(0, 0, 0, 0.85);
    }
113

邓超's avatar
邓超 committed
114 115 116 117 118
    .ant-table-cell {
      text-align: center;
      overflow: hidden;
      white-space: nowrap;
    }
119 120 121 122 123 124 125

    // .ant-table-body {
    //   height: calc(100vh - 210px);
    //   border-right: white;
    //   overflow: auto;
    // }

邓超's avatar
邓超 committed
126 127 128 129 130 131
    .ant-pagination {
      z-index: 999;
      border-top: 1px solid #f0eded;
    }
  }
}
132

邓超's avatar
邓超 committed
133 134 135 136
.ant-radio-wrapper {
  min-width: 150px;
  margin-bottom: 2px;
}
137

邓超's avatar
邓超 committed
138 139
.doctorTable {
  margin-bottom: 16px;
140

邓超's avatar
邓超 committed
141 142
  table {
    width: 100%;
143

邓超's avatar
邓超 committed
144 145 146 147
    td {
      padding: 6px;
      border: 1px solid #e8e8e8;
    }
148

邓超's avatar
邓超 committed
149 150 151 152 153
    thead {
      tr {
        font-weight: 600;
        background: #fafafa;
      }
154

邓超's avatar
邓超 committed
155 156 157 158
      td {
        width: 12rem;
      }
    }
159

邓超's avatar
邓超 committed
160 161 162 163 164 165 166
    tbody {
      tr:hover {
        background-color: #ededed;
      }
    }
  }
}
邓超's avatar
邓超 committed
167 168 169 170 171

.buttonList {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
172

邓超's avatar
邓超 committed
173 174 175 176 177 178 179 180
  .ant-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
  }
}

181 182 183 184 185 186 187 188 189 190
.timelimitBox {
  height: 600px;

  .ant-table-wrapper {
    height: 100%;

    .ant-table {
      // height: 100%;
      height: 500px;
    }
邓超's avatar
邓超 committed
191
  }
192
}