Repeated and Favorited CSS/mf2 fixes

For some reason I'd added an 'e-content' class for repeats and faves
This commit is contained in:
Mikael Nordfeldth 2014-06-24 15:34:36 +02:00
parent 53fb39a1d0
commit 67ed1ec77e
2 changed files with 8 additions and 6 deletions

View File

@ -443,9 +443,9 @@ abstract class NoticeListActorsItem extends NoticeListItem
array_unshift($links, _m('FAVELIST', 'You'));
} else {
$profile = Profile::getKV('id', $id);
if ($profile) {
$links[] = sprintf('<a href="%s">%s</a>',
htmlspecialchars($profile->profileurl),
if ($profile instanceof Profile) {
$links[] = sprintf('<a class="h-card" href="%s">%s</a>',
htmlspecialchars($profile->getUrl()),
htmlspecialchars($profile->getBestName()));
}
}
@ -548,7 +548,7 @@ class ThreadedNoticeListInlineFavesItem extends ThreadedNoticeListFavesItem
{
function showStart()
{
$this->out->elementStart('div', array('class' => 'e-content notice-faves'));
$this->out->elementStart('div', array('class' => 'notice-faves'));
}
function showEnd()
@ -625,7 +625,7 @@ class ThreadedNoticeListInlineRepeatsItem extends ThreadedNoticeListRepeatsItem
{
function showStart()
{
$this->out->elementStart('div', array('class' => 'e-content notice-repeats'));
$this->out->elementStart('div', array('class' => 'notice-repeats'));
}
function showEnd()

View File

@ -902,8 +902,10 @@ content: ":";
margin-left: 32px;
}
#content .notice .threaded-replies .notice div.e-content.notice-faves {
.threaded-replies .notice-repeats,
.threaded-replies .notice-faves {
clear: both;
font-size: 0.88em;
}
.threaded-replies li {