Skip to content

Commit

Permalink
Chat app: CSS fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
bard committed Jan 26, 2010
1 parent 7c5942d commit b89cdc8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion modules/chat/lib/display_filters.js
Expand Up @@ -143,7 +143,7 @@ function processEmoticons(xmlMessageBody) {
function(emoticonSymbol) { function(emoticonSymbol) {
var url = 'emoticons/' + _.emoticons[emoticonSymbol] + '.png'; var url = 'emoticons/' + _.emoticons[emoticonSymbol] + '.png';
var cls = "smiley smiley-" + _.emoticons[emoticonSymbol]; var cls = "smiley smiley-" + _.emoticons[emoticonSymbol];
return <span class={cls}>{emoticonSymbol}</span>; return <span class={cls} alt={emoticonSymbol} title={emoticonSymbol}></span>;
}); });
}); });
} }
2 changes: 0 additions & 2 deletions modules/chat/style/chat.css
Expand Up @@ -410,8 +410,6 @@ body.icons-on .smiley {
background-position: center bottom; background-position: center bottom;
display: -moz-inline-box; display: -moz-inline-box;
vertical-align: bottom; vertical-align: bottom;
overflow: hidden;
padding: 0px 0pt 0pt 32px;
height: 32px; height: 32px;
width: 32px; width: 32px;
max-width: 32px; max-width: 32px;
Expand Down

0 comments on commit b89cdc8

Please sign in to comment.