Doc on porting to v.7 hides some html

Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
Post Reply
kitchin
Posts: 7
Joined: 2011-06-26T09:04:32-07:00
Authentication code: 8675308

Doc on porting to v.7 hides some html

Post by kitchin »

On the doc page https://www.imagemagick.org/script/porting.php most this phrase is hidden:

Code: Select all

animate, compare, composite, conjure, convert, display, identify, import, mogrify, montage, stream
Makes it difficult to word search!

The fix is to modify the CSS
https://www.imagemagick.org/css/magick.php

Code: Select all

@media (min-width: 768px)
.dl-horizontal dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}
Just delete "white-space: nowrap;"

Mobile is not affected.
Post Reply