Commit c5e44a02 authored by JC Brand's avatar JC Brand

Bugfix. The remove icon wasn't being shown for contacts.

parent 5cb74239
...@@ -569,6 +569,7 @@ dd.available-chatroom:hover a.room-info { ...@@ -569,6 +569,7 @@ dd.available-chatroom:hover a.room-info {
} }
#converse-roster a.open-chat { #converse-roster a.open-chat {
line-height: 21px;
width: 85%; width: 85%;
} }
#converse-roster dd:hover a.open-chat { #converse-roster dd:hover a.open-chat {
......
...@@ -1848,11 +1848,11 @@ ...@@ -1848,11 +1848,11 @@
'<a class="open-chat" title="'+__('Click to chat with this contact')+'" href="#">'+ '<a class="open-chat" title="'+__('Click to chat with this contact')+'" href="#">'+
'<span class="icon-{{ chat_status }}" title="{{ status_desc }}"></span>{{ fullname }}'+ '<span class="icon-{{ chat_status }}" title="{{ status_desc }}"></span>{{ fullname }}'+
'</a>' + '</a>' +
'<a class="remove-xmpp-contact" title="'+__('Click to remove this contact')+'" href="#"></a>'), '<a class="remove-xmpp-contact icon-remove" title="'+__('Click to remove this contact')+'" href="#"></a>'),
pending_template: _.template( pending_template: _.template(
'<span>{{ fullname }}</span>' + '<span>{{ fullname }}</span>' +
'<a class="remove-xmpp-contact" title="'+__('Click to remove this contact')+'" href="#"></a>'), '<a class="remove-xmpp-contact icon-remove" title="'+__('Click to remove this contact')+'" href="#"></a>'),
request_template: _.template('<div>{{ fullname }}</div>' + request_template: _.template('<div>{{ fullname }}</div>' +
'<button type="button" class="accept-xmpp-request">' + '<button type="button" class="accept-xmpp-request">' +
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment