jsduck icon indicating copy to clipboard operation
jsduck copied to clipboard

Columns in API index page are too inflexible

Open nene opened this issue 11 years ago • 2 comments

Long class names in one column will overlap with the ones in next column. Even when there is enough space for the columns to be wider.

Maybe the we could also allow the classnames to wrap when they really don't fit.

nene avatar Apr 09 '14 12:04 nene

Adding the following to your config allows the columns to be wider if needed.

"--css": [
   ".class-categories .section div {min-width: 250px; width: auto !important;}"
]

moghammed avatar Aug 07 '14 12:08 moghammed

Following on from @moghammed's suggestion I added a margin-right property to his workaround.

"--css": [
    ".class-categories .section div {min-width: 250px; margin-right: 35px; width: auto !important;}"
]

mezpahlan avatar Apr 23 '15 09:04 mezpahlan