Don't overlap tile bubbles with timestamps in modern layout (#8908)

* Don't overlap tile bubbles with timestamps in modern layout

* Use timestamp width variable
This commit is contained in:
Robin 2022-06-27 13:40:46 -04:00 committed by GitHub
parent ff4e66517b
commit 5c67ef14ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,11 +19,17 @@ limitations under the License.
padding: 10px;
border-radius: 8px;
margin: 10px auto;
max-width: min(90%, 600px);
// Reserve space for external timestamps, but also cap the width
max-width: min(calc(100% - 2 * $MessageTimestamp_width), 600px);
box-sizing: border-box;
display: grid;
grid-template-columns: 24px minmax(0, 1fr) min-content min-content;
.mx_EventTile[data-layout=bubble] & {
// Timestamps are inside the tile, so the width can be less constrained
max-width: 600px;
}
&::before, &::after {
position: relative;
grid-column: 1;