make gs dismissal icon translucent

This commit is contained in:
danielgrippi 2011-10-24 16:11:26 -07:00
parent 90d9852e08
commit 0874a632f4
2 changed files with 8 additions and 1 deletions

View file

@ -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)

View file

@ -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)