From: robert Date: Thu, 22 Jan 2004 20:31:23 +0000 (+0000) Subject: update chatzilla skinto Mozilla 1.6 version X-Git-Tag: EarlyBlue-2.0a1~66 X-Git-Url: https://git-public.kairo.at/?p=themes.git;a=commitdiff_plain;h=88166091b3c048013455504307785c00815afc81 update chatzilla skinto Mozilla 1.6 version --- diff --git a/EarlyBlue/chatzilla/browserOverlay.css b/EarlyBlue/chatzilla/browserOverlay.css new file mode 100644 index 00000000..3db1f357 --- /dev/null +++ b/EarlyBlue/chatzilla/browserOverlay.css @@ -0,0 +1,37 @@ +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1/GPL 2.0/LGPL 2.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is ChatZilla. + * + * The Initial Developer of the Original Code is Andreas Premstaller. + * + * Contributor(s): + * James Ross + * + * Alternatively, the contents of this file may be used under the terms of + * either the GNU General Public License Version 2 or later (the "GPL"), or + * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), + * in which case the provisions of the GPL or the LGPL are applicable instead + * of those above. If you wish to allow use of your version of this file only + * under the terms of either the GPL or the LGPL, and not to allow others to + * use your version of this file under the terms of the MPL, indicate your + * decision by deleting the provisions above and replace them with the notice + * and other provisions required by the GPL or the LGPL. If you do not delete + * the provisions above, a recipient may use your version of this file under + * the terms of any one of the MPL, the GPL or the LGPL. + * + * ***** END LICENSE BLOCK ***** */ + +#tb-chatzilla-open { + list-style-image: url("chrome://chatzilla/skin/images/taskbar-irc.gif"); +} diff --git a/EarlyBlue/chatzilla/chatzilla.css b/EarlyBlue/chatzilla/chatzilla.css index ad079556..93abb5db 100644 --- a/EarlyBlue/chatzilla/chatzilla.css +++ b/EarlyBlue/chatzilla/chatzilla.css @@ -69,7 +69,7 @@ window { } .view-button { - color: #000000; + /* do NOT set color, at least not without background. :) */ } .view-button[state="current"] { @@ -101,6 +101,10 @@ window { padding-right: 10px; } +#user-list { + margin: 0px; +} + #server-nick { padding-top: 5px; } @@ -128,20 +132,66 @@ window { border: 1px inset #CCD0DD; } -/* op image column */ -treechildren::-moz-tree-image(usercol-op, state-true) { - list-style-image: url(chrome://chatzilla/skin/images/is-op.gif) +treecol { + border: none; +} + +treechildren::-moz-tree-cell-text { + padding-top: 1px; +} + +/* The userlist can be in one of two state. In "symbol", the user's + * channel mode is shown as a @ or + image, while in "graphic" mode, the + * image is one of the LED images. + */ + +/* no mode */ +treechildren::-moz-tree-image { + list-style-image: url(chrome://chatzilla/skin/images/no-symbol.gif); + margin-right: 3px; +} + +#user-list[mode="graphic"] treechildren::-moz-tree-image { + list-style-image: url(chrome://chatzilla/skin/images/no-graphic.gif); +} + +/* voice */ +treechildren::-moz-tree-image(voice-true) { + list-style-image: url(chrome://chatzilla/skin/images/voice-symbol.gif); +} + +#user-list[mode="graphic"] treechildren::-moz-tree-image(voice-true) { + list-style-image: url(chrome://chatzilla/skin/images/voice-graphic.gif); +} + +/* half-chanop */ +treechildren::-moz-tree-image(halfop-true) { + list-style-image: url(chrome://chatzilla/skin/images/halfop-symbol.gif); +} + +#user-list[mode="graphic"] treechildren::-moz-tree-image(halfop-true) { + list-style-image: url(chrome://chatzilla/skin/images/halfop-graphic.gif); +} + +/* chanop */ +treechildren::-moz-tree-image(op-true) { + list-style-image: url(chrome://chatzilla/skin/images/op-symbol.gif); } -treechildren::-moz-tree-image(usercol-op, state-false) { - list-style-image: url(chrome://chatzilla/skin/images/isnt-op.gif) +#user-list[mode="graphic"] treechildren::-moz-tree-image(op-true) { + list-style-image: url(chrome://chatzilla/skin/images/op-graphic.gif); } -/* voice image column */ -treechildren::-moz-tree-image(usercol-voice, state-true) { - list-style-image: url(chrome://chatzilla/skin/images/is-voice.gif) +.colorGrid { + width: 24px; + height: 16px; + border: 1px solid black; + -moz-box-align: center; + -moz-box-pack: center; } -treechildren::-moz-tree-image(usercol-voice, state-false) { - list-style-image: url(chrome://chatzilla/skin/images/isnt-voice.gif) +#colorTooltip { + padding: 0px; + -moz-box-align: center; + -moz-box-pack: center; } diff --git a/EarlyBlue/chatzilla/images/halfop-graphic.gif b/EarlyBlue/chatzilla/images/halfop-graphic.gif new file mode 100644 index 00000000..d1909422 Binary files /dev/null and b/EarlyBlue/chatzilla/images/halfop-graphic.gif differ diff --git a/EarlyBlue/chatzilla/images/halfop-symbol.gif b/EarlyBlue/chatzilla/images/halfop-symbol.gif new file mode 100644 index 00000000..b2eb5770 Binary files /dev/null and b/EarlyBlue/chatzilla/images/halfop-symbol.gif differ diff --git a/EarlyBlue/chatzilla/images/input-send.gif b/EarlyBlue/chatzilla/images/input-send.gif new file mode 100644 index 00000000..8bf0a55c Binary files /dev/null and b/EarlyBlue/chatzilla/images/input-send.gif differ diff --git a/EarlyBlue/chatzilla/images/is-op.gif b/EarlyBlue/chatzilla/images/is-op.gif deleted file mode 100644 index 83f3fa50..00000000 Binary files a/EarlyBlue/chatzilla/images/is-op.gif and /dev/null differ diff --git a/EarlyBlue/chatzilla/images/is-voice.gif b/EarlyBlue/chatzilla/images/is-voice.gif deleted file mode 100644 index c0b2e21b..00000000 Binary files a/EarlyBlue/chatzilla/images/is-voice.gif and /dev/null differ diff --git a/EarlyBlue/chatzilla/images/isnt-op.gif b/EarlyBlue/chatzilla/images/isnt-op.gif deleted file mode 100644 index 6681813d..00000000 Binary files a/EarlyBlue/chatzilla/images/isnt-op.gif and /dev/null differ diff --git a/EarlyBlue/chatzilla/images/multiline-contract.gif b/EarlyBlue/chatzilla/images/multiline-contract.gif new file mode 100644 index 00000000..8cd0f0e0 Binary files /dev/null and b/EarlyBlue/chatzilla/images/multiline-contract.gif differ diff --git a/EarlyBlue/chatzilla/images/multiline-expand.gif b/EarlyBlue/chatzilla/images/multiline-expand.gif new file mode 100644 index 00000000..0ef1a166 Binary files /dev/null and b/EarlyBlue/chatzilla/images/multiline-expand.gif differ diff --git a/EarlyBlue/chatzilla/images/isnt-voice.gif b/EarlyBlue/chatzilla/images/no-graphic.gif similarity index 100% rename from EarlyBlue/chatzilla/images/isnt-voice.gif rename to EarlyBlue/chatzilla/images/no-graphic.gif diff --git a/EarlyBlue/chatzilla/images/no-symbol.gif b/EarlyBlue/chatzilla/images/no-symbol.gif new file mode 100644 index 00000000..4cde0402 Binary files /dev/null and b/EarlyBlue/chatzilla/images/no-symbol.gif differ diff --git a/EarlyBlue/chatzilla/images/op-graphic.gif b/EarlyBlue/chatzilla/images/op-graphic.gif new file mode 100644 index 00000000..e7a103fa Binary files /dev/null and b/EarlyBlue/chatzilla/images/op-graphic.gif differ diff --git a/EarlyBlue/chatzilla/images/op-symbol.gif b/EarlyBlue/chatzilla/images/op-symbol.gif new file mode 100644 index 00000000..bd26b631 Binary files /dev/null and b/EarlyBlue/chatzilla/images/op-symbol.gif differ diff --git a/EarlyBlue/chatzilla/images/voice-graphic.gif b/EarlyBlue/chatzilla/images/voice-graphic.gif new file mode 100644 index 00000000..b9fc0d01 Binary files /dev/null and b/EarlyBlue/chatzilla/images/voice-graphic.gif differ diff --git a/EarlyBlue/chatzilla/images/voice-symbol.gif b/EarlyBlue/chatzilla/images/voice-symbol.gif new file mode 100644 index 00000000..be617306 Binary files /dev/null and b/EarlyBlue/chatzilla/images/voice-symbol.gif differ diff --git a/EarlyBlue/chatzilla/output-dark.css b/EarlyBlue/chatzilla/output-dark.css index ef9523ef..65b4a86e 100644 --- a/EarlyBlue/chatzilla/output-dark.css +++ b/EarlyBlue/chatzilla/output-dark.css @@ -43,6 +43,34 @@ a.chatzilla-link:visited { color: #666699; } +.header-outer { + background-color: black; +} + +.header { + color: lightslategrey; + background-color: #333333; +/* -moz-opacity: 0.9; causes memory leak? */ + -moz-border-radius: 7px; +} + +.value { + color: silver; +} + +#splash { + color: #444444; +} + +#usr-descnodes, +#ch-topicnodes { + color: white; +} + +[condition] { + font-weight: bold; +} + .msg-data[msg-type="JOIN"] a.chatzilla-link, .msg-data[msg-type="PART"] a.chatzilla-link { color: lightcyan; diff --git a/EarlyBlue/chatzilla/output-default.css b/EarlyBlue/chatzilla/output-default.css index 85a0a689..855a8190 100644 --- a/EarlyBlue/chatzilla/output-default.css +++ b/EarlyBlue/chatzilla/output-default.css @@ -41,28 +41,8 @@ a.chatzilla-link:visited { color: #666699; } -.chatzilla-highlight[name="Bold"] { - font-weight: bold; -} - -.chatzilla-highlight[name="Italic"] { - font-style: italic; -} - -.chatzilla-highlight[name="Large"] { - font-size: 12pt; -} - -.chatzilla-highlight[name="Small"] { - font-size: 8pt; -} - -.chatzilla-highlight[name="SmallCap"] { - font-variant: small-caps; -} - -.msg-data[msg-type="ACTION"] { - font-style: italic; +.header-outer { + background-color: white; } .msg-type[msg-type="JOIN"], diff --git a/EarlyBlue/chatzilla/output-light.css b/EarlyBlue/chatzilla/output-light.css index 7e0d4de5..9ec1e65d 100644 --- a/EarlyBlue/chatzilla/output-light.css +++ b/EarlyBlue/chatzilla/output-light.css @@ -18,27 +18,64 @@ * * Contributor(s): * Robert Ginda, rginda@ndcico.com, original author - * + * * Styles for output window * */ -/* +/* * a light background/dark text version of the output window. - * see output-base.css for details. + * see output-base.css for details. */ @import url(chrome://chatzilla/content/output-base.css); body.chatzilla-body { /* The topmost container in the ChatZilla */ background: white; /* output window. */ - color: #222222; + color: #222222; } a.chatzilla-link { color: #777499 /*#ea3838*/; } +.header-outer { + background-color: #d1d0ea; +} + +.header { + color: darkslategrey; + background-color: #EEEEEE; +/* -moz-opacity: 0.9;*/ + border: 1px #777499 solid; + -moz-border-radius: 7px; +} + +#splash { + color: #DDDDDD; +} + +#usr-descnodes, +#ch-topicnodes { + color: black; +} + +[condition] { + font-weight: bold; +} + +[condition="red"] { + color: red; +} + +[condition="yellow"] { + color: orange; +} + +[condition="green"] { + color: #2ec908; +} + .msg-data[msg-type="QUIT"] a.chatzilla-link { color: #d1ecf9; }