59 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| export default {
 | |
|    table: {
 | |
|       width: '80%',
 | |
|       marginRight: 'auto',
 | |
|       marginLeft: 'auto',
 | |
|    },
 | |
|    tableHeader: {
 | |
|    },
 | |
|    col: {
 | |
|       cursor: 'pointer',
 | |
|       borderBottom: '1px solid #e0e0e0',
 | |
|       paddingBottom: '0.5em',
 | |
|       textAlign: 'left',
 | |
|    },
 | |
|    bodyCol: {
 | |
|       marginTop: '0.5em',
 | |
|    },
 | |
| 
 | |
|    searchSidebar: {
 | |
|       height: '4em',
 | |
|       marginTop: '1em',
 | |
|    },
 | |
|    searchInner: {
 | |
|       top: '0',
 | |
|       right: '0',
 | |
|       left: '0',
 | |
|       bottom: '0',
 | |
|       margin: 'auto',
 | |
|       width: '50%',
 | |
|       minWidth: '280px',
 | |
|       height: '30px',
 | |
|       border: '1px solid #d0d0d0',
 | |
|       borderRadius: '4px',
 | |
|       overflow: 'hidden'
 | |
|    },
 | |
|    searchTextField: {
 | |
|       display: 'inline-block',
 | |
|       width: '95%',
 | |
|       padding: '.3em',
 | |
|       verticalAlign: 'middle',
 | |
|       border: 'none',
 | |
|       background: '#fff',
 | |
|       fontSize: '14px',
 | |
|       marginTop: '-7px',
 | |
|    },
 | |
|    searchIcon: {
 | |
|       width: '15px',
 | |
|       height: '16px',
 | |
|       marginRight: '4px',
 | |
|       marginTop: '7px',
 | |
|    },
 | |
|    searchSVGIcon: {
 | |
|       fill: 'none',
 | |
|       stroke: '#9d9d9d',
 | |
|       strokeLinecap: 'round',
 | |
|       strokeLinejoin: 'round',
 | |
|       strokeMiterlimit: '10',
 | |
|    },
 | |
| } |