style.less 693 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 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
.trun_to_table_div{
    margin-top: 12px;
}
.show_checked_user_div{
    border: 1px solid #e8e8e8;
    animation: ani .5s;
    padding: 12px 12px;
    width: 752px;
}
.show_recall_user_div{
    animation: ani .5s;
    padding: 12px 12px;
    width: 752px;
}
.table_post_name{
    cursor: initial;
    width: 200px;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}
@keyframes ani {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
:global{
    #trun_to_table .ant-table-thead tr th{
        background-color: #fff;
    }
}
.spin_div{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}