2009-05-27 09:26:21 +02:00
|
|
|
/* plone.app.discussion stylesheet */
|
|
|
|
|
2010-02-26 17:56:31 +01:00
|
|
|
.discussion .hide {
|
2009-08-26 23:53:34 +02:00
|
|
|
display: none;
|
|
|
|
}
|
2009-05-28 09:00:40 +02:00
|
|
|
|
2009-08-28 23:21:54 +02:00
|
|
|
|
2009-05-28 09:00:40 +02:00
|
|
|
/* Comments Viewlet
|
2010-02-26 17:56:31 +01:00
|
|
|
-------------------------------------------------------------------------- */
|
|
|
|
|
2009-12-07 16:41:17 +01:00
|
|
|
.discussion,
|
2009-12-07 16:39:49 +01:00
|
|
|
#commenting {
|
2010-01-27 15:54:07 +01:00
|
|
|
/* Clear "float: left" from "manage portlets" div above the
|
|
|
|
comment viewlet. This will get fixed in the next Plone 4
|
|
|
|
release. */
|
|
|
|
clear: both;
|
2009-12-07 16:39:49 +01:00
|
|
|
}
|
|
|
|
|
2009-05-29 09:13:05 +02:00
|
|
|
.comment {
|
|
|
|
}
|
|
|
|
|
2009-05-28 09:00:40 +02:00
|
|
|
.commentImage {
|
2010-01-27 15:54:07 +01:00
|
|
|
float: left;
|
2011-01-07 11:27:13 +01:00
|
|
|
margin-right: 0.5em;
|
2010-09-29 10:13:54 +02:00
|
|
|
height: 3.5em;
|
2009-05-28 09:00:40 +02:00
|
|
|
}
|
|
|
|
|
2009-12-07 20:39:23 +01:00
|
|
|
.commentImage a:link {
|
2010-01-27 15:54:07 +01:00
|
|
|
/* Override the default bottom border of links in Plone 4. */
|
|
|
|
border: 0px;
|
2009-12-07 20:39:23 +01:00
|
|
|
}
|
|
|
|
|
2009-05-28 09:00:40 +02:00
|
|
|
.commentImage img {
|
2010-09-29 10:13:54 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.commentDate {
|
|
|
|
display: block;
|
|
|
|
font-size: 85%;
|
|
|
|
line-height: 1.5em;
|
|
|
|
padding-top: 0.5em;
|
|
|
|
color: #76797C;
|
2009-05-29 09:13:05 +02:00
|
|
|
}
|
|
|
|
|
2009-08-28 23:21:54 +02:00
|
|
|
.commentBody {
|
2010-09-29 10:13:54 +02:00
|
|
|
clear: both;
|
2010-01-27 15:54:07 +01:00
|
|
|
margin: 1em 0;
|
2010-09-29 10:13:54 +02:00
|
|
|
overflow: auto;
|
2009-08-28 23:21:54 +02:00
|
|
|
}
|
2009-06-08 10:23:18 +02:00
|
|
|
|
2010-09-29 10:13:54 +02:00
|
|
|
.commentBody p {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.discussion .documentByLine {
|
|
|
|
float: left;
|
|
|
|
margin-left: 0;
|
2010-11-30 08:33:22 +01:00
|
|
|
margin-bottom: 0.5em;
|
2009-05-29 09:13:05 +02:00
|
|
|
}
|
|
|
|
|
2010-09-29 10:13:54 +02:00
|
|
|
.commentActions {
|
|
|
|
float: right;
|
|
|
|
text-align: right;
|
|
|
|
}
|
2009-08-28 23:21:54 +02:00
|
|
|
|
2011-01-07 16:27:17 +01:00
|
|
|
.discussion .discreet {
|
|
|
|
color: #666666;
|
|
|
|
font-size: 85%;
|
|
|
|
}
|
|
|
|
|
2009-06-05 11:05:34 +02:00
|
|
|
/* Reply Form
|
2010-02-26 17:56:31 +01:00
|
|
|
-------------------------------------------------------------------------- */
|
2009-05-28 09:00:40 +02:00
|
|
|
|
2009-06-05 11:05:34 +02:00
|
|
|
.reply fieldset {
|
2010-01-27 15:54:07 +01:00
|
|
|
/* Fix bouncing fieldset when reply form is shown. */
|
|
|
|
margin: 0 !important;
|
2009-06-05 11:05:34 +02:00
|
|
|
}
|
|
|
|
|
2010-07-13 15:39:35 +02:00
|
|
|
.reply .text-widget {
|
2010-09-29 10:13:54 +02:00
|
|
|
/* Make sure the input fields are always below the label. This sometimes
|
|
|
|
* break when the reply form is copied from the main comment form.
|
|
|
|
*/
|
|
|
|
display: block;
|
2010-07-13 15:39:35 +02:00
|
|
|
}
|
|
|
|
|
2009-05-27 09:26:21 +02:00
|
|
|
.reply-to-comment-button {
|
2009-08-28 23:21:54 +02:00
|
|
|
/* Hide the reply-to-comment button and show it only if Javascript
|
|
|
|
* is enabled. Since the reply functions rely on jQuery.
|
2009-05-27 09:26:21 +02:00
|
|
|
*/
|
2010-01-27 15:54:07 +01:00
|
|
|
display: none;
|
2009-05-27 09:26:21 +02:00
|
|
|
}
|
2009-06-02 17:09:25 +02:00
|
|
|
|
|
|
|
.cancelreplytocomment {
|
2010-01-27 15:54:07 +01:00
|
|
|
/* Hide the cancel button in the comment form, show it only in the reply form
|
|
|
|
* in order to close it.
|
|
|
|
*/
|
|
|
|
display: none;
|
2009-06-02 17:09:25 +02:00
|
|
|
}
|
|
|
|
|
2009-08-28 23:21:54 +02:00
|
|
|
|
2009-06-22 12:08:09 +02:00
|
|
|
/* Moderation View
|
2010-02-26 17:56:31 +01:00
|
|
|
-------------------------------------------------------------------------- */
|
2009-06-22 12:08:09 +02:00
|
|
|
|
2009-07-01 01:49:32 +02:00
|
|
|
#bulkactions {
|
2010-01-27 15:54:07 +01:00
|
|
|
text-align: left;
|
2009-06-29 13:11:58 +02:00
|
|
|
}
|
|
|
|
|
2009-06-26 16:57:45 +02:00
|
|
|
#dobulkaction {
|
2010-01-27 15:54:07 +01:00
|
|
|
margin: 0.3em 0;
|
2009-06-26 16:57:45 +02:00
|
|
|
}
|
2009-06-29 13:11:58 +02:00
|
|
|
|
2009-07-01 00:17:42 +02:00
|
|
|
.comment-publish-button {
|
2009-06-29 13:11:58 +02:00
|
|
|
float: left;
|
2010-09-29 10:13:54 +02:00
|
|
|
margin-right: 0.5em;
|
2009-06-29 13:11:58 +02:00
|
|
|
}
|
|
|
|
|
2009-07-01 00:17:42 +02:00
|
|
|
.comment-delete-button {
|
2010-03-17 12:00:10 +01:00
|
|
|
float: left;
|
2009-06-29 13:11:58 +02:00
|
|
|
}
|
2009-06-29 23:05:38 +02:00
|
|
|
|
|
|
|
#review-comments {
|
2010-01-27 15:54:07 +01:00
|
|
|
margin: 0;
|
2009-06-29 23:05:38 +02:00
|
|
|
}
|
2009-07-07 10:21:36 +02:00
|
|
|
|
|
|
|
#fieldset-moderate-comments {
|
2010-01-27 15:54:07 +01:00
|
|
|
padding: 2em 1em;
|
2009-07-07 10:21:36 +02:00
|
|
|
}
|
2009-12-07 20:39:23 +01:00
|
|
|
|
2010-12-02 19:15:47 +01:00
|
|
|
/* Discussion Control Panel
|
|
|
|
-------------------------------------------------------------------------- */
|
2009-12-08 16:29:37 +01:00
|
|
|
|
2010-12-02 19:15:47 +01:00
|
|
|
.template-discussion-settings .unclickable {
|
2010-12-05 15:10:21 +01:00
|
|
|
opacity: 0.6;
|
2010-12-02 19:15:47 +01:00
|
|
|
filter: alpha(opacity = 50);
|
|
|
|
}
|
2009-12-07 20:39:23 +01:00
|
|
|
|
|
|
|
/* Plone 4 Styles
|
2010-02-26 17:56:31 +01:00
|
|
|
-------------------------------------------------------------------------- */
|
2009-12-07 20:39:23 +01:00
|
|
|
|
|
|
|
/* These styles are only applied for Plone 4, since Plone 3.x does
|
|
|
|
not have a .row class for portal-column-content. */
|
|
|
|
|
2009-12-08 12:19:26 +01:00
|
|
|
.row #dobulkaction {
|
2010-01-27 15:54:07 +01:00
|
|
|
margin: 0;
|
2009-12-08 12:19:26 +01:00
|
|
|
}
|
|
|
|
|
2009-12-07 20:39:23 +01:00
|
|
|
.row #commenting {
|
2010-01-27 15:54:07 +01:00
|
|
|
font-size: 80%;
|
2009-12-07 20:39:23 +01:00
|
|
|
}
|
|
|
|
|
2011-01-07 16:27:17 +01:00
|
|
|
.row #commenting .formControls {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2010-02-26 17:56:31 +01:00
|
|
|
.row #commenting textarea,
|
|
|
|
.row .discussion textarea {
|
2009-12-07 20:39:23 +01:00
|
|
|
font: 100% Monaco, "Courier New", Courier, monospace;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2010-02-26 17:56:31 +01:00
|
|
|
|
|
|
|
.row #commenting fieldset,
|
|
|
|
.row .discussion fieldset {
|
2009-12-07 20:39:23 +01:00
|
|
|
border: 0.1em solid #329fd7;
|
|
|
|
border-style: solid none none none;
|
|
|
|
}
|
2010-02-26 17:56:31 +01:00
|
|
|
|
|
|
|
.row #commenting legend,
|
|
|
|
.row .discussion legend {
|
2009-12-07 20:39:23 +01:00
|
|
|
padding: 0.5em 0.5em 0.5em 0;
|
|
|
|
font-size: 85%;
|
|
|
|
}
|
2010-02-26 17:56:31 +01:00
|
|
|
|
|
|
|
.row #commenting label,
|
|
|
|
.row .discussion label {
|
2009-12-07 20:39:23 +01:00
|
|
|
font-weight:bold;
|
|
|
|
}
|