Add color.

This commit is contained in:
No Face 2012-03-06 16:25:12 +01:00
parent d598839245
commit 1721b3baae
2 changed files with 8 additions and 2 deletions

View File

@ -3318,7 +3318,7 @@
_ref = $$('.quotelink', qp);
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
quote = _ref[_i];
if (quote.hash.slice(1) === replyID) quote.className = 'forwardlink';
if (quote.hash.slice(1) === replyID) $.addClass(quote, 'forwardlink');
}
}
} else {
@ -4214,6 +4214,9 @@ a[href="javascript:;"] {\
color: #000;\
outline: none;\
}\
.forwardlink {\
color: #34345C;\
}\
textarea.field {\
min-height: 120px;\
}\

View File

@ -2719,7 +2719,7 @@ QuotePreview =
replyID = $.x('preceding-sibling::input', @parentNode).name
for quote in $$ '.quotelink', qp
if quote.hash[1..] is replyID
quote.className = 'forwardlink'
$.addClass quote, 'forwardlink'
else
qp.textContent = "Loading #{id}..."
threadID = @pathname.split('/').pop() or $.x('ancestor::div[@class="thread"]', @).firstChild.id
@ -3514,6 +3514,9 @@ a[href="javascript:;"] {
color: #000;
outline: none;
}
.forwardlink {
color: #34345C;
}
textarea.field {
min-height: 120px;
}