sortable-table.scss 214 B

1234567891011
  1. .table.table-sortable {
  2. thead > tr > th.sort {
  3. cursor: pointer;
  4. &:hover {
  5. color: $dark;
  6. background-color: rgba($primary, $table-striped-bg-factor);
  7. // border-color: $light;
  8. }
  9. }
  10. }