Hi there,
we noticed that umlauts aren’t visible if you put them into the first headline:
Edit-Mode:
Styling properties:
Is this a bug in the default styling of the new version? We use Discourse 1.6.0.beta8 on our hosted instance forum.plentmarkets.com.
Best regards,
Thorben
1 Like
Presumably a CSS issue, the very top of the letter is cropped off, like a haircut, there?
1 Like
Jep, like unwanted haircut
Yes, it’s probably an CSS issue.
.cooked>*:first-child {
margin-top: 0;
}
Defined here:
https://github.com/discourse/discourse/blob/master/app/assets/stylesheets/common/base/compose.scss#L194
My quickfix is a workaround in our custom CSS:
.cooked>*:first-child {
margin-top: 6px !important;
}
6 Likes