Fixed "Show older items" styling issue

Tested in Safari 6.0.2, and can't replicate. I'll see about updating Safari and trying. And can't replicate in Chrome.
 
Oh wait, now I see what you mean.
You didn't actually explain what the problem is.

I am seeing a double border initially when the new content is loaded.

upload_2013-6-20_21-37-17.webp
 
I see a double border, but think that's intentional. However, his second screenshot has Mike's avatar touching the border. Which I think he was reporting (and I can't reproduce).
 
Yeah, I can see the double border as well - I'm not sure if it's intentional, though it's not intrinsically bad. I can't reproduce the lack of margin/padding though (tested in Safari 6.0.5).
 
Quick fix:

Change

Code:
.news_feed_page_global .eventList {
border-top: 1px solid #D7EDFC;
}

To

Code:
.news_feed_page_global .eventList:first-of-type {
border-top: 1px solid #D7EDFC;
}
 
For the lack of padding top, I'm seeing that too. Pretty sure it's because of this:
Code:
.profilePage .eventList li:first-child
{
padding-top: 0;
}
Since each set of older items is being pulled in with an additional .eventList, each set is going to be missing the top padding.
 
Top Bottom