Make comment markers inline-block to fix comment wrapping in Safari

Bug: T298371
Change-Id: I40da5272fd9c44a5a81e303349d0e8fc404e344d
This commit is contained in:
Ed Sanders 2022-03-18 14:30:10 +00:00
parent aa1accebf1
commit b4b6ae4e81

View file

@ -5,6 +5,14 @@ span[ data-mw-comment-start ] {
top: -1em;
}
span[ data-mw-comment-start ],
span[ data-mw-comment-end ] {
// Support: Safari
// Markers at the end of a line and before an inline-block (e.g. edit icon)
// can cause text to stop wrapping properly. (T298371)
display: inline-block;
}
.ext-discussiontools-init-replylink-buttons {
user-select: none;
display: none;