flowNode.less 3.22 KB
Newer Older
邓超's avatar
邓超 committed
1 2 3 4
// 节点配置
.NodeContent {
  position: relative;
  width: 100%;
5 6
  // height: calc(100vh - 74px);
  height: 100%;
邓超's avatar
邓超 committed
7 8
  min-width: 800px;
  background: white;
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46

  // 表格样式
  .ant-table-pagination {
    padding-right: 12px;
    background: white;
    margin: 1px 0;
    padding: 8px;
    padding-right: 20px;
  }

  .ant-table-thead tr th {
    font-weight: 600;
    color: rgba(0, 0, 0, 0.85);
  }

  .ant-table-cell {
    // text-align: center;
    overflow: hidden;
    white-space: nowrap;
  }

  .ant-table-body {
    // height: calc(100vh - 160px);
    // border-right: 1px solid rgb(240, 240, 240);
    // overflow: auto !important;
  }

  .ant-pagination {
    z-index: 999;
    border-top: 1px solid #f0eded;
  }

  .unfoldTable {
    .ant-table {
      margin-left: -9px !important;
    }
  }

邓超's avatar
邓超 committed
47 48 49 50 51
  .header {
    display: flex;
    justify-content: space-between;
    height: 50px;
    line-height: 50px;
52

邓超's avatar
邓超 committed
53 54 55 56 57 58
    .nodeTitle {
      font-size: 18px;
      color: #0072ff;
      font-weight: bold;
      margin-left: 10px;
    }
59

邓超's avatar
邓超 committed
60 61
    .buttonBox {
      margin-right: 10px;
62

邓超's avatar
邓超 committed
63 64 65 66 67 68 69 70 71 72
      .ant-btn {
        vertical-align: middle;
        line-height: 1px;
      }
    }
  }
}

// 编辑节点表单
.formData {
皮倩雯's avatar
皮倩雯 committed
73
  height: calc(100vh - 162px);
邓超's avatar
邓超 committed
74
  overflow-y: scroll;
75

皮倩雯's avatar
皮倩雯 committed
76 77 78
  .ant-radio-wrapper {
    min-width: 130px;
  }
79

邓超's avatar
邓超 committed
80 81 82 83 84
  .filedListItem {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
85

邓超's avatar
邓超 committed
86 87 88 89 90 91 92 93 94 95 96 97 98
    .ant-btn-icon-only {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 82px;
      margin-left: 10px;
    }
  }
}

// 字段集选择
.fieldContent {
  display: flex;
99

邓超's avatar
邓超 committed
100 101 102 103 104 105 106
  .willSelectBox {
    width: 50%;
    height: 600px;
    overflow-y: scroll;
    padding: 8px;
    border-right: 1px solid rgb(153, 187, 232);
    box-sizing: border-box;
107

邓超's avatar
邓超 committed
108 109 110
    .cardContent {
      height: 530px;
      overflow-y: scroll;
111

邓超's avatar
邓超 committed
112 113 114 115 116 117
      .cardBox {
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid #b5b8c8;
        box-sizing: border-box;
      }
118 119 120 121 122 123

      .filedList {
        .ant-checkbox-wrapper {
          width: 100%;
        }
      }
邓超's avatar
邓超 committed
124 125
    }
  }
126

邓超's avatar
邓超 committed
127 128 129 130 131
  .hasSelectBox {
    width: 50%;
    height: 600px;
    padding: 8px 8px 8px 12px;
    box-sizing: border-box;
132

邓超's avatar
邓超 committed
133 134
    .doctorTable {
      margin-bottom: 16px;
135 136
      height: 530px;
      overflow-y: scroll;
邓超's avatar
邓超 committed
137 138
    }
  }
139

邓超's avatar
邓超 committed
140 141 142
  .header {
    margin: 0px 0px 10px;
    background-color: rgb(223, 232, 246);
143

邓超's avatar
邓超 committed
144 145 146 147 148
    .headDivider {
      margin-bottom: 10px;
      background-color: #dfe8f6;
    }
  }
149

邓超's avatar
邓超 committed
150 151 152 153
  .cardDivider {
    margin-bottom: 10px;
    font-weight: 700;
    color: #15428b;
154
    line-height: 100%;
邓超's avatar
邓超 committed
155
    border-top-color: #99bbe8;
156

157 158 159 160 161 162 163
    .groupName {
      display: inline-block;
      margin-right: 10px;
      max-width: 200px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
164 165 166 167 168
      vertical-align: middle;
    }

    .ant-checkbox-wrapper {
      vertical-align: middle;
169
    }
邓超's avatar
邓超 committed
170 171
  }
}
邓超's avatar
邓超 committed
172 173 174 175 176

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

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

186 187 188 189 190 191 192 193 194 195
.auxiliaryViewBox {
  height: 600px;

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

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