adding chatzilla, adding menu icons for components, keeping up with classic
[themes.git] / LCARStrek / 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-label,
43 .header-data {
44   color: #000000;
45 }
46
47 #header-url:hover {
48   text-decoration: underline;
49 }
50
51 #outer-box {
52 /*  margin: 5px; */
53 }
54
55 #main-splitter {
56   border: none;
57 }
58
59 #input-widget,
60 #input-widget-multiline {
61   -moz-border-radius: 5px;
62   border: 1px solid #9C9CFF;
63 }
64
65 .highlight-menu-item:hover {
66   color: #000000 !important;
67   background: #008484 !important;
68 }
69
70 .view-button {
71   color: #FF9F00;
72 }
73
74 .view-button[state="current"] {
75   font-weight: bold;
76 }
77
78 .view-button[state="superfluous"] {
79   color: #E7ADE7;
80 }
81
82 .view-button[state="activity"] {
83   color: #FFCF00;
84 }
85
86 .view-button[state="attention"] {
87   color: red;
88 }
89
90 .view-button:hover {
91   color: #000000;
92 }
93
94 /* spaces after the 4th and 8th tab, so you can line them up with your Fn
95  * keys */
96 .view-button[viewKey="4"],
97 .view-button[viewKey="8"] {
98   margin-left: 5px;
99 }
100
101 .header-box, .usercount-data {
102   padding-top: 2px;
103   padding-bottom: 2px;
104   padding-right: 10px;
105 }
106
107 #server-nick {
108   padding-top: 5px;
109 }
110
111 .header-label {
112   font-weight: bold;
113   text-align: right;
114   margin-left: 10px;
115 }
116
117 .header-data {
118   text-align: left;
119   margin-left: 5px;
120 }
121
122 #channel-topic {
123   cursor: default;
124 }
125
126 #channel-topic[editable="true"] {
127   cursor: text;
128 }
129
130 .output-container {
131   -moz-border-radius: 5px;
132   border: 1px solid #9C9CFF;
133 }
134
135 /* op image column */
136 treechildren:-moz-tree-image(usercol-op, state-true) {
137   list-style-image: url(chrome://chatzilla/skin/images/is-op.gif)
138 }
139
140 treechildren:-moz-tree-image(usercol-op, state-false) {
141   list-style-image: url(chrome://chatzilla/skin/images/isnt-op.gif)
142 }
143
144 /* voice image column */
145 treechildren:-moz-tree-image(usercol-voice, state-true) {
146   list-style-image: url(chrome://chatzilla/skin/images/is-voice.gif)
147 }
148
149 treechildren:-moz-tree-image(usercol-voice, state-false) {
150   list-style-image: url(chrome://chatzilla/skin/images/isnt-voice.gif)
151 }