-
Bug
-
Resolution: Fixed
-
Minor
-
2.2.4, 2.3.1, 2.4
-
MOODLE_22_STABLE, MOODLE_23_STABLE, MOODLE_24_STABLE
-
MOODLE_22_STABLE, MOODLE_23_STABLE
-
MDL-35151_master -
- Select Anomaly theme from theme selector.
- Add a forum post containing 2 or 3 paragraphs.
- TEST that each paragraph has at least 1em margin between itself and the paragraph below.
When a user creates a forum post with multiple paragraphs, the paragraph tags are correctly applied, the spacing between the paragraphs is visible in edit mode, but the post displays with no spacing.
Here's the relevant bit from anomaly/style/general.css, setting the top/bottom margins to 0:
.forumpost .content .shortenedpost a,
|
.forumpost .content p {
|
margin: 0 10px;
|
padding: 0;
|
}
|
It makes sense for the shortened post link margins to remain 0, but the paragraph margins ought to be something reasonable.