Bug 1494925 - Fix the squashed operator icons in chat. r=jorgk

This commit is contained in:
Richard Marti 2018-09-28 13:12:25 +02:00
Родитель b713124749
Коммит 7bc796e03e
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -1052,7 +1052,7 @@
if (image)
aItem.firstChild.setAttribute("src", "chrome://messenger/skin/" + image + ".png");
else
aItem.firstChild.removeAttribute("image");
aItem.firstChild.removeAttribute("src");
]]>
</body>
</method>
@ -1125,6 +1125,7 @@
var style = "color: hsl(" + color + ", 100%, 40%);";
item.colorStyle = style;
item.setAttribute("style", style);
item.setAttribute("align", "center");
if (!this._isBuddyActive(name))
item.setAttribute("inactive", "true");
item.color = color;