1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-28 17:31:00 +01:00

Merge pull request #281 from topkek/wrap-backlinks

Allow backlinks to wrap normally
This commit is contained in:
Fredrick Brennan 2014-12-16 09:43:54 +08:00
commit 6e08634be9
2 changed files with 3 additions and 6 deletions

View File

@ -38,7 +38,8 @@ onready(function(){
var $link = $('<a class="mentioned-' + reply_id + '" onclick="highlightReply(\'' + reply_id + '\');" href="#' + reply_id + '">&gt;&gt;' +
reply_id + '</a>');
$link.appendTo($mentioned)
$link.appendTo($mentioned);
$link.after(" ");
if (window.init_hover) {
$link.each(init_hover);

View File

@ -257,7 +257,7 @@ p.intro span.capcode,p.intro a.capcode,p.intro a.nametag {
}
p.intro a {
margin-left: 8px;
margin-left: 5px;
}
div.delete {
@ -940,10 +940,6 @@ pre {
margin-top: 0px;
}
.mentioned {
word-wrap: break-word;
}
.poster_id {
cursor: pointer;
}