lnternal-func-list-list.less 2.6 KB
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 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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
// 基于 @CONTROL/列表/CONTROL.less.ftl 生成
// this is less

.app-list {
    height:100%;
    flex-grow: 1;
    overflow-y: auto;
    .el-collapse-item__header.is-active{
        color: #409eff;
        background-color: #ecf5ff;
    }
    .el-collapse{
        .el-collapse-item{
            .el-collapse-item__wrap{
                .el-collapse-item__content{
                    padding: 10px 0 10px 0;
                }
            }
        }
    }
    .app-list-item {
        line-height: 34px;
        padding: 12px 6px;
        min-height: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f0f0f0;
        .app-list-item-content {
            width: 70%;
            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;
                width: 80%;
                .item-title {
                    font-size: 18px;
                    font-weight: bold;
                }
                .item-description{
                    height: 34px;
                    overflow: hidden;
                    white-space: nowrap;
                    text-overflow: ellipsis;
                }
                .item-subtext {
                    color: #8c8c8c;
                }
            }
        }
        .app-list-item-date {
            position: relative;
            color: #8c8c8c;
        }
    }
    .app-list-item.isSelect {
        background: #ecf5ff;
        border-radius: 2px;
        border-color: rgb(197, 197, 197);
    }
    .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;
    .quick-toolbar{
        display: inline-block;
        button{
          background: #ebf3fb;
          color: #2575ca;
          border: 0;
      }
    }
}
.list-pagination {
    position: fixed;
    background-color: #fff;
    height: 50px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 5;
}