| 1 | /* -*- Mode: Text; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- |
| 2 | * ***** BEGIN LICENSE BLOCK ***** |
| 3 | * Version: MPL 1.1/GPL 2.0/LGPL 2.1 |
| 4 | * |
| 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. |
| 14 | * |
| 15 | * The Original Code is Chatzilla. |
| 16 | * |
| 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. |
| 21 | * |
| 22 | * Contributor(s): |
| 23 | * Robert Ginda, rginda@ndcico.com, original author |
| 24 | * |
| 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 ***** */ |
| 38 | |
| 39 | /* |
| 40 | * a dark background/light text version of the output window. |
| 41 | * see output-base.css for details. |
| 42 | */ |
| 43 | |
| 44 | @import url("chrome://chatzilla/content/output-base.css"); |
| 45 | |
| 46 | body.chatzilla-body { /* The topmost container in the ChatZilla */ |
| 47 | background: #000000; /* output window. */ |
| 48 | color: #E7ADE7; |
| 49 | } |
| 50 | |
| 51 | a.chatzilla-link { |
| 52 | color: #FFCF00; |
| 53 | } |
| 54 | |
| 55 | a.chatzilla-link:visited { |
| 56 | color: #8050B0; |
| 57 | } |
| 58 | |
| 59 | .header-outer { |
| 60 | background-color: #000000; |
| 61 | } |
| 62 | |
| 63 | .header { |
| 64 | color: #000000; |
| 65 | background-color: #9C9CFF; |
| 66 | border-radius: 7px; |
| 67 | } |
| 68 | |
| 69 | .progress-fg { |
| 70 | background-color: #008484; |
| 71 | } |
| 72 | |
| 73 | .value { |
| 74 | color: #008484; |
| 75 | } |
| 76 | |
| 77 | /* Style userlist as white-on-black. */ |
| 78 | treechildren { |
| 79 | background: #FFCF00; |
| 80 | color: #000000; |
| 81 | } |
| 82 | |
| 83 | /* For Mac, who's theme sucks. */ |
| 84 | treechildren::-moz-tree-row(unselected), |
| 85 | treechildren::-moz-tree-cell(unselected), |
| 86 | treechildren::-moz-tree-cell-text(unselected) { |
| 87 | border-color: #FFCF00 !important; |
| 88 | background: #FFCF00 !important; |
| 89 | color: #000000 !important; |
| 90 | } |
| 91 | |
| 92 | #splash { |
| 93 | color: #008484; |
| 94 | } |
| 95 | |
| 96 | #usr-descnodes, |
| 97 | #ch-topicnodes { |
| 98 | color: #000000; |
| 99 | } |
| 100 | |
| 101 | [condition] { |
| 102 | font-weight: bold; |
| 103 | } |
| 104 | |
| 105 | [condition="red"] { |
| 106 | color: red; |
| 107 | } |
| 108 | |
| 109 | [condition="yellow"] { |
| 110 | color: yellow; |
| 111 | } |
| 112 | |
| 113 | [condition="green"] { |
| 114 | color: #008484; |
| 115 | } |
| 116 | |
| 117 | .msg[msg-type="JOIN"] .msg-data a.chatzilla-link, |
| 118 | .msg[msg-type="PART"] .msg-data a.chatzilla-link { |
| 119 | /* color: #9C9CFF; */ |
| 120 | } |
| 121 | |
| 122 | .msg[msg-type="KICK"] .msg-data a.chatzilla-link { |
| 123 | /* color: #000000; */ |
| 124 | } |
| 125 | |
| 126 | .chatzilla-rheet { |
| 127 | color: #FFCF00 !important; |
| 128 | } |
| 129 | |
| 130 | .chatzilla-highlight[name="Slate"] { |
| 131 | color: #FFCF00; |
| 132 | background: #15272d; |
| 133 | } |
| 134 | |
| 135 | .chatzilla-highlight[name="Plum"] { |
| 136 | color: #FFCF00; |
| 137 | background: #442144; |
| 138 | } |
| 139 | |
| 140 | .chatzilla-highlight[name="Brown"] { |
| 141 | color: #FFCF00; |
| 142 | background: #562a14; |
| 143 | } |
| 144 | |
| 145 | .msg-user { |
| 146 | background-color: #000000; |
| 147 | border-radius: 7px 0px 0px 7px; |
| 148 | border: 1px solid #004242; |
| 149 | } |
| 150 | |
| 151 | .msg-data { |
| 152 | background-color: #000000; |
| 153 | border-radius: 0px 7px 7px 0px; |
| 154 | border: 1px solid #735673; |
| 155 | } |
| 156 | |
| 157 | .msg-type { /* .msg-type = message type */ |
| 158 | color: #008484; /* indicator */ |
| 159 | } |
| 160 | |
| 161 | .msg-user a.chatzilla-link, |
| 162 | .msg-user { /* msg-user = nickname portion of */ |
| 163 | color: #FF9F00 !important; /* a message (channel and query */ |
| 164 | } /* views) */ |
| 165 | |
| 166 | .msg[mark="even"] .msg-data { /* use even/odd marks to create a */ |
| 167 | color: #9C9CFF; /* subtle brightness change when */ |
| 168 | } /* the speaker changes. */ |
| 169 | |
| 170 | .msg[msg-type="JOIN"] .msg-data, |
| 171 | .msg[msg-type="PART"] .msg-data { |
| 172 | color: #008484; |
| 173 | } |
| 174 | |
| 175 | .msg[msg-type="HELLO"] .msg-data { |
| 176 | color: #FF9F00; |
| 177 | } |
| 178 | |
| 179 | .msg[msg-type="ERROR"] .msg-data, |
| 180 | .msg[msg-type="DISCONNECT"] .msg-data { |
| 181 | color: red; |
| 182 | } |
| 183 | |
| 184 | .msg[msg-type="USAGE"] .msg-data { |
| 185 | color: #FF9F00; |
| 186 | } |
| 187 | |
| 188 | .msg[msg-type="ACTION"] .msg-data { |
| 189 | font-weight: bold; |
| 190 | font-style: italic; |
| 191 | } |
| 192 | |
| 193 | .msg[msg-type="NICK"] .msg-data { |
| 194 | color: #008484; |
| 195 | } |
| 196 | |
| 197 | .msg[msg-type="NOTICE"] .msg-data, |
| 198 | .msg[msg-type="MODE"] .msg-data { |
| 199 | color: #008484; |
| 200 | } |
| 201 | |
| 202 | .msg[msg-type="NOTICE"] .msg-data a.chatzilla-link, |
| 203 | .msg[msg-type="MODE"] .msg-data a.chatzilla-link { |
| 204 | color: #008484; |
| 205 | } |
| 206 | |
| 207 | .msg[msg-type="KICK"] .msg-data { |
| 208 | color: red; |
| 209 | } |
| 210 | |
| 211 | .msg[msg-type="QUIT"] .msg-data { |
| 212 | color: #008484; |
| 213 | } |
| 214 | |
| 215 | /* important="true" means that the message has text from your /stalk list in |
| 216 | * it, has your nickname in it, or was spoken by someone in your /stalk list. |
| 217 | */ |
| 218 | .msg[important="true"] .msg-user, |
| 219 | .msg[important="true"] .msg-data { |
| 220 | background: #4D4D7F !important; |
| 221 | color: #FFCF00 !important; |
| 222 | } |
| 223 | |
| 224 | .msg:before, |
| 225 | .msg:after { |
| 226 | color: #008484; |
| 227 | } |
| 228 | |
| 229 | .msg[msg-user$="ME!"] .msg-user:before, |
| 230 | .msg[msg-user$="ME!"] .msg-user:after { |
| 231 | color: #9C9CFF; |
| 232 | } |
| 233 | .msg[msg-user$="ME!"] .msg-user { |
| 234 | border: 1px solid #9C9CFF; |
| 235 | } |
| 236 | |
| 237 | .msg[msg-type="ACTION"] .msg-user:before, |
| 238 | .msg[msg-type="ACTION"] .msg-user:after { |
| 239 | color: #008484; |
| 240 | } |
| 241 | |
| 242 | .msg[msg-type="NOTICE"] .msg-user:before, |
| 243 | .msg[msg-type="NOTICE"] .msg-user:after { |
| 244 | color: #008484; |
| 245 | } |
| 246 | |
| 247 | /* private messages *not* in a query window */ |
| 248 | .msg[dest-type="IRCUser"] .msg-user:before, |
| 249 | .msg[dest-type="IRCUser"] .msg-user:after { |
| 250 | color: #FFCF00; |
| 251 | } |
| 252 | |
| 253 | .msg[msg-dest$="ME!"] .msg-user:before, |
| 254 | .msg[msg-dest$="ME!"] .msg-user:after { |
| 255 | color: #FFCF00; |
| 256 | } |
| 257 | |
| 258 | /* private messages in a query window */ |
| 259 | .msg[view-type="IRCUser"] .msg-user:before, |
| 260 | .msg[view-type="IRCUser"] .msg-user:after { |
| 261 | color: #008484; |
| 262 | } |
| 263 | |
| 264 | .msg[view-type="IRCUser"][msg-user$="ME!"] .msg-user:before, |
| 265 | .msg[view-type="IRCUser"][msg-user$="ME!"] .msg-user:after { |
| 266 | color: #008484; |
| 267 | } |