Change addressees arrow from hardcoded to CSS.
This commit is contained in:
parent
0f5aab8cd5
commit
4549d36862
@ -245,7 +245,6 @@ class NoticeListItem extends Widget
|
|||||||
if (!$first) {
|
if (!$first) {
|
||||||
$this->out->text( _m('SEPARATOR',', '));
|
$this->out->text( _m('SEPARATOR',', '));
|
||||||
} else {
|
} else {
|
||||||
$this->out->text(_(' ▸ '));
|
|
||||||
$first = false;
|
$first = false;
|
||||||
}
|
}
|
||||||
$this->out->element('a', array('href' => $group->homeUrl(),
|
$this->out->element('a', array('href' => $group->homeUrl(),
|
||||||
@ -272,7 +271,6 @@ class NoticeListItem extends Widget
|
|||||||
$this->out->text(_m('SEPARATOR',', '));
|
$this->out->text(_m('SEPARATOR',', '));
|
||||||
} else {
|
} else {
|
||||||
// TRANS: Start of profile addressees list.
|
// TRANS: Start of profile addressees list.
|
||||||
$this->out->text(_(' ▸ '));
|
|
||||||
$first = false;
|
$first = false;
|
||||||
}
|
}
|
||||||
$this->out->element('a', array('href' => $reply->profileurl,
|
$this->out->element('a', array('href' => $reply->profileurl,
|
||||||
|
@ -414,6 +414,14 @@ address .poweredby {
|
|||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.notice .addressees:before {
|
||||||
|
content: '\25B8';
|
||||||
|
}
|
||||||
|
|
||||||
|
.notice .addressees:empty:before {
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
|
|
||||||
.fn {
|
.fn {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user