flow.less 3.04 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
    .processTitle {
      font-size: 15px;
      font-weight: bold;
      color: #333e51;
    }
28

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

邓超's avatar
邓超 committed
34 35 36 37 38 39 40 41 42 43 44
    .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;
    }
45

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

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

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

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

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

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

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

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

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

邓超's avatar
邓超 committed
94 95 96 97
      .ant-btn {
        vertical-align: middle;
        line-height: 2px;
      }
98 99 100 101
      span {
        display: flex;
        align-items: center;
      }
邓超's avatar
邓超 committed
102
    }
103

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

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

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

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

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

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

邓超's avatar
邓超 committed
141 142
.doctorTable {
  margin-bottom: 16px;
143

邓超's avatar
邓超 committed
144 145
  table {
    width: 100%;
146

邓超's avatar
邓超 committed
147 148 149 150
    td {
      padding: 6px;
      border: 1px solid #e8e8e8;
    }
151

邓超's avatar
邓超 committed
152 153 154 155 156
    thead {
      tr {
        font-weight: 600;
        background: #fafafa;
      }
157

邓超's avatar
邓超 committed
158 159 160 161
      td {
        width: 12rem;
      }
    }
162

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

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

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

184 185 186 187 188 189 190 191 192 193
.timelimitBox {
  height: 600px;

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

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