mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-23 16:06:53 +00:00
Merge "Make comment markers inline-block to fix comment wrapping in Safari (in headings only)"
This commit is contained in:
commit
7ee49a2138
|
@ -7,6 +7,16 @@ span[ data-mw-comment-start ] {
|
|||
top: -1em;
|
||||
}
|
||||
|
||||
// stylelint-disable-next-line selector-list-comma-newline-after
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
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