diff --git a/editor/jar.mn b/editor/jar.mn
index ab52c48edb1..1f800acfe4e 100644
--- a/editor/jar.mn
+++ b/editor/jar.mn
@@ -136,6 +136,13 @@ comm.jar:
content/editor/images/sick.gif (ui/composer/content/images/sick.gif)
content/editor/images/s_frown.gif (ui/composer/content/images/s_frown.gif)
content/editor/images/s_wink.gif (ui/composer/content/images/s_wink.gif)
+ content/editor/images/smile_n.gif (ui/composer/content/images/smile_n.gif)
+ content/editor/images/frown_n.gif (ui/composer/content/images/frown_n.gif)
+ content/editor/images/wink_n.gif (ui/composer/content/images/wink_n.gif)
+ content/editor/images/tongue_n.gif (ui/composer/content/images/tongue_n.gif)
+ content/editor/images/laughing_n.gif (ui/composer/content/images/laughing_n.gif)
+ content/editor/images/embarrassed_n.gif (ui/composer/content/images/embarrassed_n.gif)
+ content/editor/images/undecided_n.gif (ui/composer/content/images/undecided_n.gif)
content/editor/EdDialogCommon.js (ui/dialogs/content/EdDialogCommon.js)
content/editor/EdLinkProps.xul (ui/dialogs/content/EdLinkProps.xul)
content/editor/EdLinkProps.js (ui/dialogs/content/EdLinkProps.js)
diff --git a/editor/ui/composer/content/ComposerCommands.js b/editor/ui/composer/content/ComposerCommands.js
index cfa0ababbce..5beca3cd74f 100644
--- a/editor/ui/composer/content/ComposerCommands.js
+++ b/editor/ui/composer/content/ComposerCommands.js
@@ -897,13 +897,13 @@ var nsSetSmiley =
break;
case ";-)": strSml="s3";
break;
- case ";-P": strSml="s4";
+ case ":-P": strSml="s4";
break;
- case ":)": strSml="s5";
+ case ":-D": strSml="s5";
break;
- case ":(": strSml="s6";
+ case ":-[": strSml="s6";
break;
- case ";)": strSml="s7";
+ case ":-\\": strSml="s7";
break;
default: strSml="";
break;
diff --git a/editor/ui/composer/content/EditorContent.css b/editor/ui/composer/content/EditorContent.css
index 75bf757796d..3791089aad2 100644
--- a/editor/ui/composer/content/EditorContent.css
+++ b/editor/ui/composer/content/EditorContent.css
@@ -70,34 +70,34 @@ span[-moz-smiley] > span {
span[-moz-smiley="s1"] {
- background-image: url(chrome://editor/content/images/smile.gif);
+ background-image: url(chrome://editor/content/images/smile_n.gif);
}
span[-moz-smiley="s2"] {
- background-image: url(chrome://editor/content/images/frown.gif);
+ background-image: url(chrome://editor/content/images/frown_n.gif);
}
span[-moz-smiley="s3"] {
- background-image: url(chrome://editor/content/images/wink.gif);
+ background-image: url(chrome://editor/content/images/wink_n.gif);
}
span[-moz-smiley="s4"] {
- background-image: url(chrome://editor/content/images/sick.gif);
+ background-image: url(chrome://editor/content/images/tongue_n.gif);
}
span[-moz-smiley="s5"] {
- background-image: url(chrome://editor/content/images/s_smile.gif);
+ background-image: url(chrome://editor/content/images/laughing_n.gif);
}
span[-moz-smiley="s6"] {
- background-image: url(chrome://editor/content/images/s_frown.gif);
+ background-image: url(chrome://editor/content/images/embarrassed_n.gif);
}
span[-moz-smiley="s7"] {
- background-image: url(chrome://editor/content/images/s_wink.gif);
+ background-image: url(chrome://editor/content/images/undecided_n.gif);
}
diff --git a/editor/ui/composer/content/editorOverlay.xul b/editor/ui/composer/content/editorOverlay.xul
index 1673829c82c..f3d2d1d1ebc 100644
--- a/editor/ui/composer/content/editorOverlay.xul
+++ b/editor/ui/composer/content/editorOverlay.xul
@@ -107,7 +107,7 @@