e98a39907a
svn path=/plone.app.discussion/trunk/; revision=27353
59 lines
1.0 KiB
CSS
59 lines
1.0 KiB
CSS
/* plone.app.discussion stylesheet */
|
|
|
|
|
|
/* Comments Viewlet
|
|
---------------------------------------------------------------- */
|
|
|
|
.comment {
|
|
min-height: 100px;
|
|
position: relative;
|
|
}
|
|
|
|
.commentImage {
|
|
width: 90px;
|
|
float: left;
|
|
/* Todo: This is only a temporary solution !!! */
|
|
background: #EEF3F5;
|
|
}
|
|
|
|
.commentImage img {
|
|
margin-right: 1em;
|
|
}
|
|
|
|
.comment h3,
|
|
.comment .documentByLine,
|
|
.comment .commentBody {
|
|
|
|
}
|
|
|
|
/* Reply Form
|
|
---------------------------------------------------------------- */
|
|
|
|
.reply fieldset {
|
|
/* Fix bouncing fieldset when reply form is shown. */
|
|
margin: 0 !important;
|
|
}
|
|
|
|
.reply-to-comment-button {
|
|
float: right;
|
|
margin-top: -2.5em;
|
|
position: absolute;
|
|
bottom: 1em;
|
|
right: 1em;
|
|
}
|
|
|
|
.reply-to-comment-button {
|
|
/* Hide the reply-to-comment button and show it only if Javascript is enabled.
|
|
* Since the reply functions rely on jQuery.
|
|
*/
|
|
display: none;
|
|
}
|
|
|
|
.cancelreplytocomment {
|
|
/* Hide the cancel button in the comment form, show it only in the reply form
|
|
* in order to close it.
|
|
*/
|
|
display: none;
|
|
}
|
|
|