mirror of
https://github.com/element-hq/element-web
synced 2024-11-26 19:26:04 +03:00
Make scrolling to bottom whilst expanded seem less weird inertially
This commit is contained in:
parent
e08f97a549
commit
6b1d138918
1 changed files with 9 additions and 4 deletions
|
@ -208,10 +208,10 @@ hr.mx_RoomView_myReadMarker {
|
||||||
z-index: 1000;
|
z-index: 1000;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
-webkit-transition: all .2s ease-in-out;
|
-webkit-transition: all .2s ease-out;
|
||||||
-moz-transition: all .2s ease-in-out;
|
-moz-transition: all .2s ease-out;
|
||||||
-ms-transition: all .2s ease-in-out;
|
-ms-transition: all .2s ease-out;
|
||||||
-o-transition: all .2s ease-in-out;
|
-o-transition: all .2s ease-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_RoomView_statusArea_expanded {
|
.mx_RoomView_statusArea_expanded {
|
||||||
|
@ -221,6 +221,11 @@ hr.mx_RoomView_myReadMarker {
|
||||||
|
|
||||||
.mx_RoomView_statusArea_expanded.mx_RoomView_statusArea_mid_timeline {
|
.mx_RoomView_statusArea_expanded.mx_RoomView_statusArea_mid_timeline {
|
||||||
margin-top: -50px;
|
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 {
|
.mx_RoomView_statusAreaBox {
|
||||||
|
|
Loading…
Reference in a new issue