BUG 9926 I add the propety float right
I add the propety float right
This commit is contained in:
@@ -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());
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user