diff --git a/app/assets/stylesheets/clean.css b/app/assets/stylesheets/clean.css index 1f2babdc..a70059dd 100644 --- a/app/assets/stylesheets/clean.css +++ b/app/assets/stylesheets/clean.css @@ -829,6 +829,10 @@ left: 29px; } +.homePage .infoAndHelp { + display:none; +} + .infoAndHelp { position: fixed; bottom: 20px; diff --git a/app/assets/stylesheets/uservoice.css b/app/assets/stylesheets/uservoice.css index 0f878309..b548658f 100644 --- a/app/assets/stylesheets/uservoice.css +++ b/app/assets/stylesheets/uservoice.css @@ -1,6 +1,10 @@ /* =USERVOICE ICON DEFINE --------------------------------------------------------*/ - + +.unauthenticated .uv-icon { + display: none; +} + div.uv-icon.uv-bottom-left { background-image:url(feedback_sprite.png); color:#FFFFFF; diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 8b559fad..9911466a 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -66,7 +66,7 @@ - +"> <% if devise_error_messages? %>

<%= devise_error_messages! %>

@@ -74,7 +74,7 @@

<%= notice %>

<% end %> - <%= content_tag :div, class: authenticated? ? "main authenticated" : "main unauthenticated" do %> + <%= content_tag :div, class: "main" do %> <% classes = action_name == "home" ? "homePage" : "" classes += action_name == "home" && authenticated? ? " explorePage" : ""