From 4549d368624a5e6e0d51adbaa51d48c738fa0980 Mon Sep 17 00:00:00 2001 From: Samantha Doherty Date: Wed, 18 May 2011 09:49:01 -0400 Subject: [PATCH] Change addressees arrow from hardcoded to CSS. --- lib/noticelistitem.php | 2 -- theme/base/css/display.css | 8 ++++++++ 2 files changed, 8 insertions(+), 2 deletions(-) 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; } -- 2.39.2