File Manager

Path: /home/heznutpr/log.heznutprivate.com/dashboard/scss/lib/

Viewing File: _datatables.scss

/* ###### 4.1 Datatables ###### */

table.dataTable {
  border: 1px solid $gray-300;
  margin-bottom: 15px;

  thead {
    th, td {
      padding: 0.75rem;
      border-bottom: 1px solid $gray-300;
      position: relative;

      &.sorting,
      &.sorting_asc,
      &.sorting_desc {
        background-image: none;

        &::after {
          content: '';
          border: 4px solid transparent;
          border-top-color: $gray-400;
          position: absolute;
          z-index: 10;
          top: 22px;
          right: 8px;
        }

        &::before {
          content: '';
          border: 4px solid transparent;
          border-bottom-color: $gray-400;
          position: absolute;
          z-index: 10;
          top: 12px;
          right: 8px;
        }
      }

      &.sorting_asc::before { border-bottom-color: $gray-800; }
      &.sorting_desc::after { border-top-color: $gray-800; }
    }
  }

  tbody {
    th, td { padding: 0.75rem; }
  }

  &.row-border,
  &.display {
    tbody {
      th, td { border-top-color: $gray-300; }
    }
  }

  &.no-footer { border-bottom-color: $gray-300; }
}

// Number of page filtering wrapper found at top left of datatable
.dataTables_length {
  padding-bottom: 10px;

  .select2-container {
    width: 60px;
    margin-left: 0;
    margin-right: 10px;
  }
}

// Search wrapper found at top right of datatable
.dataTables_filter {
  padding-bottom: 10px;
  padding-right: 5px;

  input {
    @extend .form-control;
  }
}

// Pagination
.dataTables_wrapper {
  .dataTables_info {
    height: 40px;
    display: flex;
    align-items: center;
    padding-top: 0;
  }

  .dataTables_paginate {
    padding-top: 0;

    .paginate_button {
      padding-top: 0.54rem;
      padding-bottom: 0.54rem;
      background-color: $gray-200;
      border-color: transparent;
      border-radius: 0;
      line-height: 1.481;

      &:hover,
      &:focus {
        background-color: $gray-400;
        background-image: none;
        border-color: transparent;
        color: $gray-800 !important;
      }

      &:active { box-shadow: none; }

      &.current {
        &,&:hover,&:focus {
          background-color: theme-color('primary');
          background-image: none;
          border-color: transparent;
          color: #fff !important;
        }
      }

      &.disabled {
        &,&:hover,&:focus {
          background-color: $gray-200;
          color: $gray-500 !important;
        }
      }
    }
  }
}