Commit: 2a2f2f9a352db635c04bfce9721744f0503f71f9 Author: Peter Cowburn <[email protected]> Wed, 27 Nov 2013 09:57:52 +0000 Parents: a8d5d63eb1eef257a5b24f1e95150cdd2a0c13f7 Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=2a2f2f9a352db635c04bfce9721744f0503f71f9 Log: set a background color for code blocks on non-API pages A tiny step forward for the "too much white" crowd. Changed paths: M styles/theme-medium.css Diff: diff --git a/styles/theme-medium.css b/styles/theme-medium.css index d097636..3debef1 100755 --- a/styles/theme-medium.css +++ b/styles/theme-medium.css @@ -268,10 +268,14 @@ div.warning:before { /* {{{ Syntax highlighting */ .example-contents > [class$="code"], .example-contents.screen { - background-color: #fff; + background-color: #f2f2f2; border-color: #d6d6d6 !important; border-top-color: #cdcdcd !important; } +.refsect1 .example-contents > [class$="code"], +.refsect1 .example-contents.screen { + background-color: #fff; +} .refsect1 .dc-description, .docs .sect1 .dc-description { background:#fff; -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
