Commit: 766d04b02f2f86e8eeb41ee55814ade9cc10e39e Author: Adam Harvey <[email protected]> Tue, 11 Dec 2012 09:46:10 +0800 Parents: dc23314ad3cd3479cedcb8ebb680c72cb8ab6e27 Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=766d04b02f2f86e8eeb41ee55814ade9cc10e39e Log: Add list overrides to left align within warnings, cautions, et cetera. We already have an override for paragraphs, but it makes sense to cover lists as well, and it's needed for the new MySQL deprecation blocks on the function reference pages, particularly since the beta site already handles this. Changed paths: M styles/site.css Diff: diff --git a/styles/site.css b/styles/site.css index b25f5b3..dc066a0 100644 --- a/styles/site.css +++ b/styles/site.css @@ -111,7 +111,9 @@ div.warning, div.tip { padding-left: 92px; background-position: center left; } -div.warning p, div.caution p, div.tip p, div.information p { +div.warning p, div.caution p, div.tip p, div.information p, +div.warning ul, div.caution ul, div.tip ul, div.information ul, +div.warning ol, div.caution ol, div.tip ol, div.information ol { text-align: justify; } div.tip { -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
