﻿.tabelleJQuery > thead > tr {
    /* "height:0 !important;" utile per togliere il bordino verde al di sotto dei titoli della tabella*/
    height: 0 !important;
    background-color: #43ad74;
    color: white;
    border: 1px;
    border-color: black;
    border-style: solid;
    border-left: none;
    border-top: none;
    border-right: none;
}

    .tabelleJQuery > thead > tr > th {
        font-weight: normal;
    }

    /*
    Cambiato le icone di Ordinamento fornite da DataTables js con altre free fornite da FontAwesome
    che sono state scaricate e copiate in App_Themes->images
*/
    .tabelleJQuery > thead > tr .sorting {
        /*background-image: url("/App_Themes/images/sort-solid.png");*/
        background-image: url("");
        background-repeat: no-repeat;
        background-size: 10px 18px;
        background-position-x: 5px;
    }

    .tabelleJQuery > thead > tr .sorting_asc {
        /*background-image: url("/App_Themes/images/sort-up-solid.png");*/
        background-image: url("");
        background-repeat: no-repeat;
        background-size: 10px 18px;
        background-position-x: 5px;
    }

    .tabelleJQuery > thead > tr .sorting_desc {
        /*background-image: url("/App_Themes/images/sort-down-solid.png");*/
        background-image: url("");
        background-repeat: no-repeat;
        background-size: 10px 18px;
        background-position-x: 5px;
    }


.tabelleJQuery > tbody > tr > td {
    /*text-align: center;*/
}

.tabelleJQuery > tbody .even {
    background-color: #e1e1e1;
}

.tabelleJQuery > tbody .odd {
    background-color: white;
}

.tabelleJQuery > tbody :hover {
    background-color: #8dc0de;
}

.tabelleJQuery > tbody .even.selected {
    background-color: #00ff89;
}

.tabelleJQuery > tbody .odd.selected {
    background-color: #00ff89;
}

.stileTabellaModulistica {
    border-color: black;
    border-style: solid;
    border-width: 1px;
    border-left: none;
    border-top: none;
    border-right: none;
}


.dataTables_wrapper .dataTables_filter{
    float:left;
    text-align:left;
}
.dataTables_wrapper .dataTables_paginate{
    padding-top: 1em;
    float: none;
    text-align:center;
}
.dataTables_wrapper .dataTables_length{
    padding-top: 1.25em;
}