fade in on hover, larger x on the welcome div
This commit is contained in:
parent
d1d24a049c
commit
e1253c4018
3 changed files with 25 additions and 5 deletions
|
|
@ -10,7 +10,7 @@
|
||||||
#welcome-to-diaspora
|
#welcome-to-diaspora
|
||||||
.container{:style => "position: relative;"}
|
.container{:style => "position: relative;"}
|
||||||
.right
|
.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
|
.span-23
|
||||||
%h1
|
%h1
|
||||||
= t('.welcome_to_diaspora', :name => current_user.first_name)
|
= t('.welcome_to_diaspora', :name => current_user.first_name)
|
||||||
|
|
|
||||||
BIN
public/images/close_label.png
Normal file
BIN
public/images/close_label.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 212 B |
|
|
@ -3418,17 +3418,27 @@ a.toggle_selector
|
||||||
h1,h3
|
h1,h3
|
||||||
:color #fff
|
:color #fff
|
||||||
:background orange
|
:background orange
|
||||||
|
&:hover
|
||||||
|
#gs-skip-x
|
||||||
|
@include opacity(0.4)
|
||||||
|
@include transition(opacity, 0.25s)
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
@include opacity(1)
|
||||||
|
|
||||||
#gs-shim
|
#gs-shim
|
||||||
:position absolute
|
:position absolute
|
||||||
:top 380px
|
:top 380px
|
||||||
|
|
||||||
#gs-skip-x
|
#gs-skip-x
|
||||||
@include opacity(0.5)
|
@include opacity(0)
|
||||||
@include transition(opacity)
|
@include transition(opacity, 0.25s)
|
||||||
|
|
||||||
|
img
|
||||||
|
:position relative
|
||||||
|
:right 4px
|
||||||
|
:height 20px
|
||||||
|
|
||||||
&:hover
|
|
||||||
@include opacity(1)
|
|
||||||
|
|
||||||
.likes_list
|
.likes_list
|
||||||
.avatar
|
.avatar
|
||||||
|
|
@ -3456,7 +3466,17 @@ a.toggle_selector
|
||||||
|
|
||||||
.popover
|
.popover
|
||||||
.close
|
.close
|
||||||
|
@include opacity(0)
|
||||||
|
@include transition(opacity, 0.2s)
|
||||||
|
|
||||||
:float right
|
:float right
|
||||||
:position relative
|
:position relative
|
||||||
:top -9px
|
:top -9px
|
||||||
:right -5px
|
:right -5px
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
.close
|
||||||
|
@include opacity(0.5)
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
@include opacity(1)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue