Commit 8a4a8ed363155fa16016594e3e29f4a76c7c710e

Authored by Hugo Melo
1 parent 1f82a563
Exists in master

Hide gamification dashboard and menu with score

Showing 2 changed files with 14 additions and 0 deletions   Show diff stats
lib/juventude_plugin.rb
... ... @@ -17,4 +17,7 @@ class JuventudePlugin < Noosfero::Plugin
17 17  
18 18 end
19 19  
  20 + def stylesheet?
  21 + true
  22 + end
20 23 end
... ...
public/style.css 0 → 100644
... ... @@ -0,0 +1,11 @@
  1 +#user .logged-in .gamification-plugin.user-info-template {
  2 + margin-left: 0 !important
  3 + padding: 0 !important
  4 +}
  5 +#user .logged-in .gamification-plugin.user-info-template * {
  6 + display: none;
  7 +}
  8 +
  9 +.action-gamification_plugin_profile-dashboard {
  10 + display: none;
  11 +}
... ...