Make issues titles in overviews longer
Titles of issues in overview pages are abbreviated, but more space is actually allocated. This leads to unused empty space and missing information from issue titles.
Submitted by Eelco Visser on 20 September 2010 at 15:16
Issue Log
Indeed. The reason is the following: The size of the title is determined in number of characters, whereas the amount of allocated space is determined in number of pixels. The allocated space has a minimum (pixel) width, to ensure the title is not cut off across lines. And as I am not using a fixed-width font, the width of the text in number of pixels varies. To ensure the allocated space is sufficient for wide text (e.g. lots of capital characters), I take a liberal amount of allocated space.
I can see two solutions. The first is somehow calculating the number of pixels consumed by the text at hand. Yet this is hard and fragile, so hardly a reasonable solution. The second is somehow ensuring the title is not cut across multiple lines.
I will search for a css option to do the latter. Or do you perhaps know a different solution for this problem (e.g. one used in researchr)?
Using
overflow : hidden
ensures that text does not overflow the enclosing box …
Log in to post comments