make textbox highlight work without the regiurement of transparent border colors...
[themes.git] / EarlyBlue / chatzilla / output-default.css
CommitLineData
9ca9f6bd 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
36a.chatzilla-link {
37 color: #336699;
38}
39
40a.chatzilla-link:visited {
41 color: #666699;
42}
43
88166091 44.header-outer {
45 background-color: white;
9ca9f6bd 46}
47
48.msg-type[msg-type="JOIN"],
49.msg-type[msg-type="PART"],
50.msg-type[msg-type="QUIT"] {
51 font-weight: bold;
52}
53
54.msg-data[msg-type="QUIT"] {
55 font-variant: small-caps;
56 font-weight: bold;
57}
58
59.msg-data[msg-type="JOIN"],
60.msg-data[msg-type="PART"] {
61 font-variant: small-caps;
62}
63
64.msg-data[msg-type="HELLO"],
65.msg-type[msg-type="NICK"],
66.msg-data[msg-type="NOTICE"] {
67 font-weight: bold;
68}
69
70.msg-data[msg-type="NICK"] {
71 font: 10pt courier;
72}
73
74/* :before and :after pseudoclasses form the decorations around nicknames. */
75.msg-user:before,
76.msg-user:after {
77 font: 10pt courier;
78 font-weight: bolder;
79}
80
81.msg-user[dest-type="IRCUser"],
82.msg-user[dest-type="IRCUser"][msg-dest$="ME!"] {
83 font-style: italic;
84}
85
86.msg-user[msg-user$="ME!"] {
87 font-weight: bold;
88}