Make scrolling to bottom whilst expanded seem less weird inertially

pull/2981/head
lukebarnard 2017-01-19 12:45:26 +01:00
parent e08f97a549
commit 6b1d138918
1 changed files with 9 additions and 4 deletions

View File

@ -208,10 +208,10 @@ hr.mx_RoomView_myReadMarker {
z-index: 1000;
overflow: hidden;
-webkit-transition: all .2s ease-in-out;
-moz-transition: all .2s ease-in-out;
-ms-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
-webkit-transition: all .2s ease-out;
-moz-transition: all .2s ease-out;
-ms-transition: all .2s ease-out;
-o-transition: all .2s ease-out;
}
.mx_RoomView_statusArea_expanded {
@ -221,6 +221,11 @@ hr.mx_RoomView_myReadMarker {
.mx_RoomView_statusArea_expanded.mx_RoomView_statusArea_mid_timeline {
margin-top: -50px;
-webkit-transition: all .2s ease-in;
-moz-transition: all .2s ease-in;
-ms-transition: all .2s ease-in;
-o-transition: all .2s ease-in;
}
.mx_RoomView_statusAreaBox {