/*
 * angular-table-resize
 * https://github.com/tympanix/angular-table-resize
 * - minimal stylesheet
 */

 table.rz-table {
   /*table-layout: fixed;*/
   border-collapse: separate;
   width:100%!important;
 }

table.rz-table th {
    position: relative;
    min-width: 200px !important;
    width: 100%;
}

table.rz-table th .rz-handle {
    width: 10px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    cursor: ew-resize !important;
}

table.rz-table th .rz-handle.rz-handle-active {
    border-right: 1px dotted #000;
}
