remove rules that are only for compat with older apps than LCARtrek and EarlyBlue...
[themes.git] / EarlyBlue / chatzilla / output-default.css
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 /* EarlyBlue needs little corrections though. */
46
47 @import url("chrome://chatzilla/content/output-base.css");
48
49 a.chatzilla-link {
50     color: #336699;
51 }
52
53 a.chatzilla-link:visited {
54     color: #666699;
55 }
56
57 .header-outer {
58     background-color: white;
59 }
60
61 .progress-fg {
62     background-color: grey;
63 }
64
65 .msg[msg-type="ACTION"] .msg-data {
66     font-style: italic;
67 }
68
69 .msg[msg-type="JOIN"] .msg-type,
70 .msg[msg-type="PART"] .msg-type,
71 .msg[msg-type="QUIT"] .msg-type {
72     font-weight: bold;
73 }
74
75 .msg[msg-type="QUIT"] .msg-data {
76     font-variant: small-caps;
77     font-weight: bold;
78 }
79
80 .msg[msg-type="JOIN"] .msg-data,
81 .msg[msg-type="PART"] .msg-data {
82     font-variant: small-caps;
83 }
84
85 .msg[msg-type="HELLO"] .msg-data,
86 .msg[msg-type="NICK"] .msg-type,
87 .msg[msg-type="NOTICE"] .msg-data {
88     font-weight: bold;
89 }
90
91 .msg[msg-type="NICK"] .msg-data {
92     font-family: monospace;
93 }
94
95 /* :before and :after pseudoclasses form the decorations around nicknames.     */
96 .msg-user:before,
97 .msg-user:after {
98     font-size: 100%;
99     font-family: monospace;
100     font-weight: bolder;
101 }
102
103 .msg[dest-type="IRCUser"] .msg-user,
104 .msg[dest-type="IRCUser"][msg-dest$="ME!"] .msg-user {
105     font-style: italic;
106 }
107
108 .msg[msg-user$="ME!"] .msg-user {
109     font-weight: bold;
110 }