Merge pull request #6513 from matrix-org/jano/fix-link-decoration

Fix inconsistent styling for links on hover
This commit is contained in:
Jano Garcia 2021-07-30 14:08:15 +02:00 committed by GitHub
commit 27e432df4b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -459,8 +459,14 @@ $hover-select-border: 4px;
/* Various markdown overrides */
.mx_EventTile_body pre {
border: 1px solid transparent;
.mx_EventTile_body {
a:hover {
text-decoration: underline;
}
pre {
border: 1px solid transparent;
}
}
.mx_EventTile_content .markdown-body {