Add color.
This commit is contained in:
parent
d598839245
commit
1721b3baae
@ -3318,7 +3318,7 @@
|
|||||||
_ref = $$('.quotelink', qp);
|
_ref = $$('.quotelink', qp);
|
||||||
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
|
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
|
||||||
quote = _ref[_i];
|
quote = _ref[_i];
|
||||||
if (quote.hash.slice(1) === replyID) quote.className = 'forwardlink';
|
if (quote.hash.slice(1) === replyID) $.addClass(quote, 'forwardlink');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -4214,6 +4214,9 @@ a[href="javascript:;"] {\
|
|||||||
color: #000;\
|
color: #000;\
|
||||||
outline: none;\
|
outline: none;\
|
||||||
}\
|
}\
|
||||||
|
.forwardlink {\
|
||||||
|
color: #34345C;\
|
||||||
|
}\
|
||||||
textarea.field {\
|
textarea.field {\
|
||||||
min-height: 120px;\
|
min-height: 120px;\
|
||||||
}\
|
}\
|
||||||
|
|||||||
@ -2719,7 +2719,7 @@ QuotePreview =
|
|||||||
replyID = $.x('preceding-sibling::input', @parentNode).name
|
replyID = $.x('preceding-sibling::input', @parentNode).name
|
||||||
for quote in $$ '.quotelink', qp
|
for quote in $$ '.quotelink', qp
|
||||||
if quote.hash[1..] is replyID
|
if quote.hash[1..] is replyID
|
||||||
quote.className = 'forwardlink'
|
$.addClass quote, 'forwardlink'
|
||||||
else
|
else
|
||||||
qp.textContent = "Loading #{id}..."
|
qp.textContent = "Loading #{id}..."
|
||||||
threadID = @pathname.split('/').pop() or $.x('ancestor::div[@class="thread"]', @).firstChild.id
|
threadID = @pathname.split('/').pop() or $.x('ancestor::div[@class="thread"]', @).firstChild.id
|
||||||
@ -3514,6 +3514,9 @@ a[href="javascript:;"] {
|
|||||||
color: #000;
|
color: #000;
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
.forwardlink {
|
||||||
|
color: #34345C;
|
||||||
|
}
|
||||||
textarea.field {
|
textarea.field {
|
||||||
min-height: 120px;
|
min-height: 120px;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user