Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titleCSS
linenumberstrue
<style>
    body .dataList td.row_action {
        display: inline-block;
        float: left;
        padding: 0 !important;
    }
     
    th.row_action.footable-visible {
        display: table-cell;
    }
  
    .row_action_inner a {
        padding: 10px;
        float: left;
    }
     
    td.row_action.footable-visible.footable-last-column {
        display: table-cell;
        float: none;
    }
 
    th.row_action.footable-visible {
        display: none !important;
    }
    
    th.row_action.footable-visible:nth-last-child(2){
        display: table-cell !important;
    }
    
    th.row_action.footable-visible.footable-last-column {
        display: table-column !important;
    }


</style>