has-panel-list-list.less 1.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
// this is less

.app-list {
    height:100%;
    flex-grow: 1;
    overflow-y: auto;
    .el-collapse-item__header.is-active{
        color: #409eff;
        background-color: #ecf5ff;
    }
11 12 13 14 15 16 17 18 19
    .el-collapse{
        .el-collapse-item{
            .el-collapse-item__wrap{
                .el-collapse-item__content{
                    padding: 10px 0 10px 0;
                }
            }
        }
    }
20 21
    .app-list-item {
        line-height: 34px;
22
        padding: 12px 6px;
23 24 25 26
        min-height: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
27 28
        border-bottom: 1px solid #f0f0f0;
        .app-list-item-content {
29
            width: 70%;
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
            display: flex;
            align-items: center;
            .item-icon {
                width: 40px;
                height: 40px;
                margin-right: 14px;
                img {
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                }
            }
            .item-content-text {
                display: flex;
                flex-direction: column;
                .item-text {
                    font-size: 18px;
                    font-weight: bold;
                }
                .item-subtext {
                    color: #8c8c8c;
                }
            }
        }
        .app-list-item-date {
            position: relative;
            color: #8c8c8c;
        }
58 59 60
    }
    .app-list-item.isSelect {
        background: #ecf5ff;
61 62
        border-radius: 2px;
        border-color: rgb(197, 197, 197);
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
    }
    .app-list-item:hover {
        background: #ecf5ff;
    }
    .loadmore {
        text-align: center;
        padding: 10px;
        text-decoration: underline;
        color: #82bff7;
        cursor: default;
    }
}
.app-list-empty {
    height:100%;
    color: #909399;
    display: flex;
    justify-content: center;
    align-items: center;
}