QTfrontend/res/css/chat.css
changeset 6180 0992fc5a4ad9
parent 6178 affa860f2983
child 6181 c739b503ae31
equal deleted inserted replaced
6179:b529f88d37d0 6180:0992fc5a4ad9
     1 /*
     1 /*
     2  * see http://doc.qt.nokia.com/4.5/richtext-html-subset.html#css-properties
     2  * see http://doc.qt.nokia.com/4.5/richtext-html-subset.html#css-properties
       
     3  *
       
     4  * In the QTfrontend of hedgewars also display:none; will work for class names
       
     5  * that start with msg_ - as long as they are referenced directly and not
       
     6  * within any hierachy.
     3  */
     7  */
     4 
     8 
       
     9 /* links */
     5 a { color:#c8c8ff; }
    10 a { color:#c8c8ff; }
       
    11 
       
    12 /* nick names (they are also sometimes linked) */
     6 .nick { text-decoration: none; }
    13 .nick { text-decoration: none; }
     7 .UserChat {  }
    14 
     8 .UserChat .nick { color:#ffec20; }
    15 /* various chat messages */
     9 .FriendChat { color: #08e008; }
    16 .msg_UserChat { }
    10 .FriendChat .nick { color: #20ff20; }
    17 .msg_UserChat .nick { color:#ffec20; }
    11 .UserJoin { color: #c0c0c0; }
    18 .msg_FriendChat { color: #08e008; }
    12 .UserJoin .nick { color: #d0d0d0; }
    19 .msg_FriendChat .nick { color: #20ff20; }
    13 .FriendJoin { color: #c0e0c0; }
    20 .msg_UserJoin { color: #c0c0c0; }
    14 .FriendJoin .nick { color: #d0f0d0; }
    21 .msg_UserJoin .nick { color: #d0d0d0; }
    15 .UserAction { color: #ff80ff; }
    22 .msg_FriendJoin { color: #c0f0c0; }
    16 .UserAction .nick { color: #ffa0ff; }
    23 .msg_FriendJoin .nick { color: #d8f0d8; }
    17 .FriendAction { color: #ff00ff; }
    24 .msg_UserAction { color: #ff80ff; }
    18 .FriendAction .nick { color: #ff30ff; }
    25 .msg_UserAction .nick { color: #ffa0ff;}
    19 .Error { color: #ff0000 }
    26 .msg_FriendAction { color: #ff00ff; }
    20 .Warning { color: #ff8000 }
    27 .msg_FriendAction .nick { color: #ff30ff; }
    21 .Notice { color: #fefefe }
    28 /* uncomment next line to disable join and leave messages of non-friends */
       
    29 /* .msg_UserJoin { display:none; } */
       
    30 
       
    31 /* frontend messages */
       
    32 .msg_Error { color: #ff0000; }
       
    33 .msg_Warning { color: #ff8000; }
       
    34 .msg_Notice { color: #fefefe; }