mirror of
https://github.com/php/web-doc.git
synced 2025-08-13 14:40:31 +00:00
First RFC System related commit
# no new files, only updates
This commit is contained in:
@ -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';
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user