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
Date: 2013-05-26 10:50 pm (UTC)no subject
Date: 2013-05-26 10:53 pm (UTC)no subject
Date: 2013-05-26 10:55 pm (UTC)Tabula Rasa is actually our 'basic' core2 journal style - it's got all of the 'default' styling for core2 built in :)
no subject
Date: 2013-05-26 10:53 pm (UTC)/*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
Date: 2013-05-26 10:56 pm (UTC)no subject
Date: 2013-05-26 10:58 pm (UTC)no subject
Date: 2013-05-27 12:03 am (UTC)no subject
Date: 2013-05-27 12:50 am (UTC)no subject
Date: 2013-05-27 01:14 am (UTC)no subject
Date: 2013-05-27 08:33 am (UTC)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
Date: 2013-05-27 10:57 am (UTC)no subject
Date: 2013-05-27 02:37 pm (UTC)[made it with .has-userpic though that doesn't feel very elegant?]
no subject
Date: 2013-05-28 03:03 am (UTC)Off hand, I think most of the 'nice' ways to do it involve S2, not just pure CSS, unfortunately :(