CVS log messages (see example) are put inside

 tags, which by default makes them non-wrappables. So when the messages are long, they stretch over to the right-hand blocks, and since they're displayed underneath the blocks, we can't read them...

The following CSS solves the problem (for me; I'm using Opera, don't know about other browsers):

/* Wrap text of CVS log messages, on http://drupal.org/project/cvs/### pages. */
.description pre {
  white-space: normal;
}

Comments

mooffie’s picture

CVS log messages (see example) are put inside tags

It should be: "are put inside <PRE> tags".

(I typed the the text correctly, using entities, but fell victim to the "Losing HTML entities on 'Preview'" bug.)

dww’s picture

Status: Active » Closed (duplicate)

See #197084: cvs.css not included for project/cvs/* pages which is trying to fix whatever is causing d.o itself not to do the right thing now that #71359: Fix overflowing commit messages is committed and deployed.

mooffie’s picture

Thanks :)