Flashing in chat window

Discussion in 'Implemented' started by CyphericAcid, Jan 3, 2012.

  1. CyphericAcid

    CyphericAcid New Member

    Joined:
    Nov 9, 2011
    Messages:
    1
    Likes Received:
    0
    You know when someone says your name on Pokemon Online in the newest version, .52, it makes it yellow??

    This collides with dark themes and hurts my eyes, and it's not exactly considerate to other people with dark themes. It would generally be a good idea to make this an option you can toggle.
     
  2. Mystra

    Mystra Active Member

    Joined:
    Jul 12, 2010
    Messages:
    1,389
    Likes Received:
    4
    Maybe it should not mark a color itself but just mark it with a class which should be applied from the theme. Something like that.
     
  3. TheUnknownOne

    TheUnknownOne Member

    Joined:
    Mar 28, 2011
    Messages:
    988
    Likes Received:
    3
    That's really a "theme bug" since it can be changed in mainchat.css

    To make it look better, go to Themes, copy mainchat.css from Classic into your theme dir, and modify it:
    change
    Code (css):
    1.  
    2. /* your name when mentioned by someone else than you */
    3. .name-hilight {
    4.     background-color:#FCD116;
    5. }
    6.  
    to
    Code (css):
    1.  
    2. /* your name when mentioned by someone else than you */
    3. .name-hilight {
    4.     background-color:YOURCOLORHERE;
    5. }
    6.  
    if you want to remove it all together, do:
    Code (css):
    1.  
    2. /* your name when mentioned by someone else than you */
    3. .name-hilight {
    4. }
    5.  
     
  4. Lamperi

    Lamperi I see what you did there

    Joined:
    Apr 25, 2010
    Messages:
    2,647
    Likes Received:
    11
    Exactly what was done
    Thanks TUO for explaining this :3