Changeset 2281 for trunk/workflow


Ignore:
Timestamp:
03/17/10 12:54:35 (14 years ago)
Author:
rodsouza
Message:

Ticket #989 - Compatibilizando workflow com a utilização de temas.

Location:
trunk/workflow
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • trunk/workflow/js/jscode/abas.js

    r795 r2281  
    2424        { 
    2525                m = document.getElementById(BordersArray[i].border_id); 
    26                 m.className = 'abas_menu'; 
     26                m.className = 'menu'; 
    2727                c = document.getElementById("content_id_"+BordersArray[i].sequence); 
    2828                if (is_ie) { 
     
    3333         
    3434        m = document.getElementById("border_id_"+ID); 
    35         m.className = 'abas_menu_sel'; 
     35        m.className = 'menu-sel'; 
    3636        c = document.getElementById("content_id_"+ID); 
    3737        c.style.display = ''; 
     
    4747        td.id="border_id_" + ID; 
    4848        td.setAttribute("width", "auto"); 
    49         td.className = "abas_menu"; 
     49        td.className = "menu"; 
    5050        td.setAttribute("align", "right"); 
    5151        td.onclick = function(){alternate_border(ID);}; 
     
    7272                div.className = "conteudo_div_ie"; 
    7373        } else { 
    74                 div.className = "conteudo_div"; 
     74                div.className = "conteudo"; 
    7575        } 
    7676        div.style.display=''; 
     
    8787        { 
    8888                m = document.getElementById(BordersArray[i].border_id); 
    89                 if (m.className == 'abas_menu_sel') 
     89                if (m.className == 'menu-sel') 
    9090                        border_selected = BordersArray[i].border_id; 
    9191        } 
  • trunk/workflow/js/orgchart/utils.js

    r2042 r2281  
    1818        /* cabeçalho */ 
    1919        tr = document.createElement("TR"); 
     20        tr.className = 'message_header'; 
    2021        for (i in header) 
    2122        { 
     
    2425                        td = document.createElement("TH"); 
    2526                        td.innerHTML = header[i]; 
     27                        td.className = 'message_header'; 
    2628                        tr.appendChild(td); 
    2729                } 
  • trunk/workflow/js/userinterface/orgchart.js

    r2085 r2281  
    321321                /* build the display table (headers)*/ 
    322322                content += '<table id="employeeList" class="employeeList" style="clear: both">'; 
    323                 content += '<tr>'; 
     323                content += '<tr class="message_header">'; 
    324324                content += '<th>Nome</th>'; 
    325325                if (useArea) 
  • trunk/workflow/templates/default/adminaccess.tpl

    r795 r2281  
    1313                                </td> 
    1414                        {/foreach} 
    15                                 <td nowrap id="border_blank" class="abas_last_menu" width="100%"> 
     15                                <td nowrap id="border_blank" class="last_menu" width="100%"> 
    1616                                        &nbsp; 
    1717                                </td> 
     
    2020        </table> 
    2121{foreach from=$tabs item=tab name="feTabs"} 
    22         <div id="content_id_{$smarty.foreach.feTabs.index}" class="conteudo_div"></div> 
     22        <div id="content_id_{$smarty.foreach.feTabs.index}" class="conteudo"></div> 
    2323{/foreach} 
    2424</div> 
  • trunk/workflow/templates/default/adminsource.tpl

    r795 r2281  
    1414                                </td> 
    1515                        {/foreach} 
    16                                 <td nowrap id="border_blank" class="abas_last_menu" width="100%"> 
     16                                <td nowrap id="border_blank" class="last_menu" width="100%"> 
    1717                                        &nbsp; 
    1818                                </td> 
     
    2121        </table> 
    2222{foreach from=$tabs item=tab name="feTabs"} 
    23         <div id="content_id_{$smarty.foreach.feTabs.index}" class="conteudo_div"></div> 
     23        <div id="content_id_{$smarty.foreach.feTabs.index}" class="conteudo"></div> 
    2424{/foreach} 
    2525</div> 
  • trunk/workflow/templates/default/css/common.css

    r795 r2281  
    268268 
    269269.table_elements_tr_header { 
    270         background-color: #CCCCCC; 
     270        /*background-color: #ABC6E1;*/ 
    271271} 
    272272 
  • trunk/workflow/templates/default/css/orgchart.css

    r795 r2281  
    1616table.organizationList tbody tr th 
    1717{ 
    18         background-color: #CCCCCC; 
     18        /*background-color: #CCCCCC;*/ 
    1919} 
    2020 
    2121table.organizationList tbody tr.linha0 
    2222{ 
    23         background-color: #F2F2F2; 
     23        /*background-color: #F2F2F2;*/ 
    2424        font-size: 12px; 
    2525} 
     
    2727table.organizationList tbody tr.linha1 
    2828{ 
    29         background-color: #E5E5E5; 
     29        /*background-color: #E5E5E5;*/ 
    3030        font-size: 12px; 
    3131} 
     
    106106table.employeeList tbody th 
    107107{ 
    108         background-color: #CCCCCC; 
     108        /*background-color: #CCCCCC;*/ 
    109109        font-size: 13px; 
    110110} 
     
    112112table.employeeList tbody tr.linha0 
    113113{ 
    114         background-color: #FFF; 
     114        /*background-color: #FFF;*/ 
    115115        font-size: 12px; 
    116116} 
     
    118118table.employeeList tbody tr.linha1 
    119119{ 
    120         background-color: #F7F7F7; 
     120        /*background-color: #F7F7F7;*/ 
    121121        font-size: 12px; 
    122122} 
  • trunk/workflow/templates/default/css/userinterface.css

    r795 r2281  
    126126        font-size: 11px !important; 
    127127        font-weight: normal; 
    128         background-color: #CCCCCC; 
     128        /*background-color: #ABC6E1;*/ 
    129129} 
    130130 
  • trunk/workflow/templates/default/monitors.tpl

    r795 r2281  
    1313                                </td> 
    1414                        {/foreach} 
    15                                 <td nowrap id="border_blank" class="abas_last_menu" width="100%"> 
     15                                <td nowrap id="border_blank" class="last_menu" width="100%"> 
    1616                                        &nbsp; 
    1717                                </td> 
     
    2020        </table> 
    2121{foreach from=$tabs item=tab name="feTabs"} 
    22         <div id="content_id_{$smarty.foreach.feTabs.index}" class="conteudo_div"></div> 
     22        <div id="content_id_{$smarty.foreach.feTabs.index}" class="conteudo"></div> 
    2323{/foreach} 
    2424</div> 
  • trunk/workflow/templates/default/orgchart.tpl

    r795 r2281  
    77                <tbody id="border_tbody"> 
    88                        <tr id="border_tr"> 
    9                                 <td nowrap class="abas_menu" id="border_id_0" onClick="(alternate_border(0) == 0) ? draw_org_folder() : ''"> 
     9                                <td nowrap class="menu" id="border_id_0" onClick="(alternate_border(0) == 0) ? draw_org_folder() : ''"> 
    1010                                        &nbsp;&nbsp;Organograma&nbsp;&nbsp; 
    1111                                </td> 
    12                                 <td nowrap id="border_blank" class="abas_last_menu" width="100%"> 
     12                                <td nowrap id="border_blank" class="last_menu" width="100%"> 
    1313                                        &nbsp; 
    1414                                </td> 
     
    1616                </tbody> 
    1717        </table> 
    18         <div id="content_id_0" class="conteudo_div"></div> 
     18        <div id="content_id_0" class="conteudo"></div> 
    1919</div> 
    2020{$footer} 
  • trunk/workflow/templates/default/userinterface.tpl

    r795 r2281  
    1010                        {foreach from=$tabs item=tab name="feTabs"} 
    1111                                {assign var='index' value=$smarty.foreach.feTabs.index} 
    12                                 <td nowrap class="abas_menu" id="border_id_{$index}" onClick="changeTab({$index})"> 
     12                                <td nowrap class="menu" id="border_id_{$index}" onClick="changeTab({$index})"> 
    1313                                        &nbsp;&nbsp;{$tab}&nbsp;&nbsp; 
    1414                                </td> 
    1515                        {/foreach} 
    16                                 <td nowrap id="border_blank" class="abas_last_menu" width="100%"> 
     16                                <td nowrap id="border_blank" class="last_menu" width="100%"> 
    1717                                        &nbsp; 
    1818                                </td> 
     
    2121        </table> 
    2222{foreach from=$tabs item=tab name="feTabs"} 
    23         <div id="content_id_{$smarty.foreach.feTabs.index}" class="conteudo_div"></div> 
     23        <div id="content_id_{$smarty.foreach.feTabs.index}" class="conteudo"></div> 
    2424{/foreach} 
    2525</div> 
Note: See TracChangeset for help on using the changeset viewer.