Commit eee9e13d7cbde12822c7f394c4111fe414eeb251
1 parent
9968f3a7
Exists in
community_hub_submodule
#community dashboard - add icons
Showing
20 changed files
with
9 additions
and
9 deletions
Show diff stats
349 Bytes
772 Bytes
674 Bytes
772 Bytes
674 Bytes
567 Bytes
424 Bytes
426 Bytes
357 Bytes
438 Bytes
438 Bytes
373 Bytes
374 Bytes
807 Bytes
905 Bytes
1.73 KB
1.08 KB
1.02 KB
views/community_hub_plugin_public/_mediation.rhtml
... | ... | @@ -15,16 +15,16 @@ |
15 | 15 | <li class="promote"> |
16 | 16 | <% if !promoted?(hub, mediation.author.id) %> |
17 | 17 | <a id="<%= mediation.id %>" href="#" onclick="promote_user(<%= mediation.author.id %>); return false;"> |
18 | - <img class="promoted" src="/designs/themes/default/images/hub-promote-icon.png" /> | |
18 | + <img class="promoted" src="/plugins/community_hub/icons/hub-promote-icon.png" /> | |
19 | 19 | </a> |
20 | 20 | <% else %> |
21 | - <img class="not-promoted" src="/designs/themes/default/images/hub-not-promote-icon.png" /> | |
21 | + <img class="not-promoted" src="/plugins/community_hub/icons/hub-not-promote-icon.png" /> | |
22 | 22 | <% end %> |
23 | 23 | </li> |
24 | 24 | |
25 | 25 | <% if pinned_mediation?(hub, mediation.id) %> |
26 | 26 | <li class="pin"> |
27 | - <img class="pinned" src="/designs/themes/default/images/hub-not-pinned-icon.png" /> | |
27 | + <img class="pinned" src="/plugins/community_hub/icons/hub-not-pinned-icon.png" /> | |
28 | 28 | </li> |
29 | 29 | <% end %> |
30 | 30 | ... | ... |
views/community_hub_plugin_public/_post.rhtml
... | ... | @@ -5,9 +5,9 @@ |
5 | 5 | <li class="time"><%= post_time(post.created_at) %></li> |
6 | 6 | <li class="avatar"> |
7 | 7 | <% if post.title == 'hub-message-twitter' %> |
8 | - <%= image_tag('/designs/themes/default/images/logo_twitter_bird_white_50x50.png', :alt => "Twitter") %> | |
8 | + <%= image_tag('/plugins/community_hub/icons/logo_twitter_bird_white_50x50.png', :alt => "Twitter") %> | |
9 | 9 | <% elsif post.title == 'hub-message-facebook' %> |
10 | - <%= image_tag('/designs/themes/default/images/logo_facebook_50x50.png', :alt => "Facebook") %> | |
10 | + <%= image_tag('/plugins/community_hub/icons/logo_facebook_50x50.png', :alt => "Facebook") %> | |
11 | 11 | <% else %> |
12 | 12 | <%= image_tag(profile_icon(post.author, :minor)) if post.author %> |
13 | 13 | <% end %> |
... | ... | @@ -21,19 +21,19 @@ |
21 | 21 | <li class="promote"> |
22 | 22 | <% if promoted?(hub, post.author.id) == 'promoted' %> |
23 | 23 | <a id="<%= post.id %>" href="#" onclick="pin_message(<%= post.id %>); return false;"> |
24 | - <img class="promoted" src="/designs/themes/default/images/hub-promote-icon.png" /> | |
24 | + <img class="promoted" src="/plugins/community_hub/icons/hub-promote-icon.png" /> | |
25 | 25 | </a> |
26 | 26 | <% else %> |
27 | - <img class="not-promoted" src="/designs/themes/default/images/hub-not-promote-icon.png" /> | |
27 | + <img class="not-promoted" src="/plugins/community_hub/icons/hub-not-promote-icon.png" /> | |
28 | 28 | <% end %> |
29 | 29 | </li> |
30 | 30 | <li class="pin"> |
31 | 31 | <% if !pinned_message?(hub, post.id) %> |
32 | 32 | <a id="<%= post.id %>" href="#" onclick="pin_message(<%= post.id %>); return false;"> |
33 | - <img class="not-pinned" src="/designs/themes/default/images/hub-pinned-icon.png" /> | |
33 | + <img class="not-pinned" src="/plugins/community_hub/icons/hub-pinned-icon.png" /> | |
34 | 34 | </a> |
35 | 35 | <% else %> |
36 | - <img class="pinned" src="/designs/themes/default/images/hub-not-pinned-icon.png" /> | |
36 | + <img class="pinned" src="/plugins/community_hub/icons/hub-not-pinned-icon.png" /> | |
37 | 37 | <% end %> |
38 | 38 | </li> |
39 | 39 | </ul> | ... | ... |