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

add space between backlinks

This commit is contained in:
topkek 2014-11-23 22:48:00 +00:00
parent 17fea55c16
commit af305de336
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 {
@ -939,10 +939,6 @@ pre {
margin-top: 0px;
}
.mentioned {
word-wrap: break-word;
}
.poster_id {
cursor: pointer;
}