From: Samantha Doherty Date: Wed, 18 May 2011 13:49:01 +0000 (-0400) Subject: Change addressees arrow from hardcoded to CSS. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4549d368624a5e6e0d51adbaa51d48c738fa0980;p=quix0rs-gnu-social.git Change addressees arrow from hardcoded to CSS. --- diff --git a/lib/noticelistitem.php b/lib/noticelistitem.php index 05b0dab16e..2d41e53017 100644 --- a/lib/noticelistitem.php +++ b/lib/noticelistitem.php @@ -245,7 +245,6 @@ class NoticeListItem extends Widget if (!$first) { $this->out->text( _m('SEPARATOR',', ')); } else { - $this->out->text(_(' ▸ ')); $first = false; } $this->out->element('a', array('href' => $group->homeUrl(), @@ -272,7 +271,6 @@ class NoticeListItem extends Widget $this->out->text(_m('SEPARATOR',', ')); } else { // TRANS: Start of profile addressees list. - $this->out->text(_(' ▸ ')); $first = false; } $this->out->element('a', array('href' => $reply->profileurl, diff --git a/theme/base/css/display.css b/theme/base/css/display.css index c6247522c2..6ae14d2c7d 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -414,6 +414,14 @@ address .poweredby { margin-right: 8px; } +.notice .addressees:before { + content: '\25B8'; +} + +.notice .addressees:empty:before { + content: none; +} + .fn { overflow: hidden; }