Commit: 1a8bd5f582d4d60344c00063151f0f9e6da6ae0d Author: Adam Harvey <[email protected]> Tue, 11 Dec 2012 09:46:10 +0800 Parents: 5cdafdb3fee2dedc702b27fdebab369fdc134636 Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=1a8bd5f582d4d60344c00063151f0f9e6da6ae0d 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
