[fix] Display last flash message first. Bug introduced in 0864548c0.

This commit is contained in:
opi 2016-02-04 12:45:31 +01:00
parent 978cf6eee7
commit fb20b529e1
2 changed files with 7 additions and 1 deletions

View file

@ -544,6 +544,9 @@ input[type='radio'].nice-radio {
overflow: hidden; overflow: hidden;
box-shadow: 0 0 1px rgba(0,0,0, 0.2); box-shadow: 0 0 1px rgba(0,0,0, 0.2);
.transition(max-height 0.15s); .transition(max-height 0.15s);
.messages {
max-height: 30px;
}
&:hover, &:hover,
&:active, &:active,
&:focus, &:focus,
@ -554,6 +557,9 @@ input[type='radio'].nice-radio {
min-height: 30px; min-height: 30px;
max-height: 70%; max-height: 70%;
box-shadow: 0px 0 1px rgba(0,0,0, 0.5); box-shadow: 0px 0 1px rgba(0,0,0, 0.5);
.messages {
max-height: none;
}
} }
p { p {

File diff suppressed because one or more lines are too long