prepare for 1.6 release
[themes.git] / EarlyBlue / chatzilla / chatzilla.css
1 /*
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 Mozilla JSIRC Library.
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  *  Robert Kaiser, KaiRo@KaiRo.at, skinning
22  * 
23  * Styles for UI, See output-default.css for output window styles
24  *
25  */
26
27 @import url(chrome://communicator/skin/);
28
29 window {
30   width: 640px;
31   height: 480px;
32 }
33
34 #menu-view-none {
35   display: none;
36 }
37
38 #tabpanels-contents-box {
39   margin: 3px;
40 }
41
42 #header-url:hover {
43   text-decoration: underline;
44 }
45
46 #outer-box {
47 /*  margin: 5px; */
48   margin-left: 2px;
49   margin-bottom: 2px;
50 }
51
52 #main-splitter {
53   min-width: 6px;
54   border: none;
55 }
56
57 #header-bar-tbar {
58   border-bottom: none;
59 }
60
61 #input-widget,
62 #input-widget-multiline {
63   border: 1px inset #CCD0DD;
64 }
65
66 .highlight-menu-item:hover {
67   color: #000000 !important;
68   background: #336699 !important;
69 }
70
71 .view-button {
72   color: #000000;
73 }
74
75 .view-button[state="current"] {
76   font-weight: bold;
77 }
78
79 .view-button[state="superfluous"] {
80   color: #666699;
81 }
82
83 .view-button[state="activity"] {
84   color: #336699;
85 }
86
87 .view-button[state="attention"] {
88   color: red;
89 }
90
91 /* spaces after the 4th and 8th tab, so you can line them up with your Fn
92  * keys */
93 .view-button[viewKey="4"],
94 .view-button[viewKey="8"] {
95   margin-left: 5px;
96 }
97
98 .header-box, .usercount-data {
99   padding-top: 2px;
100   padding-bottom: 2px;
101   padding-right: 10px;
102 }
103
104 #server-nick {
105   padding-top: 5px;
106 }
107
108 .header-label {
109   font-weight: bold;
110   text-align: right;
111   margin-left: 10px;
112 }
113
114 .header-data {
115   text-align: left;
116   margin-left: 5px;
117 }
118
119 #channel-topic {
120   cursor: default;
121 }
122
123 #channel-topic[editable="true"] {
124   cursor: text;
125 }
126
127 .output-container {
128   border: 1px inset #CCD0DD;
129 }
130
131 /* op image column */
132 treechildren::-moz-tree-image(usercol-op, state-true) {
133   list-style-image: url(chrome://chatzilla/skin/images/is-op.gif)
134 }
135
136 treechildren::-moz-tree-image(usercol-op, state-false) {
137   list-style-image: url(chrome://chatzilla/skin/images/isnt-op.gif)
138 }
139
140 /* voice image column */
141 treechildren::-moz-tree-image(usercol-voice, state-true) {
142   list-style-image: url(chrome://chatzilla/skin/images/is-voice.gif)
143 }
144
145 treechildren::-moz-tree-image(usercol-voice, state-false) {
146   list-style-image: url(chrome://chatzilla/skin/images/isnt-voice.gif)
147 }