Commit: 3f29a29aa5e2d5a85536e57409edee83f7c71962 Author: Hannes Magnusson <[email protected]> Thu, 21 Nov 2013 11:52:57 -0800 Parents: 687af68223fd3134df7f4ec15dbd6668a1551075 Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=3f29a29aa5e2d5a85536e57409edee83f7c71962 Log: Try to fix overlapping text of the md5 sum Changed paths: M downloads.php M styles/theme-base.css Diff: diff --git a/downloads.php b/downloads.php index f10bc78..7c2039c 100644 --- a/downloads.php +++ b/downloads.php @@ -107,8 +107,8 @@ foreach($a["source"] as $rel) { echo " <li>\n "; download_link($rel["filename"], $rel["name"]); - echo " <span class=\"md5sum\">md5: {$rel["md5"]}</span>\n"; - echo " <span class='releasedate'>({$rel["date"]})</span><br />\n"; + echo " <span class='releasedate'>({$rel["date"]})</span>\n"; + echo " <span class=\"md5sum\">md5: {$rel["md5"]}</span><br />\n"; (isset($rel["note"]) && $rel["note"] ? "<p><strong>Note:</strong>{$rel["note"]}</p>": ""); echo " </li>\n"; } diff --git a/styles/theme-base.css b/styles/theme-base.css index 17a3081..be13bd5 100755 --- a/styles/theme-base.css +++ b/styles/theme-base.css @@ -2868,9 +2868,9 @@ section.downloads { } .download-box .md5sum { font-size: 0.9em; - position: absolute; - left: 230px; font: normal 14px / 1.46 "Source Code Pro", monospace; + padding-right: 20%; + float: right; } .download-box .releasedate { float: right; -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
