diff --git a/app/views/aspects/index.html.haml b/app/views/aspects/index.html.haml
index 948273dd8..425a53d81 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, :id => "gs-skip-x"
+ = link_to image_tag('close_label.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/images/close_label.png b/public/images/close_label.png
new file mode 100644
index 000000000..53aa1d3ce
Binary files /dev/null and b/public/images/close_label.png differ
diff --git a/public/stylesheets/sass/application.sass b/public/stylesheets/sass/application.sass
index 449da2ffb..ee2511bda 100644
--- a/public/stylesheets/sass/application.sass
+++ b/public/stylesheets/sass/application.sass
@@ -3418,17 +3418,27 @@ a.toggle_selector
h1,h3
:color #fff
:background orange
+ &:hover
+ #gs-skip-x
+ @include opacity(0.4)
+ @include transition(opacity, 0.25s)
+
+ &:hover
+ @include opacity(1)
#gs-shim
:position absolute
:top 380px
#gs-skip-x
- @include opacity(0.5)
- @include transition(opacity)
+ @include opacity(0)
+ @include transition(opacity, 0.25s)
+
+ img
+ :position relative
+ :right 4px
+ :height 20px
- &:hover
- @include opacity(1)
.likes_list
.avatar
@@ -3456,7 +3466,17 @@ a.toggle_selector
.popover
.close
+ @include opacity(0)
+ @include transition(opacity, 0.2s)
+
:float right
:position relative
:top -9px
:right -5px
+
+ &:hover
+ .close
+ @include opacity(0.5)
+
+ &:hover
+ @include opacity(1)