re-add question-48.png as it's still used by SeaMonkey's aboutPrivateBrowsing.css
[themes.git] / EarlyBlue / chatzilla / output-default.css
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/. */
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
11 /* EarlyBlue needs little corrections though. */
12
13 @import url("chrome://chatzilla/content/output-base.css");
14
15 a.chatzilla-link {
16     color: #336699;
17 }
18
19 a.chatzilla-link:visited {
20     color: #666699;
21 }
22
23 .header-outer {
24     background-color: white;
25 }
26
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 {
38     font-weight: bold;
39 }
40
41 .msg[msg-type="QUIT"] .msg-data {
42     font-variant: small-caps;
43     font-weight: bold;
44 }
45
46 .msg[msg-type="JOIN"] .msg-data,
47 .msg[msg-type="PART"] .msg-data {
48     font-variant: small-caps;
49 }
50
51 .msg[msg-type="HELLO"] .msg-data,
52 .msg[msg-type="NICK"] .msg-type,
53 .msg[msg-type="NOTICE"] .msg-data {
54     font-weight: bold;
55 }
56
57 .msg[msg-type="NICK"] .msg-data {
58     font-family: "Liberation Mono", Consolas, "Courier New", monospace;
59 }
60
61 /* :before and :after pseudoclasses form the decorations around nicknames.     */
62 .msg-user:before,
63 .msg-user:after {
64     font-size: 100%;
65     font-family: "Liberation Mono", Consolas, "Courier New", monospace;
66     font-weight: bolder;
67 }
68
69 .msg[dest-type="IRCUser"] .msg-user,
70 .msg[dest-type="IRCUser"][msg-dest$="ME!"] .msg-user {
71     font-style: italic;
72 }
73
74 .msg[msg-user$="ME!"] .msg-user {
75     font-weight: bold;
76 }