mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 06:43:32 +00:00
-- 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:
parent
4ab84070fb
commit
56d633b956
@ -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);
|
||||
}
|
||||
|
||||
|
@ -152,10 +152,8 @@ toolbar {
|
||||
|
||||
.quick-list {
|
||||
|
||||
/*
|
||||
border: thin silver inset;
|
||||
/* border: thin silver inset;*/
|
||||
background: #dddddd;
|
||||
*/
|
||||
overflow: auto;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user