Make scrolling to bottom whilst expanded seem less weird inertially
This commit is contained in:
parent
e08f97a549
commit
6b1d138918
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue