summary refs log tree commit diff
path: root/resources/qml/delegates/TextMessage.qml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2020-02-27 00:34:58 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2020-02-27 00:34:58 +0100
commitb1eff0a37f242608558d7c3fcdea9e09b89e3457 (patch)
tree875c574918759286d0592f6836bd88aba239ce56 /resources/qml/delegates/TextMessage.qml
parentDon't let click on reply steal focus from the replied to elements (diff)
downloadnheko-b1eff0a37f242608558d7c3fcdea9e09b89e3457.tar.xz
Improve link theming
Diffstat (limited to 'resources/qml/delegates/TextMessage.qml')
-rw-r--r--resources/qml/delegates/TextMessage.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/delegates/TextMessage.qml b/resources/qml/delegates/TextMessage.qml

index b707ae74..7e4b1f29 100644 --- a/resources/qml/delegates/TextMessage.qml +++ b/resources/qml/delegates/TextMessage.qml
@@ -2,6 +2,6 @@ import ".." MatrixText { property string formatted: model.data.formattedBody - text: formatted.replace("<pre>", "<pre style='white-space: pre-wrap'>") + text: "<style type=\"text/css\">a { color:"+colors.link+";}</style>" + formatted.replace("<pre>", "<pre style='white-space: pre-wrap'>") width: parent ? parent.width : undefined }