﻿
@media only screen and (max-width: 500px), (min-device-width:500px) and (max-device-width:768px) {

    table, thead, tbody, th, td, tr {
        display: block;
    }

        thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

    tbody {
        margin: 10px;
    }

    tr {
        padding: 10px 5px;
    }

        tr:nth-child(odd) {
            background: #f5f5f5;
        }


    td {
        border: none;
        border-top: none !important;
        position: relative;
    }

        td:before {
            position: absolute;
            top: 0;
            left: 6px;
            /*width: 45%;*/
            padding-right: 10px;
            white-space: nowrap;
        }

        td:nth-of-type(1):before {
            content: " Folder";
            top: 4px;
            font-weight: 500;
        }

    .rowfiles td:nth-of-type(1):before {
        content: "File";
        top: 8px;
        font-weight: 500;
    }

    .rowfiles td:nth-of-type(2):before {
        content: "Action";
        top: 8px;
        font-weight: 500;
    }

    .table td {
        padding-left: 30% !important;
    }

    .container-fluid {
        padding: 0 !important;
    }
}
