First RFC System related commit

# no new files, only updates
This commit is contained in:
Vincent Gevers
2004-08-18 21:23:03 +00:00
parent ee47c1e4d4
commit 5024c67083
2 changed files with 44 additions and 0 deletions

View File

@ -302,6 +302,10 @@ function site_nav_provider()
if (SITE == 'php') {
$links[] = '<a href="/dochowto/index.php">Documentation Howto</a>';
}
if (strpos($_SERVER['PHP_SELF'], 'rfc') !== false) {
$links[] = '<a href="/rfc/rfc-overview.php">RFC overview</a>';
$links[] = '<a href="/rfc/rfc-proposal-edit.php">Submit Proposal</a>';
}
if (count($links) == 0) {
$links[] = 'N/A';
}

View File

@ -124,3 +124,43 @@ img {
#langs img {
vertical-align: middle;
}
th.headrow {
text-align: left;
border-bottom: 1px solid #000;
white-space: nowrap;
}
td.ulcell {
vertical-align: top;
}
/* Tabbed sub-navigation */
#nav {
width: 100%;
/*border-top: 1px solid #000;*/
display: block;
margin-bottom: 35px;
clear: left;
}
#nav a {
/*float: left;*/
font-weight: bold;
font-size: 80%;
text-decoration: none;
background: #eee;
margin-right: 5px;
padding: 5px;
border: 1px solid #ccc;
/*border-right: 1px solid #ccc;*/
}
#nav a.active {
background: #ddf;
}
#nav a:hover {
background: #ddf;
}