SchemeConfig.less 4.21 KB
Newer Older
1 2
.container {
  width: 100%;
3
  height: 100%;
4 5 6
  background-color: #ffffff;
  padding: 0.8rem;
  display: flex;
7 8 9 10 11

  .ant-tabs-content {
    height: 100%;
  }

12 13 14
  .ant-table {
    min-height: 15rem !important;
  }
15

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

21
  overflow-y: scroll;
22

23
  .ant-input-number-input {
24
    background-color: #ffffff;
25 26
    color: #000000;
  }
27

28 29 30 31
  .ant-card-body {
    padding: 12px 24px 24px 25px;
  }
}
32

33 34 35 36
.imgList {
  display: flex;
  flex-wrap: wrap;
}
37

38
.imgItem {
皮倩雯's avatar
皮倩雯 committed
39 40 41
  border: 3px solid#4699f4;
  border-radius: 5px;
}
42

皮倩雯's avatar
皮倩雯 committed
43 44
.imgHidden {
  border: none;
45
}
46

47 48 49
.tileBtn {
  display: flex;
  justify-content: flex-end;
50
  align-items: center;
51 52 53
  width: 100%;
  padding: 0 0 2rem;
}
54

55
.schemeName {
56
  width: 68px;
57 58
  margin-right: 0.8rem;
  font-weight: bold;
59 60
}

61 62
.schemeItem,
.schemeBtn {
63 64 65 66
  width: 302px;
  display: flex;
  align-items: center;
}
67

68 69 70
.schemeBtn1 {
  width: 260px;
  justify-content: center;
71 72
  display: flex;
  align-items: center;
73
}
74

75
.schemeBtn {
76
  width: 234px;
77
  justify-content: center;
78 79
  display: flex;
  align-items: center;
80
}
81

82 83 84 85 86 87 88
.mapItem {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 4px;
  height: 2.2rem;
  align-items: center;
  margin: 0.5rem 0;
89 90
  // width: 14.5rem;
}
91

92 93 94 95 96 97 98 99
.mapItem1 {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 4px;
  height: 2.2rem;
  align-items: center;
  margin: 0.5rem 0;
  width: 18.8rem;
100
}
101

102 103 104 105 106 107 108 109 110 111
.defaultTile {
  background: #ccc;
  color: white;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
  width: 3rem;
  justify-content: center;
}
112

113 114 115 116 117 118
.defaultTile1 {
  background: #4699f4;
  color: white;
  height: 100%;
  display: flex;
  align-items: center;
119
  width: 41px;
120 121
  justify-content: center;
}
122

123
.mapText {
124
  width: 14rem;
125
  text-align: center;
126 127 128 129 130 131
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-left: 5px;
  padding-right: 5px;
}
132

133 134 135 136 137 138 139 140
.mapText1 {
  width: 13rem;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-left: 5px;
  padding-right: 5px;
141
}
142

143
.mapIcon {
144
  margin-left: 4px;
145 146 147 148
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
149 150
  margin-top: 5px;
}
151

152 153 154 155 156 157 158
.mapIcon1 {
  margin-left: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-top: 5px;
159
}
160

161 162
.activeTile {
  background-color: #4699f4;
163
}
164

165
.dropList {
166 167 168 169 170
  position: absolute;
  right: 2%;
  top: 25%;
  color: rgba(0, 0, 0, 0.25);
  z-index: 99;
171
}
172

173 174 175 176 177
.divider {
  display: flex;
  align-items: center;
  line-height: 100%;
  padding: 0.5rem;
178

179 180 181 182
  .dividerIcon {
    margin-left: 0.8rem;
    color: #4699f4;
    cursor: pointer;
183
  }
184 185 186 187 188
}

.cardsList {
  display: flex;
  flex-wrap: wrap;
189
  height: 100%;
190 191
  overflow-y: scroll;
}
192

193 194 195 196
.cardsList1 {
  display: flex;
  flex-wrap: wrap;
}
197

198
.cardItem {
199 200
  width: 21rem;
  height: 22rem;
201 202
  margin: 0 2rem;
}
203

204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
.pipeNetwork {
  height: 100%;

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

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

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

  .ant-table-body {
    height: 100%;
    border-right: 1px solid #f0f0f0;
    overflow: auto;
  }
}

226
.tileContainer {
227
  height: 100%;
228
  overflow-y: scroll;
229 230 231 232 233 234 235 236 237 238 239 240 241

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

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

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

242
  .ant-table-body {
243
    height: 100%;
244
    border-right: 1px solid #f0f0f0;
245
    overflow: auto;
246 247
  }
}
248

249 250 251 252 253
.TileConfigContainer {
  .ant-card-head {
    background-color: #ecf5ff;
  }
}
254

255 256 257
.solutionContainer {
  .ant-table-body {
    height: calc(100vh - 250px) !important;
258
    border-bottom: 1px solid #f0f0f0;
259
  }
260 261 262 263 264 265 266
  .tableContainer {
    display: flex;
    justify-content: space-between;
    .tableContent {
      width: 49%;
    }
  }
267
}
268

皮倩雯's avatar
皮倩雯 committed
269 270 271 272 273 274
.titleText {
  width: 700px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
275

皮倩雯's avatar
皮倩雯 committed
276 277 278 279 280
.title1 {
  display: flex;
  align-items: center;
  width: 100%;
}
281

282 283 284
// .solutionConfig {
//   height: calc(100% - 30px);
// }
285 286
.treeHeight {
  .ant-tree-list-holder {
皮倩雯's avatar
皮倩雯 committed
287 288
    overflow: auto;
    height: 638px !important;
289
  }
皮倩雯's avatar
皮倩雯 committed
290
}
291

皮倩雯's avatar
皮倩雯 committed
292 293 294
.clickRowStyle {
  background: #cfe7fd;
}
295

296 297 298
// .solutionConfig {
//   height: calc(100% - 30px);
// }
299 300 301
.schemeBox {
  height: calc(100% - 51px);
}