This commit is contained in:
Roly Rudy Gutierrez Pinto
2015-04-06 14:46:20 -04:00
parent 37cd89dcfc
commit 830ca0a5f5
3 changed files with 26 additions and 41 deletions

View File

@@ -48,7 +48,7 @@ if ($RBAC->userCanAccess('PM_DASHBOARD') == 1) {
// ADMIN MODULE // ADMIN MODULE
if ($RBAC->userCanAccess('PM_SETUP') == 1 || $RBAC->userCanAccess('PM_USERS') == 1) { if ($RBAC->userCanAccess('PM_SETUP') == 1 || $RBAC->userCanAccess('PM_USERS') == 1) {
$G_TMP_MENU->AddIdRawOption('SETUP', 'setup/main', G::LoadTranslation('ID_SETUP'), '', '', '', 'x-pm-setup'); $G_TMP_MENU->AddIdRawOption('SETUP', 'setup/main', strtolower(G::LoadTranslation('ID_SETUP')), '', '', '', 'x-pm-setup');
} }
/*----------------------------------********---------------------------------*/ /*----------------------------------********---------------------------------*/

View File

@@ -486,14 +486,7 @@ span.XtreeMinus:hover {
/* Theme leimnud.module.grid END */ /* Theme leimnud.module.grid END */
/* Menues */ /* Menues */
TD.mainMenuBG { TD.mainMenuBG {
background-image: url(/skins/neoclassic/images/ext/gray/toolbar/bg.gif); vertical-align: top;
background-repeat: repeat-x;
/*height: 25px;*/
left: 46px;
top: 72px;
direction: ltr;
text-align: left;
} }
TD.mainMenu { TD.mainMenu {
background-image: url(/skins/neoclassic/images/classic/bm.jpg); background-image: url(/skins/neoclassic/images/classic/bm.jpg);
@@ -3262,7 +3255,6 @@ table.DynarchCalendar-titleCont {
} }
/*Menu Principal*/ /*Menu Principal*/
#pm_main_table .mainMenuBG { #pm_main_table .mainMenuBG {
background: #676767;
} }
ul#pm_menu { ul#pm_menu {
list-style: none; list-style: none;
@@ -3272,21 +3264,27 @@ ul#pm_menu {
ul#pm_menu li { ul#pm_menu li {
float: left; float: left;
padding: 0; padding: 0;
height: 25px; margin-top: 6.5px;
} }
ul#pm_menu a { ul#pm_menu a {
color: #fff; color: #7b7c80;
font-size: 13px; font-size: 15px;
text-decoration: none; text-decoration: none;
display: block; display: block;
padding: 0px 25px; text-transform: capitalize;
text-transform: uppercase;
line-height: 25px;
font-weight: bold; font-weight: bold;
padding: 16px 3px 3px 3px;
margin: 0 12px 0 12px;
}
ul#pm_menu a:hover {
color:#3397e1;
}
ul#pm_menu li.SelectedMenu a{
color:#3397e1;
border-bottom: 2px solid #3397e1;
} }
ul#pm_menu li.SelectedMenu, ul#pm_menu li.SelectedMenu,
ul#pm_menu li:hover { ul#pm_menu li:hover {
background: #00a1e4;
} }
ul#pm_submenu { ul#pm_submenu {
list-style: none; list-style: none;
@@ -3485,5 +3483,5 @@ button.x-btn-text:focus,
} }
.logo_company { .logo_company {
padding-left: 10px; padding: 7px 10px;
} }

View File

@@ -8,12 +8,18 @@
<body> <body>
<table width="100%" height="100%" cellpadding="0" cellspacing="0" border="0" id="pm_main_table"> <table width="100%" height="100%" cellpadding="0" cellspacing="0" border="0" id="pm_main_table">
<tr> <tr>
<td id="pm_header" valign="top"> <td id="pm_header" valign="top" {if $user_logged neq '' or $tracker neq ''}style="border-bottom:1px solid #e7e7e7;"{/if}>
<table width="100%" height="32" border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF"> <table width="100%" height="32" border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
<tr> <tr>
{if $user_logged neq '' or $tracker neq ''} {if $user_logged neq '' or $tracker neq ''}
<td width="50%" rowspan="2" valign="center"><img src="{$logo_company}" class="logo_company"/></td> <td rowspan="2" style="vertical-align:top;width: 245px;"><img src="{$logo_company}" class="logo_company"/></td>
<td width="50%" height="16" align="right" valign="top"> <td class="mainMenuBG" rowspan="2" valign="center" >
{include file="$tpl_menu"}
{if (count($subMenus)>0) }
{include file= "$tpl_submenu"}
{/if}
</td>
<td height="16" align="right" valign="top">
<div align="right" class="logout"> <div align="right" class="logout">
<small> <small>
{if $user_logged neq ''} {if $user_logged neq ''}
@@ -37,7 +43,7 @@
{/if} {/if}
</tr> </tr>
<tr> <tr>
<td width="50%" height="16" valign="bottom" class="title"> <td height="16" valign="bottom" class="title">
<div align="right"></div> <div align="right"></div>
</td> </td>
</tr> </tr>
@@ -47,25 +53,6 @@
<tr> <tr>
<td> <td>
<table width="100%" cellspacing="0" cellpadding="0" border="0" > <table width="100%" cellspacing="0" cellpadding="0" border="0" >
<tr>
{if $user_logged neq '' or $tracker neq ''}
<td width="100%" class="mainMenuBG" style="height:25px">
{include file="$tpl_menu"}
</td>
{else}
<td width="100%" style="height:25px">
</td>
{/if}
</tr>
{if (count($subMenus)>0) }
<tr>
<td >
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr><td width="100%" class="mainMenuBG">{include file= "$tpl_submenu"}</td></tr>
</table>
</td>
</tr>
{/if}
<tr> <tr>
<td width="100%" align="center"> <td width="100%" align="center">
{php} {php}