Commit eee9e13d7cbde12822c7f394c4111fe414eeb251

Authored by Francisco Marcelo de Araújo Lima Júnior
1 parent 9968f3a7

#community dashboard - add icons

public/icons/hub-arrow-right.png 0 → 100644

349 Bytes

public/icons/hub-not-pinned-icon.png 0 → 100644

772 Bytes

public/icons/hub-not-promote-icon.png 0 → 100644

674 Bytes

public/icons/hub-pinned-icon.png 0 → 100644

772 Bytes

public/icons/hub-promote-icon.png 0 → 100644

674 Bytes

public/icons/hub-remove-icon.png 0 → 100644

567 Bytes

public/icons/hub-samarelo-a.png 0 → 100644

424 Bytes

public/icons/hub-samarelo-b.png 0 → 100644

426 Bytes

public/icons/hub-samarelo.gif 0 → 100644

357 Bytes

public/icons/hub-sverde-a.png 0 → 100644

438 Bytes

public/icons/hub-sverde-b.png 0 → 100644

438 Bytes

public/icons/hub-svermelho-a.png 0 → 100644

373 Bytes

public/icons/hub-svermelho-b.png 0 → 100644

374 Bytes

public/icons/hub-time-bg.gif 0 → 100644

807 Bytes

public/icons/logo_facebook_50x50.png 0 → 100644

905 Bytes

public/icons/logo_twitter_50x50.png 0 → 100644

1.73 KB

public/icons/logo_twitter_bird_blue_50x50.png 0 → 100644

1.08 KB

public/icons/logo_twitter_bird_white_50x50.png 0 → 100644

1.02 KB

views/community_hub_plugin_public/_mediation.rhtml
@@ -15,16 +15,16 @@ @@ -15,16 +15,16 @@
15 <li class="promote"> 15 <li class="promote">
16 <% if !promoted?(hub, mediation.author.id) %> 16 <% if !promoted?(hub, mediation.author.id) %>
17 <a id="<%= mediation.id %>" href="#" onclick="promote_user(<%= mediation.author.id %>); return false;"> 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 </a> 19 </a>
20 <% else %> 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 <% end %> 22 <% end %>
23 </li> 23 </li>
24 24
25 <% if pinned_mediation?(hub, mediation.id) %> 25 <% if pinned_mediation?(hub, mediation.id) %>
26 <li class="pin"> 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 </li> 28 </li>
29 <% end %> 29 <% end %>
30 30
views/community_hub_plugin_public/_post.rhtml
@@ -5,9 +5,9 @@ @@ -5,9 +5,9 @@
5 <li class="time"><%= post_time(post.created_at) %></li> 5 <li class="time"><%= post_time(post.created_at) %></li>
6 <li class="avatar"> 6 <li class="avatar">
7 <% if post.title == 'hub-message-twitter' %> 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 <% elsif post.title == 'hub-message-facebook' %> 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 <% else %> 11 <% else %>
12 <%= image_tag(profile_icon(post.author, :minor)) if post.author %> 12 <%= image_tag(profile_icon(post.author, :minor)) if post.author %>
13 <% end %> 13 <% end %>
@@ -21,19 +21,19 @@ @@ -21,19 +21,19 @@
21 <li class="promote"> 21 <li class="promote">
22 <% if promoted?(hub, post.author.id) == 'promoted' %> 22 <% if promoted?(hub, post.author.id) == 'promoted' %>
23 <a id="<%= post.id %>" href="#" onclick="pin_message(<%= post.id %>); return false;"> 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 </a> 25 </a>
26 <% else %> 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 <% end %> 28 <% end %>
29 </li> 29 </li>
30 <li class="pin"> 30 <li class="pin">
31 <% if !pinned_message?(hub, post.id) %> 31 <% if !pinned_message?(hub, post.id) %>
32 <a id="<%= post.id %>" href="#" onclick="pin_message(<%= post.id %>); return false;"> 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 </a> 34 </a>
35 <% else %> 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 <% end %> 37 <% end %>
38 </li> 38 </li>
39 </ul> 39 </ul>