mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	Fix #3893
This commit is contained in:
		| @@ -147,12 +147,17 @@ | ||||
|                                 <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"> | ||||
|                                     <div class="progress budgeted_bar" data-id="{{ budget.id }}" data-budgeted="{{ budget.budgeted }}" | ||||
|                                          data-available="{{ budget.amount }}" data-currency="{{ budget.transaction_currency.id }}"> | ||||
|                                         <div class="progress-bar progress-bar-danger" data-id="{{ budget.id }}" role="progressbar" aria-valuenow="0" | ||||
|                                         {# red: the exact amount of the available budget, if more has budgeted. #} | ||||
|                                         <div class="progress-bar progress-bar-danger" data-id="{{ budget.id }}" role="progressbar" aria-valuenow="10" | ||||
|                                              aria-valuemin="0" | ||||
|                                              aria-valuemax="100" style="width: 0;"></div> | ||||
|                                         <div class="progress-bar progress-bar-warning" data-id="{{ budget.id }}" role="progressbar" aria-valuenow="10" | ||||
|  | ||||
|                                         {# orange: overbudgeted amount #} | ||||
|                                         <div class="progress-bar progress-bar-warning" data-id="{{ budget.id }}" role="progressbar" aria-valuenow="0" | ||||
|                                              aria-valuemin="0" | ||||
|                                              aria-valuemax="100" style="width: 0;"></div> | ||||
|  | ||||
|                                         {# budgeted amount if enough or les #} | ||||
|                                         <div class="progress-bar progress-bar-info" data-id="{{ budget.id }}" role="progressbar" aria-valuenow="0" | ||||
|                                              aria-valuemin="0" | ||||
|                                              aria-valuemax="100" style="width: 0;"></div> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user