Mantis Bug Tracker 1.2.6 Theme to be shared with others

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
Vidhe
Posts: 1
Joined: 08 Sep 2011, 19:42

Mantis Bug Tracker 1.2.6 Theme to be shared with others

Post 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
Attachments
Mantis Summary
Mantis Summary
Screenshot_313 - 09-08.gif (28.12 KiB) Viewed 8375 times
Mantis My view
Mantis My view
Screenshot_312 - 09-08.gif (30.31 KiB) Viewed 8375 times
default.css.txt
(6.39 KiB) Downloaded 851 times
cas
Posts: 1611
Joined: 11 Mar 2006, 16:08
Contact:

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

Post by cas »

Like this theme, so do our users :D
Post Reply