Apply scroll margins to RoomTile so that they don't scroll under the "sticky" headers
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
6bc39547c7
commit
64237c9f4e
1 changed files with 9 additions and 0 deletions
|
@ -21,6 +21,10 @@ limitations under the License.
|
||||||
margin-bottom: 4px;
|
margin-bottom: 4px;
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
|
|
||||||
|
// allow scrollIntoView to ignore the sticky headers, must match combined height of .mx_RoomSublist2_headerContainer
|
||||||
|
scroll-margin-top: 32px;
|
||||||
|
scroll-margin-bottom: 32px;
|
||||||
|
|
||||||
// The tile is also a flexbox row itself
|
// The tile is also a flexbox row itself
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
|
@ -164,6 +168,11 @@ limitations under the License.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// do not apply scroll-margin-bottom to the sublist which will not have a sticky header below it
|
||||||
|
.mx_RoomSublist2:last-child .mx_RoomTile2 {
|
||||||
|
scroll-margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
// We use these both in context menus and the room tiles
|
// We use these both in context menus and the room tiles
|
||||||
.mx_RoomTile2_iconBell::before {
|
.mx_RoomTile2_iconBell::before {
|
||||||
mask-image: url('$(res)/img/feather-customised/bell.svg');
|
mask-image: url('$(res)/img/feather-customised/bell.svg');
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue