try fixing Australis customization without breaking pre-Australis mode
[themes.git] / EarlyBlue / chatzilla / output-default.css
CommitLineData
10d7e614
RK
1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
9ca9f6bd 4
5/*
6 * a version of the output window that uses only your default foreground and
7 * backgrond colors. Message types are distinguished by font changes.
8 * see output-base.css for details.
9 */
10
9ca9f6bd 11/* EarlyBlue needs little corrections though. */
12
cc7585ee
RK
13@import url("chrome://chatzilla/content/output-base.css");
14
9ca9f6bd 15a.chatzilla-link {
16 color: #336699;
17}
18
19a.chatzilla-link:visited {
20 color: #666699;
21}
22
88166091 23.header-outer {
24 background-color: white;
9ca9f6bd 25}
26
cc7585ee
RK
27.progress-fg {
28 background-color: grey;
29}
30
31.msg[msg-type="ACTION"] .msg-data {
32 font-style: italic;
33}
34
35.msg[msg-type="JOIN"] .msg-type,
36.msg[msg-type="PART"] .msg-type,
37.msg[msg-type="QUIT"] .msg-type {
9ca9f6bd 38 font-weight: bold;
39}
40
cc7585ee 41.msg[msg-type="QUIT"] .msg-data {
9ca9f6bd 42 font-variant: small-caps;
43 font-weight: bold;
44}
45
cc7585ee
RK
46.msg[msg-type="JOIN"] .msg-data,
47.msg[msg-type="PART"] .msg-data {
9ca9f6bd 48 font-variant: small-caps;
49}
50
cc7585ee
RK
51.msg[msg-type="HELLO"] .msg-data,
52.msg[msg-type="NICK"] .msg-type,
53.msg[msg-type="NOTICE"] .msg-data {
9ca9f6bd 54 font-weight: bold;
55}
56
cc7585ee 57.msg[msg-type="NICK"] .msg-data {
8ad8bf83 58 font-family: "Liberation Mono", Consolas, "Courier New", monospace;
9ca9f6bd 59}
60
61/* :before and :after pseudoclasses form the decorations around nicknames. */
62.msg-user:before,
63.msg-user:after {
cc7585ee 64 font-size: 100%;
8ad8bf83 65 font-family: "Liberation Mono", Consolas, "Courier New", monospace;
9ca9f6bd 66 font-weight: bolder;
67}
68
cc7585ee
RK
69.msg[dest-type="IRCUser"] .msg-user,
70.msg[dest-type="IRCUser"][msg-dest$="ME!"] .msg-user {
9ca9f6bd 71 font-style: italic;
72}
73
cc7585ee 74.msg[msg-user$="ME!"] .msg-user {
9ca9f6bd 75 font-weight: bold;
76}