-- CHATZILLA CHANGES ONLY --

* static.js
Adjust IMAGEDIR and CSSDIR to use chrome:// urls
Append IMAGEDIR to gifs used in smiley insertion

* chatzilla.css
Background color in userlist
(border seems to bring back bug 24195)
This commit is contained in:
rginda%netscape.com 2000-01-18 08:56:22 +00:00
parent 4ab84070fb
commit 56d633b956
2 changed files with 6 additions and 7 deletions

View File

@ -26,9 +26,10 @@
var client = new Object();
//client.IMAGEDIR = "chrome://chatzilla/skin/images/";
client.IMAGEDIR = "resource:///chrome/chatzilla/skin/default/images/";
client.CSSDIR = "resource:///chrome/chatzilla/skin/default/";
client.IMAGEDIR = "chrome://chatzilla/skin/images/";
client.CSSDIR = "chrome://chatzilla/skin/";
//client.IMAGEDIR = "resource:///chrome/chatzilla/skin/default/images/";
//client.CSSDIR = "resource:///chrome/chatzilla/skin/default/";
client.COMMAND_CHAR = "/";
client.STEP_TIMEOUT = 500;
@ -219,7 +220,7 @@ function insertSmiley (emoticon, containerTag)
if (src)
{
var img = document.createElement ("html:img");
img.setAttribute ("src", src);
img.setAttribute ("src", client.IMAGEDIR + src);
containerTag.appendChild (img);
}

View File

@ -152,10 +152,8 @@ toolbar {
.quick-list {
/*
border: thin silver inset;
/* border: thin silver inset;*/
background: #dddddd;
*/
overflow: auto;