Ignore:
Timestamp:
03/22/10 11:47:57 (14 years ago)
Author:
alexandrecorreia
Message:

Ticket #986 - Ajuste de layout, botao adicionar, botao troca de status e imagens.

Location:
sandbox/jabberit_messenger/trophy
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • sandbox/jabberit_messenger/trophy/js/loadIM.js

    r2312 r2320  
    227227        } 
    228228 
    229  
     229         
     230        function setPresence() 
     231        { 
     232                if( arguments.length > 0 ) 
     233                { 
     234                        alert('Valor : ' + arguments[0]);        
     235                } 
     236        } 
     237         
    230238        function setXTools() 
    231239        { 
     
    240248                                 'js/dragdrop.js', 
    241249                                 'js/makeW.js', 
     250                                 'js/show_hidden.js', 
    242251                                 'css/trophyim.css', 
    243252                                 //'css/window_azul.css' 
     
    255264         
    256265         
     266        loadIM.prototype.configEvents           = configEvents; 
    257267        loadIM.prototype.getZIndex                      = getZindex; 
    258268        loadIM.prototype.parse                          = parse; 
    259         loadIM.prototype.configEvents           = configEvents; 
     269        loadIM.prototype.setPresence            = setPresence; 
    260270         
    261271        loadIM.prototype.HTMLSnippets           = new HTMLSnippets; 
  • sandbox/jabberit_messenger/trophy/xsl/chatBox.xsl

    r2312 r2320  
    1212                                <div style="margin:2px;"> 
    1313                                        <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> 
     14                                        <div style="position:relative;margin:-126px 0 0 3px;width:70px; height:93px; background-image:url('images/photo.png');"></div> 
    1515                                         
    1616                                        <div style="margin: 3px 0 0 4px;"> 
  • sandbox/jabberit_messenger/trophy/xsl/contactsList.xsl

    r2312 r2320  
    55        <xsl:template match="contacts_list"> 
    66                 
    7                 <div id="trophyimroster" /> 
     7                <fieldset style="margin:2px; border:1px dotted #000000; height: 90px;"> 
     8                        <div style="margin:0px; width:70px; height:93px; background-image:url('images/photo.png');"/> 
     9                         
     10                        <div style="position: absolute; margin-top: -19px; margin-left: 75px; cursor: pointer;" onclick="loadIM.setPresence(this);"> 
     11                                <div style="background-image: url('images/available.gif'); margin-left: 13px;width:15px; height:15px;"></div> 
     12                                <div style="margin-top: -13px; margin-left: 30px;"> Online </div> 
     13                                <div style="background-image: url('images/arrow_down.gif'); margin-top: -8px; margin-left: 0px; width:15px; height:15px;"/>  
     14                        </div> 
     15                         
     16                        <div style="position: absolute; margin-top: -50px; margin-left: 75px;"> 
     17                                <button style="width:35px;" alt="Adicionar Contatos" title="Adicionar Contatos" onclick="alert('Adicionar Contatos');"> 
     18                                        <img src="images/users.png"/> 
     19                                </button> 
     20                        </div>   
     21                        <div style="positon: absolute; margin-top: -75px; margin-left: 75px;"> Fulano da Silva </div> 
     22                </fieldset> 
     23                                 
     24                <div id="trophyimroster" style="margin-top:3px;"/> 
    825                  
    926        </xsl:template> 
Note: See TracChangeset for help on using the changeset viewer.