BUG 9926 I add the propety float right

I add the propety float right
This commit is contained in:
Brayan Osmar Pereyra Suxo
2012-10-17 11:59:28 -04:00
parent 773a66e7a3
commit f5df808988
3 changed files with 13 additions and 2 deletions

View File

@@ -76,6 +76,16 @@ if (isset($_GET["id"]) && isset($_GET["id"])) {
} }
} }
$oServerConf =& serverConf::getSingleton();
if ($oServerConf->isRtl(SYS_LANG)) {
$regionTreePanel = 'east';
$regionDebug = 'west';
} else {
$regionTreePanel = 'west';
$regionDebug = 'east';
}
$oHeadPublisher->assign('regionTreePanel', $regionTreePanel);
$oHeadPublisher->assign('regionDebug', $regionDebug);
$oHeadPublisher->assign("defaultOption", $defaultOption); //User menu permissions $oHeadPublisher->assign("defaultOption", $defaultOption); //User menu permissions
$oHeadPublisher->assign("_nodeId", isset($confDefaultOption)? $confDefaultOption : "PM_USERS"); //User menu permissions $oHeadPublisher->assign("_nodeId", isset($confDefaultOption)? $confDefaultOption : "PM_USERS"); //User menu permissions
$oHeadPublisher->assign("FORMATS", $conf->getFormats()); $oHeadPublisher->assign("FORMATS", $conf->getFormats());

View File

@@ -17,6 +17,7 @@ ul#pm_menu {
padding: 0 0 0 13px; padding: 0 0 0 13px;
} }
ul#pm_menu li { float: right;}
a.options-tool { a.options-tool {
color: #FFFFFF; color: #FFFFFF;

View File

@@ -296,7 +296,7 @@ Ext.onReady(function(){
mainMenu = new Ext.Panel({ mainMenu = new Ext.Panel({
id:'menuTreePanel', id:'menuTreePanel',
title: '', title: '',
region: 'west', region: regionTreePanel,
layout: 'border', layout: 'border',
width: 200, width: 200,
height: 500, height: 500,
@@ -412,7 +412,7 @@ Ext.onReady(function(){
debugPanel = new Ext.Panel({ debugPanel = new Ext.Panel({
id:'debugPanel', id:'debugPanel',
title: _('ID_DEBUG_PANEL_TITLE'), title: _('ID_DEBUG_PANEL_TITLE'),
region: 'east', region: regionDebug,
layout: 'border', layout: 'border',
width: 300, width: 300,
height: 500, height: 500,