Commit: 844283bf3e05f78136291447fd43e91d3d258066 Author: Paul Dragoonis <[email protected]> Fri, 7 Jan 2011 01:30:03 +0000 Parents: 14de0e366b9a92559e238adadb145c028a1131ea Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=844283bf3e05f78136291447fd43e91d3d258066 Log: Changed warning bar colors. Tried the black, and the purple it blended in too much, went for green since it's the href color. Bit wild, but does the trick and it's cookie based anyway so will only appear once Changed paths: M include/header.inc M styles/home.css Diff: diff --git a/include/header.inc b/include/header.inc index 7dc19a2..4356f6d 100644 --- a/include/header.inc +++ b/include/header.inc @@ -58,7 +58,7 @@ if ($shortname) { <span class="blurb"> This is a work-in-progress experimental design. Things <strong>will</strong> be broken and unfinished! - You may prefer <a href="http://php.net/?beta=0">php.net</a>. + You may prefer <a href="http://php.net/?beta=0">php.net</a> </span> </div> </div> diff --git a/styles/home.css b/styles/home.css index 9ef869f..2acd04d 100644 --- a/styles/home.css +++ b/styles/home.css @@ -78,8 +78,7 @@ complimentary greens: 9FB553 7B8851 61761B C6DA82 CCDA99 } #head-beta-warning { - background: #e2d8ed; - border-bottom: solid 2px #C3ADD9; + background: #339900; display: none; position: fixed; top: 0px; @@ -99,16 +98,23 @@ complimentary greens: 9FB553 7B8851 61761B C6DA82 CCDA99 font-size: 1.3em; line-height: 1.65em; vertical-align: middle; - color: #444; + color: #EEE; display: none; } +#beta-warning .blurb a { + color: #333; +} + +#beta-warning .blurb strong { + color: #333; +} + #beta-warning-close { display: block; float: right; - border: solid 1px #604080; - background: #604080; - color: white; + background: #333; + color: #EEE; font-weight: bold; text-decoration: none; margin-top: 0.24em; -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
