Problem/Motivation

The CSS rule blockquote > p:first-child { display: inline; } causes the first paragraph in a blockquote to be displayed inline. The second paragraph in the blockquote then sticks to the first paragraph.

Proposed resolution

Add a CSS rule blockquote > p:nth-child(2) { margin-top: 1.2em; } which will add the proper spacing between the first and second paragraphs.

Comments

pfrenssen’s picture

Do you have any idea why this display: inline is needed in the first place? Your proposal just circumvents the problem instead of fixing the root of the problem. Also I don't think it is acceptable to use nth-child in Bartik since it is not supported in IE8.

kpun’s picture

Assigned: Unassigned » kpun
Issue summary: View changes
kpun’s picture

kpun’s picture

Status: Active » Fixed
cilefen’s picture

Status: Fixed » Active

@kpun How is this fixed? You did not say.

cilefen’s picture

@kpun I received your direct message. That is fine, however you must comment on the issue to explain why it is "fixed" or nobody knows why you did it.

kpun’s picture

It's working fine for drupal 7.27 so made it fixed . I did not looked at version this was bad on my part.

cilefen’s picture

Version: 7.12 » 7.x-dev
Issue tags: +Needs manual testing

I am marking this "Needs manual testing" because it must be checked in a variety of browsers.