caput_mortuum (
caput_mortuum) wrote in
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?
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?
no subject
/*Styling for collapsed comments*/
.partial h4.comment-title {font-size: 1em; display:inline; font-weight:normal;}
.partial h4.comment-title a {font-size: 1em; display:inline; font-weight:normal;}
.partial .poster {display:inline;}
no subject
no subject
no subject
no subject
no subject
no subject
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.
no subject
no subject
[made it with .has-userpic though that doesn't feel very elegant?]
no subject
Off hand, I think most of the 'nice' ways to do it involve S2, not just pure CSS, unfortunately :(