update both themes for suite default changes up to 2010-12-03
[themes.git] / LCARStrek / chatzilla / output-default.css
... / ...
CommitLineData
1/* -*- Mode: Text; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2 * ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4 *
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
9 *
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
14 *
15 * The Original Code is Chatzilla.
16 *
17 * The Initial Developer of the Original Code is
18 * New Dimensions Consulting, Inc.
19 * Portions created by the Initial Developer are Copyright (C) 1999
20 * the Initial Developer. All Rights Reserved.
21 *
22 * Contributor(s):
23 * Robert Ginda, rginda@ndcico.com, original author
24 *
25 * Alternatively, the contents of this file may be used under the terms of
26 * either the GNU General Public License Version 2 or later (the "GPL"), or
27 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 * in which case the provisions of the GPL or the LGPL are applicable instead
29 * of those above. If you wish to allow use of your version of this file only
30 * under the terms of either the GPL or the LGPL, and not to allow others to
31 * use your version of this file under the terms of the MPL, indicate your
32 * decision by deleting the provisions above and replace them with the notice
33 * and other provisions required by the GPL or the LGPL. If you do not delete
34 * the provisions above, a recipient may use your version of this file under
35 * the terms of any one of the MPL, the GPL or the LGPL.
36 *
37 * ***** END LICENSE BLOCK ***** */
38
39/*
40 * a version of the output window that uses only your default foreground and
41 * backgrond colors. Message types are distinguished by font changes.
42 * see output-base.css for details.
43 */
44
45/* LCARtrek needs corrections though. */
46
47@import url("chrome://chatzilla/content/output-base.css");
48
49body.chatzilla-body { /* The topmost container in the ChatZilla */
50 background: #000000; /* output window. */
51 color: #008484;
52}
53
54a.chatzilla-link {
55 color: #FFCF00;
56}
57
58a.chatzilla-link:visited {
59 color: #8050B0;
60}
61
62.header-outer {
63 background-color: #E7ADE7;
64}
65
66.header {
67 color: #000000;
68 background-color: #9C9CFF;
69 border-color: #FFCF00;
70 border-radius: 7px;
71}
72
73.value {
74 color: #008484;
75}
76
77#splash {
78 color: #FF9F00;
79}
80
81.chatzilla-rheet {
82 color: #FFCF00 !important;
83}
84
85.progress-fg {
86 background-color: #8050B0;
87}
88
89.msg[msg-type="ACTION"] .msg-data {
90 font-style: italic;
91}
92
93.msg[msg-type="JOIN"] .msg-type,
94.msg[msg-type="PART"] .msg-type,
95.msg[msg-type="QUIT"] .msg-type {
96 font-weight: bold;
97}
98
99.msg[msg-type="QUIT"] .msg-data {
100 font-variant: small-caps;
101 font-weight: bold;
102}
103
104.msg[msg-type="JOIN"] .msg-data,
105.msg[msg-type="PART"] .msg-data {
106 font-variant: small-caps;
107}
108
109.msg[msg-type="HELLO"] .msg-data,
110.msg[msg-type="NICK"] .msg-type,
111.msg[msg-type="NOTICE"] .msg-data {
112 font-weight: bold;
113}
114
115.msg[msg-type="NICK"] .msg-data {
116 font-family: monospace;
117}
118
119.msg-type { /* .msg-type = message type */
120 color: #000000; /* indicator */
121 background-color: #008484;
122 border-radius: 9px 0px 0px 9px;
123 border: 1px solid transparent;
124}
125
126.msg-data {
127 background-color: #9C9CFF;
128 border: 1px solid transparent;
129 border-radius: 0px 9px 9px 0px;
130 color: #000000;
131}
132
133.msg[mark="even"] .msg-data { /* use even/odd marks to create a */
134 color: #004242; /* subtle brightness change when */
135} /* the speaker changes. */
136
137.msg[msg-type="JOIN"] .msg-data,
138.msg[msg-type="PART"] .msg-data,
139.msg[msg-type="QUIT"] .msg-data,
140.msg[msg-type="NICK"] .msg-data,
141.msg[msg-type="NOTICE"] .msg-data,
142.msg[msg-type="INFO"] .msg-data,
143.msg[msg-type="MODE"] .msg-data,
144.msg[msg-type="HELLO"] .msg-data,
145.msg[msg-type="USAGE"] .msg-data {
146 background-color: #008484;
147 color: #000000;
148}
149
150.msg[msg-type="ERROR"] .msg-data,
151.msg[msg-type="KICK"] .msg-data {
152 background-color: red;
153 color: #000000;
154}
155
156.msg[msg-type="ACTION"] .msg-data {
157 font-weight: bold;
158 font-style: italic;
159}
160
161.msg-user a.chatzilla-link,
162.msg-user { /* msg-user = nickname portion of */
163 color: #008484 !important; /* a message (channel and query */
164} /* views) */
165
166.msg-user {
167 background-color: #9C9CFF;
168 border: 1px solid transparent;
169 border-radius: 9px 0px 0px 9px;
170}
171
172/* important="true" means that the message has text from your /stalk list in
173 * it, has your nickname in it, or was spoken by someone in your /stalk list.
174 */
175.msg[important="true"] .msg-user,
176.msg[important="true"] .msg-data {
177 background: #FF9F00 !important;
178 color: #000000 !important;
179}
180
181/* :before and :after pseudoclasses form the decorations around nicknames. */
182.msg-user:before,
183.msg-user:after {
184 font-size: 100%;
185 font-family: monospace;
186 font-weight: bolder;
187}
188
189.msg[msg-user$="ME!"] .msg-user:before,
190.msg[msg-user$="ME!"] .msg-user:after {
191 color: #000000;
192}
193.msg[msg-user$="ME!"] .msg-user {
194 border: 1px solid #FFCF00;
195 font-weight: bold;
196}
197
198.msg[msg-type="ACTION"] .msg-user:before,
199.msg[msg-type="ACTION"] .msg-user:after {
200 color: #000000;
201}
202
203.msg[msg-type="NOTICE"] .msg-user:before,
204.msg[msg-type="NOTICE"] .msg-user:after {
205 color: #000000;
206}
207
208/* private messages *not* in a query window */
209.msg[dest-type="IRCUser"] .msg-user:before,
210.msg[dest-type="IRCUser"] .msg-user:after {
211 color: #FFCF00;
212}
213
214.msg[dest-type="IRCUser"] .msg-user,
215.msg[dest-type="IRCUser"][msg-dest$="ME!"] .msg-user {
216 font-style: italic;
217}
218
219.msg[msg-dest$="ME!"] .msg-user:before,
220.msg[msg-dest$="ME!"] .msg-user:after {
221 color: #FFCF00;
222}
223
224.msg[dest-type="IRCUser"] .msg-user,
225.msg[msg-dest$="ME!"] .msg-user {
226 border: 1px solid #FFCF00;
227 font-weight: bold;
228}
229
230/* private messages in a query window */
231.msg[view-type="IRCUser"] .msg-user:before,
232.msg[view-type="IRCUser"] .msg-user:after {
233 color: #008484;
234}
235
236.msg[view-type="IRCUser"][msg-user$="ME!"] .msg-user:before,
237.msg[view-type="IRCUser"][msg-user$="ME!"] .msg-user:after {
238 color: #008484;
239}