Ignore:
Timestamp:
08/03/12 16:42:34 (12 years ago)
Author:
thiago
Message:

Ticket #2966 - Novos icones nos Modulos ExpressoMail? e ExpressoCalendar?.

Location:
sandbox/2.4.2-expresso1
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • sandbox/2.4.2-expresso1/expressoMail1_2/js/draw_api.js

    r6717 r6934  
    29832983        subject.className = "header_message_field"; 
    29842984        if(defaultCalendar == "expressoCalendar" && $("#expressoCalendarid")[0]){ 
     2985                var new_task_logo = document.createElement("IMG"); 
     2986                new_task_logo.title = "Criar uma nova tarefa a partir deste email."; 
     2987                new_task_logo.alt = "Criar uma nova tarefa a partir deste email."; 
     2988                new_task_logo.src = "./templates/default/images/task.png"; 
     2989                new_task_logo.style.cursor = "pointer"; 
     2990                new_task_logo.style.marginLeft = "5px"; 
     2991                $(new_task_logo).css({ 
     2992                        'height' : '16px', 
     2993                        'width' : '16px' 
     2994                }); 
     2995                new_task_logo.onclick = function(){ 
     2996                        alert(1); 
     2997                } 
     2998                 
    29852999                var new_event_logo = document.createElement("IMG"); 
    29863000                new_event_logo.title = "Criar evento a partir deste email"; 
    29873001                new_event_logo.alt = "Criar evento a partir deste email"; 
    2988                 new_event_logo.src = "./templates/default/images/calendar_add.png"; 
     3002                //new_event_logo.src = "./templates/default/images/calendar_add.png"; 
     3003                new_event_logo.src = "./templates/default/images/event.png"; 
    29893004                new_event_logo.style.cursor = "pointer"; 
     3005                $(new_event_logo).css({ 
     3006                        'height' : '16px', 
     3007                        'width' : '16px' 
     3008                }); 
    29903009                new_event_logo.style.marginLeft = "5px"; 
    29913010                new_event_logo.onclick = function(){ 
     
    31003119                } 
    31013120                subject.appendChild(new_event_logo); 
     3121                subject.appendChild(new_task_logo); 
    31023122        } 
    31033123        tr5.appendChild(td5); 
  • sandbox/2.4.2-expresso1/prototype/modules/calendar/js/init.js

    r6893 r6934  
    343343                        if(event.type == 3) 
    344344                                img_icon = "activity_icon.jpg"; 
    345             element.find(".fc-event-inner.fc-event-skin").prepend($('<img class="" src="../prototype/modules/calendar/img/' + img_icon + '"></img>')); 
     345 
     346                         
     347            element.find(".fc-event-inner.fc-event-skin").prepend($('<img style="width: 11px; height: 13px;" class="" src="../prototype/modules/calendar/img/' + img_icon + '"></img>')); 
    346348                }, 
    347349                 
  • sandbox/2.4.2-expresso1/prototype/modules/calendar/templates/event_list.ejs

    r6893 r6934  
    6363                                                        } 
    6464                                                        %> 
    65                                                         <img title="<%= title_type %>" src="<%= img_type %>">  
     65                                                        <img style="width: 16px; height: 16px" title="<%= title_type %>" src="<%= img_type %>">  
    6666                                                        <a class="title event-details-item" title='<%= _event.summary %>' aria-expanded='false' role='button' tabindex='0'><%= _event.summary %></a> 
    6767                                                        <!-- TODO: FAZER FUNCIONAR DESTA FORMA --> 
Note: See TracChangeset for help on using the changeset viewer.