There is a small issue with the handling of CSS around inline links as demonstrated here:

The basic change needed looks like this:

 ul.links.inline li a {
-  display: inline-block;
+  display: inline;
   padding: 18px 0 5px;
 }

This fixes it as demonstrated:

Comments

populist’s picture

Status: Active » Needs review
StatusFileSize
new248 bytes

Here is a patch to get this done.

mjohnq3’s picture

Status: Needs review » Reviewed & tested by the community

Thanks. This will be incorporated in the upcoming beta release.

mjohnq3’s picture

Status: Reviewed & tested by the community » Fixed

Added to beta1 release.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

franskuipers’s picture

Status: Closed (fixed) » Reviewed & tested by the community

I don't see this patch included in this commitdiff on December 11, 2012.

Current code in -bata1 and 7.x-1.x:

700 ul.links.inline li a {
701  display: inline-block;
702  padding: 18px 0 5px;
703 }
mjohnq3’s picture

Status: Reviewed & tested by the community » Fixed

You're correct. Thanks for the heads up.

Committed (194c16b) and pushed to 7.x-1.x.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.