diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-06 11:58:20 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-06 11:58:20 +0000 |
commit | 60c1df1d61854bd4a0ff22151ebf349fa2626ee6 (patch) | |
tree | a146b6dce2fcc8449d7bf2191d36ee049558c648 /mod/activity/views | |
parent | 4822692dcad81e932a47c1bc9bd53f525cf9fbd6 (diff) | |
download | elgg-60c1df1d61854bd4a0ff22151ebf349fa2626ee6.tar.gz elgg-60c1df1d61854bd4a0ff22151ebf349fa2626ee6.tar.bz2 |
updated activity css
git-svn-id: https://code.elgg.org/elgg/trunk@2663 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/activity/views')
-rw-r--r-- | mod/activity/views/default/activity/css.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/mod/activity/views/default/activity/css.php b/mod/activity/views/default/activity/css.php index 01f410103..2fdba98f0 100644 --- a/mod/activity/views/default/activity/css.php +++ b/mod/activity/views/default/activity/css.php @@ -100,4 +100,36 @@ #activity .activity_relationship_member_create { background: url(<?php echo $vars['url']; ?>_graphics/river_icons/river_icon_forum.gif) no-repeat left -1px; } +#activity .activity_groupforumtopic_annotate { + background: url(<?php echo $vars['url']; ?>_graphics/river_icons/river_icon_comment.gif) no-repeat left -1px; +} +/* post to wire */ +#activity .activity_thewire_create { + background: url(<?php echo $vars['url']; ?>_graphics/river_icons/river_icon_thewire.gif) no-repeat left -1px; +} +#activity .activity_groupforumtopic_create { + background: url(<?php echo $vars['url']; ?>_graphics/river_icons/river_icon_forum.gif) no-repeat left -1px; +} +/* comment on page */ +#activity .activity_page_annotate { + background: url(<?php echo $vars['url']; ?>_graphics/river_icons/river_icon_comment.gif) no-repeat left -1px; +} +#activity .activity_page_top_annotate { + background: url(<?php echo $vars['url']; ?>_graphics/river_icons/river_icon_comment.gif) no-repeat left -1px; +} +/* create a page */ +#activity .activity_page_create { + background: url(<?php echo $vars['url']; ?>_graphics/river_icons/river_icon_pages.gif) no-repeat left -1px; +} +#activity .activity_page_top_create { + background: url(<?php echo $vars['url']; ?>_graphics/river_icons/river_icon_pages.gif) no-repeat left -1px; +} +/* updated a page */ +#activity .activity_page_update { + background: url(<?php echo $vars['url']; ?>_graphics/river_icons/river_icon_pages.gif) no-repeat left -1px; +} +#activity .activity_page_top_update { + background: url(<?php echo $vars['url']; ?>_graphics/river_icons/river_icon_pages.gif) no-repeat left -1px; +} + |