made flash messages awesome this time
This commit is contained in:
parent
d5e3033308
commit
0033237b4e
3 changed files with 27 additions and 20 deletions
|
|
@ -92,9 +92,10 @@
|
|||
⇧
|
||||
|
||||
#notifications
|
||||
|
||||
- flash.each do |name, msg|
|
||||
%div{:id => "flash_#{name}"}= msg
|
||||
%div{:id => "flash_#{name}"}
|
||||
.message
|
||||
= msg
|
||||
|
||||
%header{:class=>('landing' unless current_user)}
|
||||
= render 'layouts/header'
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
var flashMessages = $("#flash_notice, #flash_error, #flash_alert");
|
||||
flashMessages.animate({
|
||||
top: 0
|
||||
}).delay(2000).animate({
|
||||
}).delay(4000).animate({
|
||||
top: -100
|
||||
}, flashMessages.remove);
|
||||
};
|
||||
|
|
|
|||
|
|
@ -73,36 +73,42 @@ form
|
|||
#flash_notice,
|
||||
#flash_error,
|
||||
#flash_alert
|
||||
@include box-shadow(0, 1px, 2px, #333)
|
||||
:z-index 100
|
||||
:z-index 999
|
||||
:position fixed
|
||||
:color #fff
|
||||
|
||||
:color #666
|
||||
:top -100px
|
||||
|
||||
:left 0
|
||||
|
||||
:width 100%
|
||||
:padding 1em
|
||||
|
||||
:font
|
||||
:weight bold
|
||||
:text
|
||||
:align center
|
||||
|
||||
.message
|
||||
@include border-radius(6px)
|
||||
@include box-shadow(0, 1px, 5px, rgba(0,0,0,0.4))
|
||||
:display inline-block
|
||||
:width 400px
|
||||
:padding
|
||||
:top 45px
|
||||
:bottom 8px
|
||||
|
||||
#flash_notice
|
||||
.message
|
||||
:background
|
||||
:color rgb(126,240,77)
|
||||
:color rgba(126,240,77,0.98)
|
||||
:text
|
||||
:shadow 0 1px #6C6
|
||||
:color #F4F899
|
||||
:border 1px solid darken(#F4F899, 40%)
|
||||
|
||||
#flash_error,
|
||||
#flash_alert
|
||||
.message
|
||||
:color #fff
|
||||
:background
|
||||
:color rgb(208,49,43)
|
||||
:color rgba(208,49,43,0.98)
|
||||
:border
|
||||
:bottom solid 1px #C66
|
||||
:text
|
||||
:shadow 0 1px #C66
|
||||
:color #CA410B
|
||||
:border 1px solid darken(#CA410B, 10%)
|
||||
|
||||
.login_error,
|
||||
.login_alert
|
||||
|
|
|
|||
Loading…
Reference in a new issue