cecco974 / jsdoc-toolkit

Automatically exported from code.google.com/p/jsdoc-toolkit
0 stars 0 forks source link

jsdoc template: The font set for ".description" is difficult to read #151

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
The "jsdoc" template has the following font definition for the
"description" class:

.summaryTable td.nameDescription, .description 
{
    font-family:Palatino,Garamond,serif;
    ...
}

It makes all descriptions quite difficult to read and ugly. I've removed
that property, achieving better results.

I'm attaching two screenshots showing the difference.

Original issue reported on code.google.com by fre...@gmail.com on 6 Jun 2008 at 3:20

Attachments:

GoogleCodeExporter commented 8 years ago
Sorry... I took the above CSS definition from Firebug... here is the original 
one,
from "templates/jsdoc/static/default.css"

.summaryTable td.nameDescription, .description
{
    font: 13px Palatino,Garamond,serif;
    ...
}

... changed to:

.summaryTable td.nameDescription, .description
{
    font: 13px;
    ...
}

Original comment by fre...@gmail.com on 6 Jun 2008 at 3:24

GoogleCodeExporter commented 8 years ago
The original style was intended to give the look of the original JSDoc.pm 
output, which in turn was intended to 
look like old JavaDoc output: all of which, I agree, is ugly. I won't miss it.

Fix was committed in revision 619.

Original comment by micmath on 6 Jun 2008 at 3:30