adding chatzilla, adding menu icons for components, keeping up with classic
[themes.git] / LCARStrek / 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 /* LCARtrek needs corrections though. */
35
36 body.chatzilla-body {               /* The topmost container in the ChatZilla */
37     background: #000000;              /* output window. */
38     color: #E7ADE7;    
39 }
40
41 a.chatzilla-link {
42     color: #FFCF00;
43 }
44
45 a.chatzilla-link:visited {
46     color: #8050B0;
47 }
48
49 .chatzilla-highlight[name="Bold"] {
50     font-weight: bold;
51 }
52
53 .chatzilla-highlight[name="Italic"] {
54     font-style: italic;
55 }
56
57 .chatzilla-highlight[name="Large"] {
58     font-size: 12pt;
59 }
60
61 .chatzilla-highlight[name="Small"] {
62     font-size: 8pt;
63 }
64
65 .chatzilla-highlight[name="SmallCap"] {
66     font-variant: small-caps;
67 }
68
69 .msg-data[msg-type="ACTION"] {
70     font-style: italic;
71 }
72
73 .msg-type[msg-type="JOIN"],
74 .msg-type[msg-type="PART"],
75 .msg-type[msg-type="QUIT"] {
76     font-weight: bold;
77 }
78
79 .msg-data[msg-type="QUIT"] {
80     font-variant: small-caps;
81     font-weight: bold;
82 }
83
84 .msg-data[msg-type="JOIN"],
85 .msg-data[msg-type="PART"] {
86     font-variant: small-caps;
87 }
88
89 .msg-data[msg-type="HELLO"],
90 .msg-type[msg-type="NICK"],
91 .msg-data[msg-type="NOTICE"] {
92     font-weight: bold;
93 }
94
95 .msg-data[msg-type="NICK"] {
96     font: 10pt courier;
97 }
98
99 /* :before and :after pseudoclasses form the decorations around nicknames.     */
100 .msg-user:before,
101 .msg-user:after {
102     font: 10pt courier;
103     font-weight: bolder;
104 }
105
106 .msg-user[dest-type="IRCUser"],
107 .msg-user[dest-type="IRCUser"][msg-dest$="ME!"] {
108     font-style: italic;
109 }
110
111 .msg-user[msg-user$="ME!"] {
112     font-weight: bold;
113 }