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

Fix inconsistent styling for links on hover
pull/21833/head
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
1 changed files with 8 additions and 2 deletions

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 {