@import "effects";
@import "variables";

smart-table {
    th[field] {
        overflow: visible;
        cursor: pointer;

        &.asc > :after, &.desc > :after {
            color: $color-font;
            opacity: 1;
        }

        &.asc > :after {
            content: 'arrow_drop_up';
        }

        &.desc > :after {
            content: 'arrow_drop_down';
        }

        & > :after {
            font-family: 'Material Icons';
            content: 'arrow_drop_down';
            position: absolute;
            color: $color-spacer;
            font-size: 1.5em;
            margin-top: -2px;
            opacity: 0
        
        }
        &:hover > :after {
            opacity: 1;
        }
    }

    tr[vn-anchor] {
        @extend %clickable;
    }

    .actions-left, 
    .actions-right {
        display: flex;

        .button-group {
            display: flex;
            box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .3);

            & > vn-button {
                box-shadow: 0 0 0 0
            }
        }
    }

    .actions-left {
        justify-content: flex-start;
        
        slot-actions > vn-button,
        & > vn-button,
        .button-group {
            margin-right: 10px
        }

        slot-actions {
            display: flex
        }
    }

    .actions-right {
        justify-content: flex-end;
        & > vn-button,
        .button-group {
            margin-left: 10px
        }
    }

    vn-tbody a[ng-repeat].vn-tr:focus {
        background-color: $color-primary-light
    }

    .new-row {
        background-color: $color-success-light
    }

    .changed-row {
        background-color: $color-primary-light
    }
}

.smart-table-columns {
    h6 {
        color: $color-font-secondary
    }

    & > vn-horizontal {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    vn-check {
        flex: initial;
        width: 50%
    }
}