Changeset 5675
- Timestamp:
- 03/08/12 11:01:04 (11 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/expressoMail1_2/js/doiMenuData.js
r5658 r5675 167 167 $menu.css('display', 'block').position({ my: "center top", at: "center bottom", of: this}).css('display', 'none'); 168 168 }, 169 delay: 100,169 delay:500, 170 170 autoHide:true, 171 171 events: { -
trunk/expressoMail1_2/templates/default/main.css
r5640 r5675 376 376 } 377 377 378 .content-menu-td:hover{background-color: #ffffff; border: 1px solid #CCCCCC }378 .content-menu-td:hover{background-color: #ffffff; border: 1px solid #CCCCCC;} 379 379 380 380 .content-folders { -
trunk/prototype/modules/mail/js/label.js
r5673 r5675 179 179 180 180 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 } 183 184 var qtdLi = $(".label-list-container ul").find("li").not(".empty-item").length; 184 185 if (qtdLi == 0){ … … 187 188 winElement.find(".buttons .save-label .ui-button-text").text('Criar'); 188 189 $(".delete-label").button("disable"); 190 $(".save-label").button("disable"); 189 191 190 192 winElement.find('.input-nome').val(""); … … 205 207 winElement.find('.preview-label-inner').text(value); 206 208 }).keyup(); 207 } 209 } 208 210 } 209 211 -
trunk/prototype/modules/mail/templates/followupflag_configure.ejs
r5665 r5675 62 62 <div class="alarm-fields"> 63 63 <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') : '' %>" /> ás64 <input type="text" name="alarmDate" class="date" size="12" value="<%=(followupflagged.alarmDeadline) ? followupflagged.alarmDeadline.toString('dd/MM/yyyy') : '' %>" /> ás 65 65 <input type="text" name="alarmTime" class="time" size="8" value="<%=(followupflagged.alarmDeadline) ? followupflagged.alarmDeadline.toString('hh:mm') : '' %>" /> 66 66 </div> … … 71 71 <div class="right-data input-done"> 72 72 <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') : '' %>" /> ás73 <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 74 74 <input <%=(followupflagged.isDone && followupflagged.isDone != '0') ? 'disabled="disabled"' : '' %> type="text" name="doneTime" class="time" size="8" value="<%=(followupflagged.doneDeadline) ? followupflagged.doneDeadline.toString('hh:mm') : '' %>" /> 75 75 </div> … … 106 106 <div class="form-item"> 107 107 <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" /> 109 109 <div class="flag-edit flag-color-preview" style="background: <%=(followupflagged.backgroundColor) ? followupflagged.backgroundColor : '#00820F' %>"> 110 110 <img src="../prototype/modules/mail/img/flagEditor.png"> -
trunk/prototype/modules/mail/templates/label_configure.ejs
r5603 r5675 31 31 <div class="form-item"> 32 32 <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" /> 34 34 </div> 35 35 <div class="form-item"> 36 36 <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" /> 38 38 </div> 39 39 <div class="form-item"> 40 40 <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" /> 42 42 </div> 43 43 <div class="preview-label-outer">
Note: See TracChangeset
for help on using the changeset viewer.