Make sure the form fields in the reply form are always placed under the field labels; Fix CSS overflow bug that occurs with the new Plone 4.0b5 comment styles
svn path=/plone.app.discussion/trunk/; revision=37774
This commit is contained in:
parent
6ca6f58acd
commit
c3320def88
@ -4,6 +4,13 @@ Changelog
|
|||||||
1.0b5 (unreleased)
|
1.0b5 (unreleased)
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
* Make sure the form fields in the reply form are always placed under the field
|
||||||
|
labels.
|
||||||
|
[timo]
|
||||||
|
|
||||||
|
* Fix CSS overflow bug that occurs with the new Plone 4.0b5 comment styles.
|
||||||
|
[timo]
|
||||||
|
|
||||||
* Unnecessary imports and variables removed.
|
* Unnecessary imports and variables removed.
|
||||||
[timo]
|
[timo]
|
||||||
|
|
||||||
|
@ -18,7 +18,6 @@
|
|||||||
|
|
||||||
.comment {
|
.comment {
|
||||||
min-height: 100px;
|
min-height: 100px;
|
||||||
overflow: auto;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.commentImage {
|
.commentImage {
|
||||||
@ -60,6 +59,13 @@
|
|||||||
margin: 0 !important;
|
margin: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.reply .text-widget {
|
||||||
|
/* 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;
|
||||||
|
}
|
||||||
|
|
||||||
.reply-to-comment-button {
|
.reply-to-comment-button {
|
||||||
/* Hide the reply-to-comment button and show it only if Javascript
|
/* Hide the reply-to-comment button and show it only if Javascript
|
||||||
* is enabled. Since the reply functions rely on jQuery.
|
* is enabled. Since the reply functions rely on jQuery.
|
||||||
|
Loading…
Reference in New Issue
Block a user