On a published node, blockquote elements are unstyled (i.e., are indistinguishable from body text). However, when a node is previewed, blockquotes are styled as italicised grey/silver text. The styles should be consistent, and should be distinguishable from body text.

See http://www.alastairsmith.me.uk/coding/2008/07/05/multiplicity-computing-... for an example.

Comments

Alan Cooney’s picture

Assigned: Unassigned » Alan Cooney
Status: Active » Fixed

Add this to style.css to fix the problem:

blockquote {
text-indent: 1.5em;
padding-right: 3em;
font-style: italic;
color: #aaa;
}

I will put this in the next update release.

Alan Cooney’s picture

Status: Fixed » Closed (fixed)

Commited

alastair’s picture

Many thanks for this (and the other fixes for bugs I've reported); your efforts are greatly appreciated.

Alastair