Hi Developers,
I am at a loss in finding how get the font size in the column describing the task to follow the stylesheet. It seems that the font-size is hard coded (please see attached partial screenshot). Searching the source code i can not find where it is determined. I'd like to fix this but i need some help with this.
my stylesheet is as follows:
/* This is the text label of a cell. */
.tj_table_cell_label {
font-size:12px;
vertical-align:top;
padding-top:1px;
}
I found the following code in line 75 and following in /lib/taskjuggler/reports/ReportTableLine.rb
------
# Return this line as a set of XMLElement that represent the line in HTML.
def to_html
style = ""
style += "height:#{@height}px; " if @table.equiLines
style += "font-size:#{@fontSize}px; " if @fontSize
tr = XMLElement.new('tr', 'class' => 'tabline', 'style' => style)
@cells.each { |cell| tr << cell.to_html }
tr
end
-----
Seems to me that there is a @fontsize defined or set somewhere, but i can not find and fix it.
Much appreciated,
Bas
