Changeset 6938 for branches


Ignore:
Timestamp:
08/03/12 17:25:58 (12 years ago)
Author:
eduardow
Message:

Ticket #2991 - Copiar e Colar no campo PARA, CC, CCO correcao na geracao de conteiners.

Location:
branches/2.4/expressoMail1_2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.4/expressoMail1_2/js/draw_api.js

    r6937 r6938  
    38513851                var pthis = $(this); 
    38523852                setTimeout(function() { 
    3853                         var str = pthis.val().replace(/[,;\t\n]/gi, ","); 
     3853                        if(pthis.val().split('"') > 1)  
     3854                        var str = pthis.val().replace(/[,;\t]/gi, ",");   
     3855                else  
     3856                        var str = pthis.val().replace(/[,;\t\n\s]/gi, ",");  
    38543857                        str = str.split(","); 
    38553858                        $.each(str, function(index, value){ 
  • branches/2.4/expressoMail1_2/templates/default/main.css

    r6754 r6938  
    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 
     
    13991390        border-color : red; 
    14001391} 
     1392 
     1393div.new-msg-head-data div.email-area .invalid-email-box{  
     1394        color: #540303;  
     1395        background-color: #ea9aa0;  
     1396        border : 1px solid #540303 !important;  
     1397}  
     1398  
     1399div.new-msg-head-data div.email-area .box-selected{  
     1400        background-color : #BBBBBB;  
     1401}  
Note: See TracChangeset for help on using the changeset viewer.