/*******************/
/*Comment widgets*/
/*******************/

.comment-widgets {
    .comment-row {
        border-bottom:1px solid transparent;
        &:last-child{
            border-bottom:0px;
        }
        &:hover,
        &.active {
            background:$transparent-dark-bg; 
        }
    }
}

.comment-text {
    &:hover .comment-footer,
    &.active .comment-footer {
        .action-icons {
            visibility: visible;
        }
    }
    p {
        max-height: 65px;
        width:100%;
        overflow: hidden;        
    } 
}

.comment-footer {
    .action-icons {
        visibility: hidden;
        a {
            padding-left: 7px;
            vertical-align: middle;
            color: $gray-500;
            &:hover,
            &.active {
                color: $info;
            }
        }
    }
}