1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-12-01 10:37:18 +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;' + var $link = $('<a class="mentioned-' + reply_id + '" onclick="highlightReply(\'' + reply_id + '\');" href="#' + reply_id + '">&gt;&gt;' +
reply_id + '</a>'); reply_id + '</a>');
$link.appendTo($mentioned) $link.appendTo($mentioned);
$link.after(" ");
if (window.init_hover) { if (window.init_hover) {
$link.each(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 { p.intro a {
margin-left: 8px; margin-left: 5px;
} }
div.delete { div.delete {
@ -940,10 +940,6 @@ pre {
margin-top: 0px; margin-top: 0px;
} }
.mentioned {
word-wrap: break-word;
}
.poster_id { .poster_id {
cursor: pointer; cursor: pointer;
} }