Page 1 of 1

Mantis Bug Tracker 1.2.6 Theme to be shared with others

Posted: 08 Sep 2011, 20:15
by Vidhe
Some basic CSS adaptations done on version 1.2.6. See attached files for visual results + CSS file included with txt extension.
Blue theme with matching status colors

Changing the status colors can be done in the 'config_inc.php' file. We use less statuses and for each of them, we have defined a specific color.
These are the lines of code we added to the 'config_inc' file to obtain the status colors

Code: Select all

	$g_status_enum_string = '10:new,20:feedback,50:assigned,51:committed,80:resolved,90:closed';
	 #default statuses of Mantis: '10:new,20:feedback,30:acknowledged,40:confirmed,50:assigned,80:resolved,81:delivered,82:check ko,83:check ok,90:closed';
	 
	 # --- status color codes ----------
	 $g_status_colors  = array( 	
		'new'  	 		=> '#98B5CC',  	# bleu,
		'feedback'  		=> '#ffd850',  	# orange  
		'acknowledged' 	=> '#ffd850',  	# orange
		'confirmed' 		=> '#ffffb0',  	# yellow
		'assigned' 		=> '#BAE8BA',	# light green
		'committed'  	=> '#7EE27E',  	# green
		'resolved'	  	=> '#59BF59',  	# dark green
		'closed'  		=> '#479747'); 	# darker green

Re: Mantis Bug Tracker 1.2.6 Theme to be shared with others

Posted: 09 Sep 2011, 14:03
by cas
Like this theme, so do our users :D