@import '../style/themes/index.less';
@table-prefix-cls: ~'@{ant-prefix}-table';
.@{table-prefix-cls} {
    &-tbody {
        > tr:nth-child(even) {
            background: @table-row-bg-even;
        }
        > tr:nth-child(odd) {
            background: @table-row-bg-odd;
        }
    }
    &-column-sorter {
        .@{iconfont-css-prefix} {
            color: inherit;
        }
        &-up,
        &-down {
            font-size: 11px;

            &.active {
                color: @primary-color !important;
            }
        }
    }
    td&-column-sort {
        background: unset;
    }
}
