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 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>
... ...