Browse Source

Added animation for session list.

pull/48/head
Simon Eisenmann 12 years ago
parent
commit
a9f7b54cb4
  1. 7
      src/styles/components/_buddylist.scss

7
src/styles/components/_buddylist.scss

@ -227,7 +227,10 @@
.buddy .buddysessions { .buddy .buddysessions {
margin-top: 56px; margin-top: 56px;
display:none; max-height:0px;
transition-property: max-height;
transition-duration: 1s;
transition-delay: .1s;
ul { ul {
padding-top: 10px; padding-top: 10px;
margin-left: 20px; margin-left: 20px;
@ -246,5 +249,5 @@
} }
.buddy.hovered .buddysessions { .buddy.hovered .buddysessions {
display: block; max-height:999px;
} }
Loading…
Cancel
Save