mirror of
https://git.code.sf.net/p/quake/website
synced 2025-03-23 17:40:53 +00:00
Cleanups.
This commit is contained in:
parent
c29db24ef5
commit
e94bff73e5
4 changed files with 10 additions and 9 deletions
|
@ -21,7 +21,7 @@
|
|||
|
||||
function iconLink ( $url, $img, $desc, $border )
|
||||
{
|
||||
echo '<TD><A class="tabs" href="' . $url . '"><IMG src="' . $img . '" alt="' . $desc . '" border="' . $border . '" width="24" height="24"></A></TD>';
|
||||
echo '<A class="tabs" href="' . $url . '"><IMG src="' . $img . '" alt="' . $desc . '" border="' . $border . '" width="24" height="24"></A> ';
|
||||
}
|
||||
|
||||
/* Menu functions */
|
||||
|
|
|
@ -9,15 +9,15 @@
|
|||
menuItemLink( "http://sourceforge.net/project/filelist.php?group_id=882", "Downloads" );
|
||||
menuItemLink( "http://sourceforge.net/bugs/?group_id=882", "Bug Tracking" );
|
||||
menuItemLink( "http://sourceforge.net/mail/?group_id=882", "Mailing Lists" );
|
||||
// menuItemLink( "http://sourceforge.net/support/?group_id=882", "Tech Support" );
|
||||
menuSectionFooter();
|
||||
}
|
||||
|
||||
function develMenu() {
|
||||
menuSectionHeader( "Developers", 'white', '#737B9C');
|
||||
menuItemLink( "/devtools.php", "Developer Tools" );
|
||||
menuItemLink( "http://sourceforge.net/cvs/?group_id=882", "CVS Repository" );
|
||||
menuItemLink( "http://sourceforge.net/cvs/?group_id=882", "CVS Access" );
|
||||
menuItemLink( "http://sourceforge.net/patch/?group_id=882", "Patch Manager" );
|
||||
menuItemLink( "http://sourceforge.net/support/?group_id=882", "Support Manager" );
|
||||
menuItemLink( "http://sourceforge.net/pm/?group_id=882", "Task Manager" );
|
||||
menuSectionFooter();
|
||||
}
|
||||
|
|
|
@ -13,17 +13,18 @@
|
|||
echo '<TABLE border="0" cellSpacing="0" cellPadding="2" bgColor="white">' .
|
||||
'<TR>';
|
||||
tableSpacer( 1, 1, 1, "white");
|
||||
iconLink('http://sourceforge.net/project/?group_id=882', '/img/icons/anvil.png', 'SF Page', isFocused($focused, 'summary'));
|
||||
iconLink('/', '/img/icons/home.png', 'Home', isFocused($focused, 'home'));
|
||||
echo '<TD>';
|
||||
iconLink('http://sourceforge.net/project/?group_id=882', '/img/icons/anvil.png', 'SourceForge', isFocused($focused, 'summary'));
|
||||
iconLink('/', '/img/icons/home.png', 'Homepage', isFocused($focused, 'home'));
|
||||
iconLink('http://sourceforge.net/bugs/?group_id=882', '/img/icons/bugs.png', 'Bugs', isFocused($focused, 'bugs'));
|
||||
// iconLink('http://sourceforge.net/support/?group_id=882', '/img/icons/support.png', 'Support', isFocused($focused, 'support'));
|
||||
iconLink('http://sourceforge.net/support/?group_id=882', '/img/icons/support.png', 'Support', isFocused($focused, 'support'));
|
||||
iconLink('http://sourceforge.net/patch/?group_id=882', '/img/icons/patch.png', 'Patches', isFocused($focused, 'patch'));
|
||||
iconLink('http://sourceforge.net/mail/?group_id=882', '/img/icons/mail.png', 'Lists', isFocused($focused, 'mail'));
|
||||
iconLink('http://sourceforge.net/pm/?group_id=882', '/img/icons/tasks.png', 'Tasks', isFocused($focused, 'tasks'));
|
||||
iconLink('http://sourceforge.net/survey/?group_id=882', '/img/icons/survey.png', 'Surveys', isFocused($focused, 'survey'));
|
||||
// iconLink('http://sourceforge.net/survey/?group_id=882', '/img/icons/survey.png', 'Surveys', isFocused($focused, 'survey'));
|
||||
iconLink('/news.php', '/img/icons/news.png', 'News', isFocused($focused, 'news'));
|
||||
iconLink('http://sourceforge.net/cvs/?group_id=882', '/img/icons/cvs.png', 'CVS', isFocused($focused, 'cvs'));
|
||||
iconLink('http://sourceforge.net/project/filelist.php?group_id=882', '/img/icons/download.png', 'Download', isFocused($focused, 'download'));
|
||||
iconLink('http://sourceforge.net/project/filelist.php?group_id=882', '/img/icons/download.png', 'Downloads', isFocused($focused, 'download'));
|
||||
echo '</TD></TR></TABLE>';
|
||||
}
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ A:hover { color: rgb(255,102,102); text-decoration: none; }
|
|||
A.maintitlebar { color: white; }
|
||||
A.sortbutton { color: white; text-decoration: underline; }
|
||||
A.menus { color: rgb(192,192,192); text-decoration: underline; }
|
||||
A.tabs { color: black; text-decoration: underline; }
|
||||
A.tabs { color: black; }
|
||||
|
||||
SPAN.center { text-align: center; }
|
||||
SPAN.alignright { text-align: right; }
|
||||
|
|
Loading…
Reference in a new issue