Commit: c35490d6231c36a224dd47cbd6d95df950cb64d3 Author: Levi Morrison <[email protected]> Mon, 8 Jul 2013 21:57:07 -0600 Parents: 2034258a41748291282357a8a19f95875e4e590e Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=c35490d6231c36a224dd47cbd6d95df950cb64d3 Log: Narrowed an issue with these psuedo elements covering up links in the bottom of the previous note. Since the whole reason we puth this psuedo content there is so that hyperlinks aren't covered by the main menu; thus we can use :target to reduce when this bug will happen. I tried to find some way with z-index to do it but failed. Changed paths: M styles/theme.css Diff: diff --git a/styles/theme.css b/styles/theme.css index 09b8b23..27421e0 100755 --- a/styles/theme.css +++ b/styles/theme.css @@ -547,7 +547,7 @@ aside.tips div.inner { } -#layout *[id]:before { +#layout *[id]:target:before { display:block; content:" "; margin-top:-4em; -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
