2020-04-29 14:07:17 +00:00
|
|
|
/*
|
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2020-07-13 21:56:20 +00:00
|
|
|
$left-gutter: 64px;
|
2020-04-29 14:07:17 +00:00
|
|
|
|
|
|
|
.mx_GroupLayout {
|
2022-05-09 06:27:13 +00:00
|
|
|
--GroupLayout-EventTile-line-height: $font-22px;
|
|
|
|
|
2020-04-29 14:07:17 +00:00
|
|
|
.mx_EventTile {
|
2022-03-22 22:14:55 +00:00
|
|
|
> .mx_DisambiguatedProfile {
|
2021-01-24 16:40:19 +00:00
|
|
|
line-height: $font-20px;
|
2021-03-04 13:54:35 +00:00
|
|
|
margin-left: $left-gutter;
|
2020-04-29 14:07:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> .mx_EventTile_avatar {
|
|
|
|
position: absolute;
|
2021-07-22 09:31:46 +00:00
|
|
|
z-index: 9;
|
2020-04-29 14:07:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MessageTimestamp {
|
2022-05-07 03:07:51 +00:00
|
|
|
position: absolute; // for modern layout
|
2020-04-29 14:07:17 +00:00
|
|
|
}
|
|
|
|
|
2022-05-09 06:27:13 +00:00
|
|
|
.mx_EventTile_line,
|
|
|
|
.mx_EventTile_reply {
|
2021-01-24 16:40:19 +00:00
|
|
|
padding-top: 1px;
|
2020-04-29 14:07:17 +00:00
|
|
|
padding-bottom: 3px;
|
2022-05-09 06:27:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_reply {
|
|
|
|
line-height: var(--GroupLayout-EventTile-line-height);
|
2020-04-29 14:07:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|