http://www.perlmonks.org?node_id=201887


in reply to How to "un"consider a node?

Try adding something like the following to the CSS in your User settings:
#approval_nodelet input[type="text"] { background: #ffcccc; }

Now the consideration reason box will show with a pale red background, making it impossible to mistake it for the chatterbox.

Otherwise, you would have to check whether one of the editors is online and /msg. (And make sure you use the chatterbox input this time around. ;-) )

Makeshifts last the longest.

Replies are listed 'Best First'.
Re: Re: How to "un"consider a node?
by Kanji (Parson) on Sep 30, 2002 at 23:45 UTC

    Hey, that sounds reallyfamiliar ... ;^)

    Anyhoo, not all browsers (notably, IE) support CSS2's [attribute="value"]-style selector, so in my user settings I use ...

    #approval_nodelet input { background: #cc9999; } #approval_nodelet td { background: #ffeeee; }

    ... to similar effect, but with greater browser support.

        --k.


      And you still managed to confuse it for the chatterbox? Wow. You need a rest. :-) (Argh, I was really half asleep. Of course you weren't the original poster.)

      As for the selector, I wouldn't know, I use standards compliant software. :-) Namely, Mozilla.

      Makeshifts last the longest.