﻿/**********************************************

    This file contains the filtering layouts
    for tables and any other filtering

    Sections:
    1: Icon Color Picker
    2: Sorting
    3: Pagination
    4: Search Table

 *********************************************/










/**********************************************

    1. Icon Color Picker

 *********************************************/










.iconColorPicker div {
    display: inline-block;
    width: 28px;
    height: 28px;
    cursor: pointer;
    border-radius: 4px;
    margin-left: -6px;
}

.iconColorPicker div:first-of-type {
    margin-left: 0;
}

.iconColorPicker div i {
    padding-left: 2px;
}

@media (min-width: 1199px) {
  .iconColorPickerContainer {
      padding-right:0;padding-left:7px;
  }
}










/**********************************************

    2. Sorting

 *********************************************/










.table .sortable {
    cursor: pointer;
}

.table .sortable.directionASC:after {
    position:absolute;
	content: "\f0d8";
	font-family: FontAwesome;
    margin-left: 5px;
}

.table .sortable.directionDESC:after {
    position:absolute;
	content: "\f0d7";
	font-family: FontAwesome;
    margin-left: 5px;
    margin-top: -3px;
}










/**********************************************

    3. Pagination

 *********************************************/









.pagination-results-per-page {
    margin-top: 18px;
    margin-bottom: 20px;
}

.pagination-results-per-page select {
    display: inline-block;
    width: 80px;
}








/**********************************************

    4. Search Table

 *********************************************/










.panel-search-table-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

    /* Panel Overrides */
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    opacity: .6;
}

.table-button-column-sm {
    width:50px;
}











