#plugin-list {
    list-style: none;
    padding: 0;

    li {
        display: block;
        padding: 10px;

        &:nth-child(2n) {
            background: #eeeeee;
        }

        &:nth-child(2n + 1) {
            background: #ffffff;
        }

        .btn {
            margin: 10px 0;
        }

        p {
            margin: 0;
        }

        .plugin-name {
            font-size: 14px;
            font-weight: bold;
        }
    }
}

.app-grid--blank-slate {
    margin: auto;

    .app-card-item {
        margin-bottom: 20px;
    }

    .app-card-item:nth-child(2n+1), .haravan-apps .app-card-item:nth-child(3n+1), .haravan-apps .app-card-item:nth-child(4n+1) {
        clear: none;
    }

    .app-item {
        padding: 0;
        box-sizing: border-box;
        border: none !important;
        overflow: hidden;
        border-radius: 3px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
        max-height: 270px;
        width: 310px;
        background: #ffffff;

        .app-icon {
            display: block;
            margin: 0 auto;
            max-width: 310px;
            height: 100px;
            background-color: #fdcd09;
            border-radius: 3px 3px 0 0;
            overflow: hidden;

            img {
                max-width: 100%;
            }
        }

        .app-details {
            background: #ffffff;
            padding: 10px 10px 5px;
            position: relative;

            .app-name {
                margin: 0 0 5px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                font-size: 14px;
                font-weight: bold;
                color: #333333;
                line-height: inherit;
            }
        }

        .app-footer {
            background: #f5f5f5;
            border-top: 1px solid #e8e8e8;
            padding-left: 10px;
            padding-bottom: 12px;
            position: relative;

            .app-description {
                border-top: 1px solid #eeeeee;
                margin-left: -10px;
                padding-left: 10px;
                padding-top: 5px;
                padding-right: 10px;
                height: 30px;
                color: #aaaaaa;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

            .app-actions {
                margin-top: 4px;
            }
        }
    }

    .app-item:hover {
        .app-details {
            color: #59a4d2;
        }

        .app-name {
            color: #79ac2a;
        }
    }
}
