source: sandbox/jabberit_messenger/trophy_expresso/xsl/contactsList.xsl @ 2471

Revision 2471, 1.6 KB checked in by alexandrecorreia, 14 years ago (diff)

Ticket #986 - Correção da lista de contatos para a leitura de um contato em varios grupos.

Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3        <xsl:output method="html" omit-xml-declaration="yes"/>
4       
5        <xsl:param name="path_jabberit" />
6        <xsl:param name="full_name" />
7       
8        <xsl:template match="contacts_list">
9               
10                <fieldset style="margin:2px; border:1px dotted #000000; height: 90px;">
11                        <div style="margin:0px; width:60px; height:80px; background-image:url('{$path_jabberit}/templates/default/images/photo.png');"/>
12                       
13                        <div style="position: absolute; margin-top: -19px; margin-left: 75px; cursor: pointer;" onclick="loadIM.setPresence(this);">
14                                <div id="statusJabberImg" style="background-image: url('{$path_jabberit}/templates/default/images/available.gif'); margin-left: 13px;width:15px; height:15px;"></div>
15                                <div id="statusJabberText" style="margin-top: -13px; margin-left: 30px;"> Disponível </div>
16                                <div style="background-image: url('{$path_jabberit}/templates/default/images/arrow_down.gif'); margin-top: -8px; margin-left: 0px; width:15px; height:15px;"/>
17                        </div>
18                       
19                        <div style="position: absolute; margin-top: -50px; margin-left: 75px;">
20                                <button style="width:35px;" alt="Adicionar Contatos" title="Adicionar Contatos" onclick="loadIM.addContact();">
21                                        <img src="{$path_jabberit}/templates/default/images/users.png"/>
22                                </button>
23                        </div> 
24                        <div style="positon: absolute; margin-top: -75px; margin-left: 75px;"> <xsl:value-of select="$full_name"/> </div>
25                </fieldset>
26                               
27                <div id="JabberIMRoster" style="margin-top:3px; overflow-y: auto;"></div>
28                 
29        </xsl:template>
30       
31</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.