2020-03-06 15:20:42 +00:00
|
|
|
.dt-init-replylink-buttons {
|
2019-10-30 16:12:27 +00:00
|
|
|
user-select: none;
|
2020-06-09 18:55:14 +00:00
|
|
|
margin-left: 0.5em;
|
2020-10-02 17:17:34 +00:00
|
|
|
// 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;
|
2019-10-30 16:12:27 +00:00
|
|
|
|
2020-09-16 12:07:27 +00:00
|
|
|
.client-nojs & {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-06-09 18:55:14 +00:00
|
|
|
.dt-init-replylink {
|
|
|
|
&-reply {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Similar to mw-editsection-bracket
|
|
|
|
&-bracket {
|
|
|
|
color: #54595d;
|
|
|
|
|
|
|
|
&:first-of-type {
|
|
|
|
margin-right: 0.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not( :first-of-type ) {
|
|
|
|
margin-left: 0.25em;
|
|
|
|
}
|
|
|
|
}
|
2020-04-20 22:49:20 +00:00
|
|
|
}
|
|
|
|
|
2019-11-25 16:20:41 +00:00
|
|
|
&.dt-init-replylink-active {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2020-03-06 15:20:42 +00:00
|
|
|
.dt-init-replylink-open & > a {
|
2019-10-30 16:12:27 +00:00
|
|
|
color: #72777d;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2020-08-10 15:54:45 +00:00
|
|
|
|
|
|
|
@media print {
|
|
|
|
display: none;
|
|
|
|
}
|
2019-10-30 16:12:27 +00:00
|
|
|
}
|
2019-11-13 13:57:57 +00:00
|
|
|
|
|
|
|
.dt-init-highlight {
|
|
|
|
background: rgba( 255, 204, 51, 0.5 );
|
|
|
|
position: absolute;
|
|
|
|
pointer-events: none;
|
|
|
|
opacity: 1;
|
|
|
|
transition: opacity 500ms;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dt-init-highlight-fade {
|
|
|
|
opacity: 0;
|
|
|
|
}
|