The following patch moves the up and down arrows from the next line, back to the
right of the 'outbound route' name. It assumes the outbound route fits in around
120px, but this sits nicely with the other 'rnav' limitations.
NOTE the use of style='display:-moz-inline-stack; display:inline-block;' This
allows the change to work correctly in firefox (which understands -moz-inline-stack)
and internet explorer (which understands inline-block). Other browsers have not
been tested.
NOTE ALSO, the 'display' and 'width' flags may be better placed in
common/mainstyle.css under '.rnav ul li a'
*** admin/modules/core/page.routing.php.save 2007-09-08 09:28:23.000000000 +1000
--- admin/modules/core/page.routing.php 2007-09-08 09:27:40.000000000 +1000
***************
*** 205,214 ****
$positions=count($routepriority);
foreach ($routepriority as $tresult) {
$key++;
! echo "\t<li>\n\t\t<a " . ($extdisplay==$tresult[0] ? 'class="current"':'') .
" href=\"config.php?display=" .
urlencode($display)."&extdisplay=" .
! urlencode($tresult[0]) . "\">$key " . substr($tresult[0],4)."</a>\n";
if ($key > 0)
echo "\t\t<img src=\"images/scrollup.gif\" onclick=\"repositionRoute('$key','up')\" alt='" . _("Move Up") .
--- 205,214 ----
$positions=count($routepriority);
foreach ($routepriority as $tresult) {
$key++;
! echo "\t<li>\n\t\t<span style='display:-moz-inline-stack; display:inline-block; width:120px;'><a " . ($extdisplay==$tresult[0] ? 'class="current"':'') .
" href=\"config.php?display=" .
urlencode($display)."&extdisplay=" .
! urlencode($tresult[0]) . "\">$key " . substr($tresult[0],4)."</a></span>\n";
if ($key > 0)
echo "\t\t<img src=\"images/scrollup.gif\" onclick=\"repositionRoute('$key','up')\" alt='" . _("Move Up") .