Strikethrough backlinks of filtered posts.
This commit is contained in:
parent
21d02ce569
commit
b5bb703288
@ -2330,7 +2330,7 @@
|
||||
}
|
||||
link = $.el('a', {
|
||||
href: "#" + id,
|
||||
className: 'backlink',
|
||||
className: root.hidden ? 'filtered backlink' : 'backlink',
|
||||
textContent: quoteBacklink.funk(id)
|
||||
});
|
||||
if (conf['Quote Preview']) {
|
||||
@ -3324,6 +3324,9 @@
|
||||
.filetitle, .replytitle, .postername, .commentpostername, .postertrip {\
|
||||
background: none;\
|
||||
}\
|
||||
.filtered {\
|
||||
text-decoration: line-through;\
|
||||
}\
|
||||
\
|
||||
/* Firefox bug: hidden tables are not hidden. fixed in 9.0 */\
|
||||
[hidden] {\
|
||||
|
||||
@ -1762,7 +1762,7 @@ quoteBacklink =
|
||||
continue if !conf['OP Backlinks'] and el.className is 'op'
|
||||
link = $.el 'a',
|
||||
href: "##{id}"
|
||||
className: 'backlink'
|
||||
className: if root.hidden then 'filtered backlink' else 'backlink'
|
||||
textContent: quoteBacklink.funk id
|
||||
if conf['Quote Preview']
|
||||
$.bind link, 'mouseover', quotePreview.mouseover
|
||||
@ -2586,6 +2586,9 @@ Main =
|
||||
.filetitle, .replytitle, .postername, .commentpostername, .postertrip {
|
||||
background: none;
|
||||
}
|
||||
.filtered {
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
/* Firefox bug: hidden tables are not hidden. fixed in 9.0 */
|
||||
[hidden] {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user