caput_mortuum: (Default)
caput_mortuum ([personal profile] caput_mortuum) wrote in [community profile] style_system2013-05-27 12:24 am

thread collapsing in plain

 I'm adjusting the comment page for a plain theme.

Question: when the threads collapse, this style basically just displays a truncated comment header. However, in DW's site comment system collapsed comments have their own class (cmtpartial) and are displayed differently, with different font properties and such
I would like to have that, is there a way to keep that?
momijizukamori: Green icon with white text - 'I do believe in phosphorylation! I do!' with a string of DNA basepairs on the bottom (Default)

[personal profile] momijizukamori 2013-05-27 08:33 am (UTC)(link)
Hmm. For some reason it seems like the first line of CSS isn't making it in, but the second and third (confusingly) are.

Try


.partial h4.comment-title a, .partial h4.comment-title {
display: inline !important;
font-size: 1em;
font-weight: normal;
}

instead of the first and second lines, maybe? The h4 is the problem - it wants to be a block element, and it's pushing everything else to the next line because of it.
momijizukamori: Green icon with white text - 'I do believe in phosphorylation! I do!' with a string of DNA basepairs on the bottom (Default)

[personal profile] momijizukamori 2013-05-28 03:03 am (UTC)(link)

Off hand, I think most of the 'nice' ways to do it involve S2, not just pure CSS, unfortunately :(