09/05/30 20:53:02 5wiUkTUx0
>>553
general.jsの824行目あたり
node.parentNode.appendChild(count);
node.onmouseover = f;
の後に下の1行を追加
if (tb.length > 2) node.style.backgroundColor='yellow';
もしくは、821行目あたり
node.className = "tbNum";
を
node.className = (tb.length > 2) ? "tbNum2" : "tbNum";
として、style-my.cssに下の1行を追加
.resNumber .tbNum2 { background-color: yellow; text-decoration: underline !important; }
後者がおすすめですが、あまり詳しくないので間違っていたらごめんなさい