25 lines
		
	
	
		
			583 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			583 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| .footable > thead > tr > th,.footable > thead > tr > td {
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .footable {
 | |
|   /*border-spacing: 0;*/
 | |
|   width: 100%;  
 | |
| }
 | |
| 
 | |
| .footable.breakpoint > tbody > tr > td.expand {
 | |
|   background: url('../../images/plus.png') no-repeat 5px center;
 | |
|   padding-left: 40px;
 | |
| }
 | |
| 
 | |
| .footable.breakpoint > tbody > tr.footable-detail-show > td.expand {
 | |
|   background: url('../../images/minus.png') no-repeat 5px center;
 | |
| }
 | |
| 
 | |
| .footable.breakpoint > tbody > tr:hover:not(.footable-row-detail) {
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .footable > tbody img {
 | |
|   vertical-align:middle;
 | |
| } |