table.less 1.46 KB
Newer Older
1
.party-table{
xulili's avatar
xulili committed
2
  height: calc(100% - 130px);  
xulili's avatar
xulili committed
3 4 5
  &.noAdd{
    height: calc(100% - 100px);  
  }
6 7 8 9 10 11 12 13 14 15 16
  .el-table__header-wrapper{
      border-radius: 8px 8px 0 0 ;
        .el-table__header{
            tr,th{
                background-color: @party-red;
                color: @party-table-header-color;
                font-size: 16px;
            }
        }
    }
    .el-table__body{
xulili's avatar
xulili committed
17
        color: @font-color;
18 19 20 21 22 23
        tr{
            &:nth-child(even){
                background-color: #FDFBF8;
            }
        }
    }
xulili's avatar
xulili committed
24 25 26 27 28
}
.table-btn-group{
    .el-button{
        border: none;
        padding: 0;
xulili's avatar
xulili committed
29 30 31 32
        &.is-circle{
            padding: 0;
            background-color: transparent;
        }
xulili's avatar
xulili committed
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
    }
}
.icon-table{
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


.passed,
.rejected{
    width: 80px;
    height: 28px;
    border-radius: 28px;
    font-size: 16px;
    &.is-disabled{
        background: rgba(0,0,0,0.10);
        color: #999999;
        &:hover{
            background: rgba(0,0,0,0.10);
            color: #999999;
        }
    }
}
.passed{
    background-color: #F4EDE3;
    color: @party-btn-color;
    &:hover{
        background-color: #F4EDE3;
        color: @party-btn-color;
    }
}
.rejected{
    background: rgba(155,30,35,0.10);
    color: @party-red;
    &:hover{
        background: rgba(155,30,35,0.10);
        color: @party-red;
    }
75
}