Removed <dl> structure from NoticeListItem::showContext. Same as

committ e0b877b26c.
This commit is contained in:
Sarven Capadisli 2009-07-25 18:26:00 +00:00
parent e378341910
commit 0b47e71e7a
2 changed files with 2 additions and 15 deletions

View File

@ -424,13 +424,9 @@ class NoticeListItem extends Widget
&& $this->notice->conversation != $this->notice->id) {
$convurl = common_local_url('conversation',
array('id' => $this->notice->conversation));
$this->out->elementStart('dl', 'response');
$this->out->element('dt', null, _('To'));
$this->out->elementStart('dd');
$this->out->element('a', array('href' => $convurl.'#notice-'.$this->notice->id),
$this->out->element('a', array('href' => $convurl.'#notice-'.$this->notice->id,
'class' => 'response'),
_('in context'));
$this->out->elementEnd('dd');
$this->out->elementEnd('dl');
}
}

View File

@ -876,15 +876,6 @@ float:left;
font-size:1.025em;
}
.notice div.entry-content dl,
.notice div.entry-content dt,
.notice div.entry-content dd {
display:inline;
}
.notice div.entry-content .response dt {
display:none;
}
.notice div.entry-content a.timestamp {
display:inline-block;
}