85a0a6899e9c7eab884df5fbcc9bc8c278ff573d
[themes.git] / EarlyBlue / chatzilla / output-default.css
1 /* -*- Mode: Text; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2  * The contents of this file are subject to the Mozilla Public
3  * License Version 1.1 (the "License"); you may not use this file
4  * except in compliance with the License. You may obtain a copy of
5  * the License at http://www.mozilla.org/MPL/
6  *
7  * Software distributed under the License is distributed on an "AS
8  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
9  * implied. See the License for the specific language governing
10  * rights and limitations under the License.
11  *
12  * The Original Code is Chatzilla.
13  *
14  * The Initial Developer of the Original Code is New Dimensions Consulting,
15  * Inc. Portions created by New Dimensions Consulting, Inc. are
16  * Copyright (C) 1999 New Dimenstions Consulting, Inc. All
17  * Rights Reserved.
18  *
19  * Contributor(s):
20  *  Robert Ginda, rginda@ndcico.com, original author
21  * 
22  * Styles for output window
23  *
24  */
25
26 /* 
27  *  a version of the output window that uses only your default foreground and
28  *  backgrond colors.  Message types are distinguished by font changes.
29  *  see output-base.css for details. 
30  */
31
32 @import url(chrome://chatzilla/content/output-base.css);
33
34 /* EarlyBlue needs little corrections though. */
35
36 a.chatzilla-link {
37     color: #336699;
38 }
39
40 a.chatzilla-link:visited {
41     color: #666699;
42 }
43
44 .chatzilla-highlight[name="Bold"] {
45     font-weight: bold;
46 }
47
48 .chatzilla-highlight[name="Italic"] {
49     font-style: italic;
50 }
51
52 .chatzilla-highlight[name="Large"] {
53     font-size: 12pt;
54 }
55
56 .chatzilla-highlight[name="Small"] {
57     font-size: 8pt;
58 }
59
60 .chatzilla-highlight[name="SmallCap"] {
61     font-variant: small-caps;
62 }
63
64 .msg-data[msg-type="ACTION"] {
65     font-style: italic;
66 }
67
68 .msg-type[msg-type="JOIN"],
69 .msg-type[msg-type="PART"],
70 .msg-type[msg-type="QUIT"] {
71     font-weight: bold;
72 }
73
74 .msg-data[msg-type="QUIT"] {
75     font-variant: small-caps;
76     font-weight: bold;
77 }
78
79 .msg-data[msg-type="JOIN"],
80 .msg-data[msg-type="PART"] {
81     font-variant: small-caps;
82 }
83
84 .msg-data[msg-type="HELLO"],
85 .msg-type[msg-type="NICK"],
86 .msg-data[msg-type="NOTICE"] {
87     font-weight: bold;
88 }
89
90 .msg-data[msg-type="NICK"] {
91     font: 10pt courier;
92 }
93
94 /* :before and :after pseudoclasses form the decorations around nicknames.     */
95 .msg-user:before,
96 .msg-user:after {
97     font: 10pt courier;
98     font-weight: bolder;
99 }
100
101 .msg-user[dest-type="IRCUser"],
102 .msg-user[dest-type="IRCUser"][msg-dest$="ME!"] {
103     font-style: italic;
104 }
105
106 .msg-user[msg-user$="ME!"] {
107     font-weight: bold;
108 }