mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-24 00:13:36 +00:00
Make comment markers inline-block to fix comment wrapping in Safari
Bug: T298371 Change-Id: I40da5272fd9c44a5a81e303349d0e8fc404e344d
This commit is contained in:
parent
aa1accebf1
commit
b4b6ae4e81
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue