Work around a small issue
causing the space after a quotelink to disappear after inlining a post and uninlining it. Seriously.
This commit is contained in:
parent
7b0b3d23e3
commit
d41448a403
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -90,6 +90,10 @@ div.navLinks {
|
|||||||
.reply > .file > .fileText {
|
.reply > .file > .fileText {
|
||||||
margin: 0 20px;
|
margin: 0 20px;
|
||||||
}
|
}
|
||||||
|
.hashlink::before {
|
||||||
|
content: ' ';
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
.inline + .hashlink,
|
.inline + .hashlink,
|
||||||
[hidden] {
|
[hidden] {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
|
|||||||
@ -26,13 +26,10 @@ QuoteInline =
|
|||||||
return
|
return
|
||||||
|
|
||||||
qiQuote: (link, hidden) ->
|
qiQuote: (link, hidden) ->
|
||||||
[
|
$.el 'a',
|
||||||
$.tn(' ')
|
className: "hashlink#{if hidden then ' filtered' else ''}"
|
||||||
$.el 'a',
|
textContent: '#'
|
||||||
className: "hashlink#{if hidden then ' filtered' else ''}"
|
href: link.href
|
||||||
textContent: '#'
|
|
||||||
href: link.href
|
|
||||||
]
|
|
||||||
|
|
||||||
toggle: (e) ->
|
toggle: (e) ->
|
||||||
return if e.shiftKey or e.altKey or e.ctrlKey or e.metaKey or e.button isnt 0
|
return if e.shiftKey or e.altKey or e.ctrlKey or e.metaKey or e.button isnt 0
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user