improve tab strip styling slightly
[themes.git] / EarlyBlue / chatzilla / output-default.css
CommitLineData
9ca9f6bd 1/* -*- Mode: Text; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
cc7585ee
RK
2 * ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
9ca9f6bd 4 *
cc7585ee
RK
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.
9ca9f6bd 14 *
15 * The Original Code is Chatzilla.
16 *
cc7585ee
RK
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.
9ca9f6bd 21 *
22 * Contributor(s):
cc7585ee 23 * Robert Ginda, rginda@ndcico.com, original author
9ca9f6bd 24 *
cc7585ee
RK
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 ***** */
9ca9f6bd 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
9ca9f6bd 45/* EarlyBlue needs little corrections though. */
46
cc7585ee
RK
47@import url("chrome://chatzilla/content/output-base.css");
48
9ca9f6bd 49a.chatzilla-link {
50 color: #336699;
51}
52
53a.chatzilla-link:visited {
54 color: #666699;
55}
56
88166091 57.header-outer {
58 background-color: white;
9ca9f6bd 59}
60
cc7585ee
RK
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 {
9ca9f6bd 72 font-weight: bold;
73}
74
cc7585ee 75.msg[msg-type="QUIT"] .msg-data {
9ca9f6bd 76 font-variant: small-caps;
77 font-weight: bold;
78}
79
cc7585ee
RK
80.msg[msg-type="JOIN"] .msg-data,
81.msg[msg-type="PART"] .msg-data {
9ca9f6bd 82 font-variant: small-caps;
83}
84
cc7585ee
RK
85.msg[msg-type="HELLO"] .msg-data,
86.msg[msg-type="NICK"] .msg-type,
87.msg[msg-type="NOTICE"] .msg-data {
9ca9f6bd 88 font-weight: bold;
89}
90
cc7585ee
RK
91.msg[msg-type="NICK"] .msg-data {
92 font-family: monospace;
9ca9f6bd 93}
94
95/* :before and :after pseudoclasses form the decorations around nicknames. */
96.msg-user:before,
97.msg-user:after {
cc7585ee
RK
98 font-size: 100%;
99 font-family: monospace;
9ca9f6bd 100 font-weight: bolder;
101}
102
cc7585ee
RK
103.msg[dest-type="IRCUser"] .msg-user,
104.msg[dest-type="IRCUser"][msg-dest$="ME!"] .msg-user {
9ca9f6bd 105 font-style: italic;
106}
107
cc7585ee 108.msg[msg-user$="ME!"] .msg-user {
9ca9f6bd 109 font-weight: bold;
110}