source: sandbox/jabberit_messenger/trophy/xsl/chatBox.xsl @ 2312

Revision 2312, 898 bytes checked in by alexandrecorreia, 14 years ago (diff)

Ticket #986 - Implementado troca de status e template da lista de contatos ( xsl ).

  • Property svn:executable set to *
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="idChatBox" />
6        <xsl:param name="jidTo" />
7
8        <xsl:template match="chat_box">
9               
10                        <div>
11                                <div id="{$idChatBox}" style="height:190px; width:370px; overflow-y:scroll;"></div>
12                                <div style="margin:2px;">
13                                        <textarea id="{$jidTo}__sendBox" class="trophyimchatinput" style="padding-left: 78px; height:130px; width:285px;"></textarea>
14                                        <div style="position:relative;margin:-126px 0 0 3px; border:0px solid red;width:70px; height:93px; background-image:url('images/photo.png');"></div>
15                                       
16                                        <div style="margin: 3px 0 0 4px;">
17                                                <input type="button" value="Send" onclick="TrophyIM.sendMessage('{$jidTo}')"/>
18                                        </div>
19                                </div>
20                        </div>                 
21                 
22        </xsl:template>
23       
24</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.