Changeset 6926


Ignore:
Timestamp:
08/03/12 10:44:30 (12 years ago)
Author:
gustavo
Message:

Ticket #2991 - Copiar e Colar no Campo Para, CC, CCO correcao da geracao dos containers

Location:
trunk/expressoMail1_2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/js/draw_api.js

    r6925 r6926  
    38663866                var pthis = $(this); 
    38673867                setTimeout(function() { 
    3868                         var str = pthis.val().replace(/[,;\t\n]/gi, ","); 
     3868                        if(pthis.val().split('"') > 1) 
     3869                                var str = pthis.val().replace(/[,;\t]/gi, ",");  
     3870                        else 
     3871                                var str = pthis.val().replace(/[,;\t\n\s]/gi, ","); 
    38693872                        str = str.split(","); 
    38703873                        $.each(str, function(index, value){ 
  • trunk/expressoMail1_2/templates/default/main.css

    r6718 r6926  
    12991299  
    13001300.box{ 
    1301         background-color: #96B3D3; 
     1301        background-color: #DFEFFC; 
    13021302        border-radius: 5px; 
    13031303        -moz-border-radius: 5px; 
    1304         border: 1px solid #201b41;  
     1304        border: 1px solid #ADD9ED;  
    13051305        display: inline-block; 
    13061306        cursor : pointer; 
     
    13171317        color : #201b41; 
    13181318        outline : none; 
    1319 } 
    1320  
    1321 .invalid-email-box{ 
    1322         background-color: #F08080; 
    1323         border : 1px solid #540303 !important; 
    1324 } 
    1325  
    1326 .invalid-email-box span{ 
    1327         color: #540303; 
    13281319} 
    13291320 
     
    13641355} 
    13651356 
     1357 
    13661358.box-selected{ 
    13671359        background-color : #BBBBBB; 
     
    13991391        border-color : red; 
    14001392} 
     1393 
     1394div.new-msg-head-data div.email-area .invalid-email-box{ 
     1395        color: #540303; 
     1396        background-color: #ea9aa0; 
     1397        border : 1px solid #540303 !important; 
     1398} 
     1399 
     1400div.new-msg-head-data div.email-area .box-selected{ 
     1401        background-color : #BBBBBB; 
     1402} 
Note: See TracChangeset for help on using the changeset viewer.