@prefixTabsCls: ~'yy-tabs';

.@{prefixTabsCls} {
    &-nav {
        background-color: @yy-bg-default;
        .clearfix();
    }
    &-tab {
        display: inline-block;
        padding: 0 20px;
        color: @yy-text-primary;
        font-size: @yy-font-size-xs;
        height: 50px;
        line-height: 50px;
        .cursor();

        &-active {
            color: @yy-primary-color;
            position: relative;

            &:after {
                position: absolute;
                background-color: @yy-primary-color;
                width: @yy-font-size-xs;
                margin-left: -6px;
                border-radius: 2px;
                content: '';
                height: 6px;
                bottom: 0;
                left: 50%;
            }
        }
    }
    &-extra {
        .pull-right();
        height: 50px;
        display: flex;
        align-items: center;
        padding-right: 20px;
    }
}