mirror of
				https://github.com/fspc/Yellow-Bike-Database.git
				synced 2025-10-31 00:45:35 -04:00 
			
		
		
		
	1. Mouseover allows edit of Change Fund. 2. Difference is shown, and stored in db for page reloads.
		
			
				
	
	
		
			46 lines
		
	
	
		
			752 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			752 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| /* sensible UI defaults for transaction views */
 | |
| 
 | |
| /* right-align labels */
 | |
| td > label:not(.payment_type) {
 | |
| 	float: right; 
 | |
| 	padding-right: 5px;
 | |
| }
 | |
| 
 | |
| /* make unimportant buttons into links */
 | |
| input[value=Delete], input[name=date_fill] {
 | |
| 	background:none!important;
 | |
| 	border:none; 
 | |
| 	padding:0!important;
 | |
| 	color: blue;
 | |
| 	/*border is optional*/
 | |
| 	/* border-bottom:1px solid blue; */ 
 | |
| 	cursor: pointer;
 | |
| }
 | |
| 
 | |
| form[name=FormEdit] select:focus { 
 | |
|     color: green;
 | |
| }
 | |
| 
 | |
| .editable_change {
 | |
| 	color: gray;
 | |
| }
 | |
| 
 | |
| .editable_change form {
 | |
| 	display: inline;
 | |
| }
 | |
| 
 | |
| /*
 | |
| input[value=Save]:focus, input[value=Close]:focus {
 | |
| 	background: green;
 | |
| }
 | |
| */
 | |
| 
 | |
| /* distinguish deposits */
 | |
| .deposit, .deposit_calculator {
 | |
| 	background-color: #FFDB58;
 | |
| }
 | |
| 
 | |
| .deposit [type='checkbox'] {
 | |
| 	display: none;
 | |
| }
 |