dimensionsConfig.less 1.98 KB
Newer Older
皮倩雯's avatar
皮倩雯 committed
1 2
.container3d {
  width: 100%;
3
  height: 100%;
皮倩雯's avatar
皮倩雯 committed
4 5
  background-color: #ffffff;
  display: flex;
6 7 8 9 10 11 12 13 14

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

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

皮倩雯's avatar
皮倩雯 committed
15
  .ant-table {
16
    height: calc(100% - 70px);
皮倩雯's avatar
皮倩雯 committed
17
  }
18

皮倩雯's avatar
皮倩雯 committed
19
  padding: 0.8rem;
20

皮倩雯's avatar
皮倩雯 committed
21 22 23 24
  .ant-table-thead tr th {
    font-weight: 600;
    color: rgba(0, 0, 0, 0.85);
  }
25

皮倩雯's avatar
皮倩雯 committed
26
  overflow-y: scroll;
27

皮倩雯's avatar
皮倩雯 committed
28
  .ant-input-number-input {
29
    background-color: #ffffff;
皮倩雯's avatar
皮倩雯 committed
30 31
    color: #000000;
  }
32

皮倩雯's avatar
皮倩雯 committed
33 34 35 36
  .ant-card-body {
    padding: 12px 24px 24px 25px;
  }
}
37

皮倩雯's avatar
皮倩雯 committed
38 39 40 41
.imgList {
  display: flex;
  flex-wrap: wrap;
}
42

皮倩雯's avatar
皮倩雯 committed
43 44 45 46 47 48
.imgItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 1rem 1rem 0;
}
49

皮倩雯's avatar
皮倩雯 committed
50 51 52 53 54 55
.tileBtn {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 0 0 2rem;
}
56

皮倩雯's avatar
皮倩雯 committed
57 58 59
.schemeName {
  margin-right: 0.8rem;
  font-weight: bold;
60 61
}

皮倩雯's avatar
皮倩雯 committed
62 63 64 65
.schemeItem,
.schemeBtn {
  display: flex;
  align-items: center;
66
}
67

皮倩雯's avatar
皮倩雯 committed
68 69 70
.schemeBtn {
  width: 12rem;
  justify-content: center;
71
}
72

皮倩雯's avatar
皮倩雯 committed
73 74 75 76 77 78 79 80
.mapItem {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 4px;
  height: 2.2rem;
  align-items: center;
  margin: 0.5rem 0;
  width: 14.5rem;
81
}
82

皮倩雯's avatar
皮倩雯 committed
83 84 85 86 87 88 89 90 91 92
.defaultTile {
  background: #ccc;
  color: white;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
  width: 3rem;
  justify-content: center;
}
93

皮倩雯's avatar
皮倩雯 committed
94 95 96 97
.mapText {
  width: 10rem;
  text-align: center;
}
98

皮倩雯's avatar
皮倩雯 committed
99 100 101 102 103 104
.mapIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
105

皮倩雯's avatar
皮倩雯 committed
106 107
.activeTile {
  background-color: #4699f4;
108
}
109

110
.dropList {
皮倩雯's avatar
皮倩雯 committed
111 112 113 114 115
  position: absolute;
  right: 2%;
  top: 25%;
  color: rgba(0, 0, 0, 0.25);
  z-index: 99;
116
}
117

皮倩雯's avatar
皮倩雯 committed
118 119 120 121 122
.divider {
  display: flex;
  align-items: center;
  line-height: 100%;
  padding: 0.5rem;
123

皮倩雯's avatar
皮倩雯 committed
124 125 126 127
  .dividerIcon {
    margin-left: 0.8rem;
    color: #4699f4;
    cursor: pointer;
128
  }
皮倩雯's avatar
皮倩雯 committed
129 130 131 132 133 134
}

.cardsList {
  display: flex;
  flex-wrap: wrap;
}
135

皮倩雯's avatar
皮倩雯 committed
136 137 138 139 140
.cardItem {
  width: 18rem;
  height: 26rem;
  margin: 0 2rem;
}
141

皮倩雯's avatar
皮倩雯 committed
142 143 144 145 146 147
.containerFileds {
  display: flex;
  justify-content: space-between;
  width: 98%;
  border: 1px solid #f0f0f0;
  margin-top: 0.5rem;
148
}