make sure chat sticks to the bottom of the chat window to prevent moving when loading

This commit is contained in:
Stefan Breunig
2013-02-04 14:02:52 +01:00
parent bdde0f8af2
commit 1f2c5514d4
3 changed files with 14 additions and 5 deletions

View File

@ -130,8 +130,17 @@ a:hover {
height: -webkit-calc(100% - 4px);
height: -moz-calc(100% - 4px);
padding: 2px;
position:relative;
}
/* make text stick to the bottom */
#chat > div > div {
position: absolute;
bottom:0;
left:2px;
}
#chat p {
display: block;
padding: 1px 2px;