]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Change addressees arrow from hardcoded to CSS.
authorSamantha Doherty <sammy@status.net>
Wed, 18 May 2011 13:49:01 +0000 (09:49 -0400)
committerSamantha Doherty <sammy@status.net>
Wed, 18 May 2011 13:49:01 +0000 (09:49 -0400)
lib/noticelistitem.php
theme/base/css/display.css

index 05b0dab16ee806baf78d93fa1720af61b3fcaa43..2d41e53017318acf9ba3565cd3e0cdd0f7ece6bc 100644 (file)
@@ -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,
index c6247522c2cce51fca711d3f463bfe8288929551..6ae14d2c7dfec13c2b67f61f1439006082c49eee 100644 (file)
@@ -414,6 +414,14 @@ address .poweredby {
     margin-right: 8px;
 }
 
+.notice .addressees:before {
+    content: '\25B8';
+}
+
+.notice .addressees:empty:before {
+    content: none;
+}
+
 .fn {
     overflow: hidden;
 }