Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJan C. Borchardt <hey@jancborchardt.net>2022-02-15 22:22:38 +0300
committerGitHub <noreply@github.com>2022-02-15 22:22:38 +0300
commit5f2b568a0b23c1805b372f3f2709c3cc295885bf (patch)
treeae5e703db04e8468e29d41b3a368e1f40ff57748 /src
parentb20a03b0902a308632233f60bc86fcb7b8086ec8 (diff)
Pointer cursor for quoted text clickability feedback
Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'src')
-rw-r--r--src/components/MessagePlainTextBody.vue8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/components/MessagePlainTextBody.vue b/src/components/MessagePlainTextBody.vue
index 39d8b1b58..d71840da6 100644
--- a/src/components/MessagePlainTextBody.vue
+++ b/src/components/MessagePlainTextBody.vue
@@ -69,6 +69,10 @@ export default {
<style lang="scss">
.quoted-text {
color: var(--color-text-maxcontrast)
+
+ summary {
+ cursor: pointer
+ }
}
</style>
<style lang="scss" scoped>
@@ -77,5 +81,9 @@ export default {
}
.mail-signature, .quoted {
color: var(--color-text-maxcontrast)
+
+ summary {
+ cursor: pointer
+ }
}
</style>