Changeset 5675 for trunk


Ignore:
Timestamp:
03/08/12 11:01:04 (12 years ago)
Author:
marcieli
Message:

Ticket #2486 - Corrigidos bugs referentes às telas de marcador e sinalizador.

Location:
trunk
Files:
5 edited

Legend:

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

    r5658 r5675  
    167167                $menu.css('display', 'block').position({ my: "center top", at: "center bottom", of: this}).css('display', 'none'); 
    168168        }, 
    169         delay:100, 
     169        delay:500, 
    170170        autoHide:true, 
    171171        events: { 
  • trunk/expressoMail1_2/templates/default/main.css

    r5640 r5675  
    376376} 
    377377 
    378 .content-menu-td:hover{background-color: #ffffff; border: 1px solid #CCCCCC} 
     378.content-menu-td:hover{background-color: #ffffff; border: 1px solid #CCCCCC;} 
    379379 
    380380.content-folders { 
  • trunk/prototype/modules/mail/js/label.js

    r5673 r5675  
    179179         
    180180        if($(".label-list li").length == 0){ 
    181                 winElement.find(".label-list-container").html('<ul class="label-list"><li class="empty-item">'+get_lang("No labels found.")+'.</li></ul>');                      
    182         }  
     181                winElement.find(".label-list-container").html('<ul class="label-list"><li class="empty-item">'+get_lang("No labels found.")+'.</li></ul>'); 
     182                $(".save-label").button("disable");      
     183        } 
    183184        var qtdLi = $(".label-list-container ul").find("li").not(".empty-item").length; 
    184185        if (qtdLi == 0){ 
     
    187188                winElement.find(".buttons .save-label .ui-button-text").text('Criar'); 
    188189                $(".delete-label").button("disable");    
     190                $(".save-label").button("disable");      
    189191                                 
    190192                winElement.find('.input-nome').val(""); 
     
    205207                        winElement.find('.preview-label-inner').text(value); 
    206208                }).keyup();                              
    207         }                
     209        }        
    208210} 
    209211 
  • trunk/prototype/modules/mail/templates/followupflag_configure.ejs

    r5665 r5675  
    6262                        <div class="alarm-fields"> 
    6363                                <input type="checkbox" name="alarm" <%=(followupflagged.alarmDeadline) ? 'checked="checked"' : '' %> /><label><%= get_lang("Alarm")%>: </label> 
    64                                 <input type="text" name="alarmDate" class="date" size="9" value="<%=(followupflagged.alarmDeadline) ? followupflagged.alarmDeadline.toString('dd/MM/yyyy') : '' %>" /> ás  
     64                                <input type="text" name="alarmDate" class="date" size="12" value="<%=(followupflagged.alarmDeadline) ? followupflagged.alarmDeadline.toString('dd/MM/yyyy') : '' %>" /> ás  
    6565                                <input type="text" name="alarmTime" class="time" size="8" value="<%=(followupflagged.alarmDeadline) ? followupflagged.alarmDeadline.toString('hh:mm') : '' %>" /> 
    6666                        </div>           
     
    7171                <div class="right-data input-done"> 
    7272                        <label><%= get_lang("Conclusion")%>:</label> 
    73                         <input <%=(followupflagged.isDone && followupflagged.isDone != '0') ? 'disabled="disabled"' : '' %> type="text" name="doneDate" class="date" size="8" value="<%=(followupflagged.doneDeadline) ? followupflagged.doneDeadline.toString('dd/MM/yyyy') : '' %>" /> ás  
     73                        <input <%=(followupflagged.isDone && followupflagged.isDone != '0') ? 'disabled="disabled"' : '' %> type="text" name="doneDate" class="date" size="12" value="<%=(followupflagged.doneDeadline) ? followupflagged.doneDeadline.toString('dd/MM/yyyy') : '' %>" /> ás  
    7474                        <input <%=(followupflagged.isDone && followupflagged.isDone != '0') ? 'disabled="disabled"' : '' %> type="text" name="doneTime" class="time" size="8" value="<%=(followupflagged.doneDeadline) ? followupflagged.doneDeadline.toString('hh:mm') : '' %>" /> 
    7575                </div>  
     
    106106                        <div class="form-item"> 
    107107                                <label class="flag-label"><%= get_lang("Color")%>: </label> 
    108                                 <input type="text" name="backgroundColor" class="colorwell background-color" value="<%=(followupflagged.backgroundColor) ? followupflagged.backgroundColor : '#00820F' %>"/> 
     108                                <input type="text" name="backgroundColor" class="colorwell background-color" value="<%=(followupflagged.backgroundColor) ? followupflagged.backgroundColor : '#00820F' %>" readonly="readonly" /> 
    109109                                <div class="flag-edit flag-color-preview" style="background: <%=(followupflagged.backgroundColor) ? followupflagged.backgroundColor : '#00820F' %>"> 
    110110                                        <img src="../prototype/modules/mail/img/flagEditor.png"> 
  • trunk/prototype/modules/mail/templates/label_configure.ejs

    r5603 r5675  
    3131                        <div class="form-item"> 
    3232                          <label for="backgroundColor" class="label-cor"><%= get_lang("Label Color")%>:</label> 
    33                           <input type="text" name="backgroundColor" id="background" class="colorwell" value="#ebebeb" /> 
     33                          <input type="text" name="backgroundColor" id="background" class="colorwell" value="#ebebeb" readonly="readonly" /> 
    3434                        </div> 
    3535                        <div class="form-item"> 
    3636                          <label for="fontColor" class="label-cor"><%= get_lang("Text color")%>:</label> 
    37                           <input type="text" name="fontColor" class="colorwell" value="#000000" /> 
     37                          <input type="text" name="fontColor" class="colorwell" value="#000000" readonly="readonly" /> 
    3838                        </div> 
    3939                        <div class="form-item"> 
    4040                          <label for="borderColor" class="label-cor"><%= get_lang("Border color")%>:</label> 
    41                           <input type="text" name="borderColor" class="colorwell" value="#000000" /> 
     41                          <input type="text" name="borderColor" class="colorwell" value="#000000" readonly="readonly" /> 
    4242                        </div>                     
    4343                        <div class="preview-label-outer"> 
Note: See TracChangeset for help on using the changeset viewer.