QTfrontend/res/css/chat.css
changeset 6235 bb1a657f751b
parent 6231 810b9ced2b67
child 8759 1a4b9b9fe2b0
equal deleted inserted replaced
6233:b81199041d8f 6235:bb1a657f751b
    15  ******************************************************************************
    15  ******************************************************************************
    16  *
    16  *
    17  * This file can be stored at different locations, but it will be read only
    17  * This file can be stored at different locations, but it will be read only
    18  * once, based on first file found in this order:
    18  * once, based on first file found in this order:
    19  *
    19  *
    20  *     <userdir>/Data/css/chat.css
    20  *    <userdir>/Data/css/chat.css ( create/see full path with: /saveStyleSheet )
    21  *     <datadir>/css/chat.css
    21  *    <datadir>/css/chat.css
    22  *     <internal default style-sheet>
    22  *    <internal default style-sheet>
    23  *
    23  *
    24  *****************************************************************************/
    24  *****************************************************************************/
    25 
    25 
       
    26 /* valid color values
       
    27  *
       
    28  * transparent   (no color)
       
    29  *
       
    30  * colorname
       
    31  *   (a word that is the name of a valid color)
       
    32  *   available colors: http://www.w3.org/TR/SVG/types.html#ColorKeywords
       
    33  *   examples: red, steelblue, mintcream
       
    34  *
       
    35  * #RRGGBB
       
    36  *   (hexadecimal additive red-green-blue, max is ff, min 00, half is 80)
       
    37  *   examples: #ffff00 (yellow), #808080 (gray)
       
    38  *
       
    39  * rgb(r, g, b)
       
    40  *   (decimal additive red-green-blue, max is 255, min 0, half is 128)
       
    41  *   examples: rgb(135, 206, 250) (lightskyblue)
       
    42  */
       
    43 
       
    44 
    26 /* links */
    45 /* links */
    27 a { color:#c8c8ff; }
    46 a { color: #c8c8ff; }
    28 
    47 
    29 /* appearance of the whole chat */
    48 /* appearance of the whole chat */
    30 /* body { color: white; background-color: #000000; } */
    49 /* body { color: white; background-color: #000000; } */
    31 
    50 
    32 /* appearance of all elements in chat */
    51 /* appearance of all elements in chat */
    68 /* you can also set timestamp style for different msg types */
    87 /* you can also set timestamp style for different msg types */
    69 .msg_FriendChat .timestamp { color: #ffffff; }
    88 .msg_FriendChat .timestamp { color: #ffffff; }
    70 
    89 
    71 /* messages that contain your nickname */
    90 /* messages that contain your nickname */
    72 .highlight {  }
    91 .highlight {  }
    73 .highlight .nick { color: red; } /* nicknames in highlighted messages */
    92 .highlight .nick { color: #ff0000; } /* nicknames in highlighted messages */
    74 
    93 
    75 /* system messages */
    94 /* system messages */
    76 .msg_Error { color: #ff0000; }
    95 .msg_Error { color: #ff0000; }
    77 .msg_Warning { color: #ff8000; }
    96 .msg_Warning { color: #ff8000; }
    78 .msg_Notice { color: #fefefe; }
    97 .msg_Notice { color: #fefefe; }