Posted by populist on November 12, 2012 at 5:59pm
4 followers
| Project: | Responsive Bartik D7 |
| Version: | 7.x-1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed (fixed) |
Issue Summary
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
#1
Here is a patch to get this done.
#2
Thanks. This will be incorporated in the upcoming beta release.
#3
Added to beta1 release.
#4
Automatically closed -- issue fixed for 2 weeks with no activity.
#5
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 }
#6
You're correct. Thanks for the heads up.
Committed (194c16b) and pushed to 7.x-1.x.
#7
Automatically closed -- issue fixed for 2 weeks with no activity.