Commit: 1df340495b6bd90fe956835a9517d6ed0089055c Author: Hannes Magnusson <[email protected]> Sat, 21 Dec 2013 14:52:03 -0800 Parents: ea2a324818729acf58a485f69f9667c0c8cb9199 Branches: master
Link: http://git.php.net/?p=web/shared.git;a=commitdiff;h=1df340495b6bd90fe956835a9517d6ed0089055c Log: Fix some overflowing issues on smartphones Changed paths: M styles/wiki.css Diff: diff --git a/styles/wiki.css b/styles/wiki.css index 2a72e9c..937eab7 100644 --- a/styles/wiki.css +++ b/styles/wiki.css @@ -930,6 +930,17 @@ div.code pre.codeShown { #dokuwiki__site > .site { padding: 0; } +.level1, +.level2, +.level3 { + overflow-x: auto; + overflow-y: hidden; + text-overflow: ellipsis; + word-wrap: break-word; +} +.code { + word-wrap: normal; +} #dw__toc a { border-bottom: 0px; text-decoration: underline; -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
