abstract out styles for menu from profile

This commit is contained in:
Sven Fuchs 2012-11-12 12:12:57 +01:00
parent a039da5dd1
commit 3a7850cd02
2 changed files with 36 additions and 25 deletions

View File

@ -19,7 +19,7 @@
).property('tab')
classProfile: (->
classes = ['profile']
classes = ['profile menu']
classes.push('active') if @get('tab') == 'profile'
classes.push(Travis.app.get('authState'))
classes.join(' ')

View File

@ -28,14 +28,42 @@
&:hover
color: $color-link-top-highlight
.profile
.menu
position: relative
float: right
.handle
margin: 0
.signed-out, .signing-in, .signed-in
&:hover > ul
display: block
ul
display: none
position: absolute
z-index: 300
top: 40px
width: 100%
background-color: $color-bg-dropdown
@include border-bottom-radius(6px)
@include single-box-shadow(rgba(black, 0.3), 2px, 2px, 10px)
li
display: block
&:last-child a:hover
@include border-bottom-radius(4px)
a
display: block
line-height: 24px
white-space: nowrap
padding: 5px 25px
&:hover
background-color: $color-bg-dropdown-highlight
.menu.profile
float: right
.handle > *
display: none
padding: 0 15px 0 45px
.signed-out, .signing-in
@ -58,32 +86,15 @@
height: 22px
@include border-radius(3px)
&.signed-in:hover > ul
display: block
ul
display: none
position: absolute
z-index: 300
top: 40px
width: 100%
min-width: 145px
background-color: $color-bg-dropdown
@include border-bottom-radius(6px)
@include single-box-shadow(rgba(black, 0.3), 2px, 2px, 10px)
li
display: block
&:last-child a:hover
@include border-bottom-radius(4px)
a
display: block
padding: 5px 25px 5px 45px
line-height: 24px
white-space: nowrap
&:hover
background-color: $color-bg-dropdown-highlight
&:not(.signed-in):hover ul
display: none
#home #navigation .home,
#stats #navigation .stats,