SchemeConfig.less 4.07 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 50 51 52
.tileBtn {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 0 0 2rem;
}
53

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
.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;
  }
}

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

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

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

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

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

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

254 255 256
.solutionContainer {
  .ant-table-body {
    height: calc(100vh - 250px) !important;
257
    border-bottom: 1px solid #f0f0f0;
258 259
  }
}
260

皮倩雯's avatar
皮倩雯 committed
261 262 263 264 265 266
.titleText {
  width: 700px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
267

皮倩雯's avatar
皮倩雯 committed
268 269 270 271 272
.title1 {
  display: flex;
  align-items: center;
  width: 100%;
}
273

274 275 276
// .solutionConfig {
//   height: calc(100% - 30px);
// }
277 278
.treeHeight {
  .ant-tree-list-holder {
皮倩雯's avatar
皮倩雯 committed
279 280
    overflow: auto;
    height: 638px !important;
281
  }
皮倩雯's avatar
皮倩雯 committed
282
}
283

皮倩雯's avatar
皮倩雯 committed
284 285 286
.clickRowStyle {
  background: #cfe7fd;
}
287

288 289 290
// .solutionConfig {
//   height: calc(100% - 30px);
// }
291 292 293
.schemeBox {
  height: calc(100% - 51px);
}