Commit: 26ad044ed9ccd728311350a1a2e0eacc07211196 Author: Peter Cowburn <[email protected]> Fri, 17 Apr 2015 09:25:03 +0100 Parents: 1619d51e660eb4afd8d55cb0cfa70e17aac43418 Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=26ad044ed9ccd728311350a1a2e0eacc07211196 Log: twitter link visually separated from "special thanks" section on homepage Changed paths: M index.php M styles/home.css M styles/theme-medium.css Diff: diff --git a/index.php b/index.php index 8ac56ee..f720918 100644 --- a/index.php +++ b/index.php @@ -172,9 +172,17 @@ $announcements <p class='panel'><a href='/cal.php'>User Group Events</a></p> <p class='panel'><a href='/thanks.php'>Special Thanks</a></p> <p class='panel social-media'> - <a class='headline' href="https://twitter.com/official_php"> - <i class="icon-twitter"></i> - </a> + <span class='headline'>Social media</span> + <div class='body'> + <ul> + <li> + <a href="https://twitter.com/official_php"> + <i class="icon-twitter"></i> + @official_php + </a> + </li> + </ul> + </div> </p> SIDEBAR_DATA; diff --git a/styles/home.css b/styles/home.css index ea7c8d1..20e987d 100644 --- a/styles/home.css +++ b/styles/home.css @@ -128,18 +128,7 @@ aside.tips .mirror-sponsor { } /* Social media buttons. */ -aside.tips .social-media { - padding-top: 2em; -} - -aside.tips .social-media a { - border-bottom: 0; -} - -aside.tips .panel.social-media > a:after { - display: none; -} - -aside.tips .social-media .headline { +aside.tips .social-media .icon-twitter { font-size: 1.5em; + vertical-align: middle; } diff --git a/styles/theme-medium.css b/styles/theme-medium.css index 8452606..affadce 100755 --- a/styles/theme-medium.css +++ b/styles/theme-medium.css @@ -410,7 +410,8 @@ aside.tips a { color:#ccc; border-bottom:1px dotted #666; } -aside.tips .panel > a:after { +aside.tips .panel > a:after, +aside.tips .panel > span:after { content:" "; display:block; border-bottom:1px dotted #666; -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
