Jump to content

Tag new comments or highlight the box more


☣Long218☢

Recommended Posts

Its very subtle right now (especially when there are tons of comments to look over, and when you're color blind)....

 

Maybe, highlight the entire comment box in yellow? (So, any new comments that were posted after you last viewed would be displayed with a yellow tint over the comment box)....

Link to comment
Share on other sites

  • 1 month later...

It is hard to notice that red outline when there are a lot of new comments.

 

You could make the outline thicker, or add a corner highlight like outpost, or a large red arrow on the left side of new items, >>>

 

Something, I dunno. I definitely agree

Link to comment
Share on other sites

outline thicker

 

1OPclgB.png

// ==UserScript==
// @name       Backpack.tf New Comments Thicker Red Border
// @namespace  http://backpack.tf/
// @version    1.0
// @description  Because useful features will not be implemented
// @include    http://backpack.tf/vote/id/*
// @copyright  2013+, base64
// ==/UserScript==

function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}

addGlobalStyle('.widget .comment-important { border-width: 5px; }');
Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...