/**
* custom version of 'angular-tablesort.css'
*/

th.tablesort-sortable {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    cursor: pointer;
    /*-------------------------------*/
}

table .tablesort-sortable:after{
    content:"\f0dc";
    float: right;
    margin-top:7px;
    /*---------------------------------------
    see 'glyphicon' class in bootstrap.css*/
    display: inline-block;
    position: relative;
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /*---------------------------------------*/
}

table .tablesort-asc:after{
    content: "\f160";
}

table .tablesort-desc:after{
    content: "\f161";
}


table .tablesort-asc,table .tablesort-desc{
    background-color:#e9ecef;
}

/*
 * Styling for the table row shown in empty tables
 */

/* The row is always added as the first row in a table
   Hide it by default */
.showIfLast {
    display: none;
}

/* Only show it if it is also the last row of the table. */
.showIfLast:last-child {
    display: table-row;
}

.showIfLast td {
    text-align: center;
}