I'd like to add new group on the trac roadmap progress bar. To do this I've modified trac.ini file with:
# Definition of an 'rejected' group:
rejected = rejected
rejected.order = 2
rejected.css_class = my
rejected.label = rejected
where I've associated to css_class atribute value my.
Next I've created style.css file with one line only:
table.progress td.my { background: blue; }
The file style.css is read however the colour is not applied. When I change back to the default one i.e.
rejected.css_class = new
the progress bar is updated and displaying yellow colour as expected. However, it not displaying when I use
rejected.css_class = my
Any ides why?