mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-12 01:16:19 +00:00
Only show reply links when body class in present
Bug: T273072 Bug: T274311 Change-Id: Ibe08c0eba0b80a5143845dcd1792d616ad8ffc61
This commit is contained in:
parent
2cfa72df99
commit
da72fb15c2
|
@ -1,9 +1,6 @@
|
|||
.dt-init-replylink-buttons {
|
||||
user-select: none;
|
||||
// Chromium bug (T260072): Element with `user-select: none` at the end of a paragraph causes
|
||||
// triple-click (to select the paragraph) to also select the first character of the next paragraph
|
||||
// https://bugs.chromium.org/p/chromium/issues/detail?id=1116214
|
||||
display: inline-flex;
|
||||
display: none;
|
||||
|
||||
.mw-content-ltr & {
|
||||
/* @noflip */
|
||||
|
@ -15,8 +12,15 @@
|
|||
margin-right: 0.5em;
|
||||
}
|
||||
|
||||
.client-nojs & {
|
||||
display: none;
|
||||
.dt-replytool-enabled & {
|
||||
// Chromium bug (T260072): Element with `user-select: none` at the end of a paragraph causes
|
||||
// triple-click (to select the paragraph) to also select the first character of the next paragraph
|
||||
// https://bugs.chromium.org/p/chromium/issues/detail?id=1116214
|
||||
display: inline-flex;
|
||||
|
||||
.client-nojs & {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.dt-init-replylink {
|
||||
|
|
Loading…
Reference in a new issue