Hi there,
Just for everybody who runs into the same issue I want to post my
problem here nad the solution that I found:
I had a problem with the __style__ option in the reports in Trac
0.10.4. I tried to have all tickets matching a crtiteria bolded, but
it didn't work. It took me a while to figure out why it is not
working. In the trac.css there is a style defined for the td element.
The style is defined like this:
body, th, td {
font: normal 13px verdana,arial,'Bitstream Vera Sans',helvetica,sans-
serif;
}
see http://trac.edgewall.org/browser/branches/0.10-stable/htdocs/css/trac.css
The font setting 'normal' in the css for font-style overwrites the css
setting (font-style: bold;) in the <tr> element for the row that
matches my criteria. So I changed the trac.css to the following:
body, th, td {
font-size: 13px;
font-family: verdana,arial,'Bitstream Vera Sans',helvetica,sans-serif;
}
That solved my problem and I have now bolded lines in my report.
Should I open a bug for this?
Best,
Johannes
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac
Users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---