SchemeConfig.less 1.83 KB
Newer Older
1 2
.container{
    width: 100%;
3
    height: calc(100vh - 100px) ;
4 5 6 7 8 9 10
    background-color: #ffffff;
    display: flex;
    padding: 0.8rem;
    .ant-table-thead tr th {
        font-weight: 600;
        color: rgba(0, 0, 0, 0.85);
      }
11
      overflow-y: scroll;
12 13 14 15
      .ant-input-number-input{
          background-color: #ffffff;
          color: #000000;
      }
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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
}
.imgList{
    display: flex;
}
.imgItem{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin:0  1rem 1rem 0;
}
.tileBtn{
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding: 0 0 2rem
}
.schemeName{
    margin-right: 0.8rem;
    font-weight: bold;
}

.schemeItem,.schemeBtn{
    display: flex;
    align-items: center;
}
.schemeBtn{
    width: 12rem;
    justify-content: center;
}
.mapItem{
    display: flex;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 2.2rem;
    align-items: center;
    margin: 0.5rem 0;
    width: 14.5rem;
}
.defaultTile{
    background: #ccc;
    color: white;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
    width: 3rem;
     justify-content: center;

}
.mapText{
    width: 10rem;
    text-align: center;
}
.mapIcon{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.activeTile{
    background-color: #4699f4
77 78 79 80 81 82 83 84
}
.dropList {
    position: absolute;
    right: 2%;
    top: 25%;
    color: rgba(0, 0, 0, 0.25);
    z-index: 99;
}
85 86 87 88 89 90 91 92 93 94 95 96 97 98
.divider{
    display: flex;
    align-items: center;
    line-height: 100%;
    padding: 0.5rem;
    .dividerIcon{
        margin-left: 0.8rem;
        color: #4699f4;   
        cursor: pointer; 
    }
}
.ant-table {
    min-height: 15rem !important;
  }
99 100 101 102 103 104 105 106 107
  .cardsList{
    display: flex;
    flex-wrap: wrap;
  }
  .cardItem{
    width: 18rem;
    height: 18rem;
    margin: 0 2rem;
  }