/**
 * @file ellipsis.scss
 * @author lihuanji
 *
 * 超出几行 ...显示
 */

@mixin ellipsis ($line: 1) {
    overflow: hidden;
    text-overflow: ellipsis;

    @if ($line == 1) {
        white-space: nowrap;
    }
    @else {
        display: -webkit-box;
        -webkit-line-clamp: $line;
        -webkit-box-orient: vertical;
    }
}