From 0874a632f4be04853bcfe7f9f31616460cd0f557 Mon Sep 17 00:00:00 2001 From: danielgrippi Date: Mon, 24 Oct 2011 16:11:26 -0700 Subject: [PATCH] make gs dismissal icon translucent --- app/views/aspects/index.html.haml | 2 +- public/stylesheets/sass/application.sass | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/app/views/aspects/index.html.haml b/app/views/aspects/index.html.haml index 052fa6d7c..6275a3b77 100644 --- a/app/views/aspects/index.html.haml +++ b/app/views/aspects/index.html.haml @@ -10,7 +10,7 @@ #welcome-to-diaspora .container{:style => "position: relative;"} .right - = link_to image_tag('deletelabel.png'), getting_started_completed_path + = link_to image_tag('deletelabel.png'), getting_started_completed_path, :id => "gs-skip-x" .span-23 %h1 = t('.welcome_to_diaspora', :name => current_user.first_name) diff --git a/public/stylesheets/sass/application.sass b/public/stylesheets/sass/application.sass index 2a5f40422..aa5a20976 100644 --- a/public/stylesheets/sass/application.sass +++ b/public/stylesheets/sass/application.sass @@ -3410,3 +3410,10 @@ a.toggle_selector #gs-shim :position absolute :top 380px + +#gs-skip-x + @include opacity(0.5) + @include transition(opacity) + + &:hover + @include opacity(1)