Commit: 9b12bff61e24d027844278adcb56324cfe3c025a Author: Levi Morrison <[email protected]> Wed, 10 Jul 2013 11:07:24 -0600 Parents: 15b4d11318b6fd318a44506c80c46a8a523cf169 Branches: responsive
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=9b12bff61e24d027844278adcb56324cfe3c025a Log: Added the logo back! A few other minor adjustments as well. Changed paths: A images/logos/php-logo.png M include/header.inc M styles/bootstrap.css M styles/doc.css M styles/theme.css Diff: diff --git a/images/logos/php-logo.png b/images/logos/php-logo.png new file mode 100644 index 0000000..f4c4451 Binary files /dev/null and b/images/logos/php-logo.png differ diff --git a/include/header.inc b/include/header.inc index 0fbeb5d..9ff2308 100644 --- a/include/header.inc +++ b/include/header.inc @@ -95,7 +95,7 @@ if (isset($shortname) && $shortname) { <nav id="headnav" class="navbar navbar-inverse navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> - <a href="/" class="brand">php.net</a> + <a href="/" class="brand"><img src="/images/logos/php-logo.png" width="54" height="26" alt="php"/></a> <ul class="nav"> <li class="<?php echo $curr == "downloads" ? "active" : ""?>"><a href="/downloads">Downloads</a></li> <li class="<?php echo $curr == "docs" ? "active" : ""?>"><a href="/manual/">Documentation</a></li> diff --git a/styles/bootstrap.css b/styles/bootstrap.css index 1ec6a33..d3b8a90 100644 --- a/styles/bootstrap.css +++ b/styles/bootstrap.css @@ -543,7 +543,7 @@ textarea { .navbar .brand { float: left; display: block; - padding: .75em; + padding: .5em; color: #fff; text-shadow: 0 1px 0 #ffffff; } diff --git a/styles/doc.css b/styles/doc.css index c3bfada..62772bc 100755 --- a/styles/doc.css +++ b/styles/doc.css @@ -96,7 +96,7 @@ aside#quicktoc { margin-left:0; margin-right:0; box-shadow:inset 0 1px 2px rgba(0,0,0,.25); - background-color:#d5d5dd; + background-color:#fafafc; } .docs blockquote.note { @@ -193,7 +193,7 @@ aside#quicktoc { border:1px solid #ccc; } .docs .refsect1 .dc-description { - background-color: #fff; + background-color: #fafafc; padding: .625em .75em; box-shadow:inset 0 1px 2px 0 rgba(0,0,0,.25); margin-bottom: .75em; diff --git a/styles/theme.css b/styles/theme.css index e3bd30c..685c1d2 100755 --- a/styles/theme.css +++ b/styles/theme.css @@ -150,6 +150,9 @@ hr { border-top:.25em solid #99c; } +.navbar .brand img { + padding:3px 0; +} .navbar a { border:0; } -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
