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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2019-07-08 13:18:54 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2019-07-08 13:29:58 +0300
commitc28b57c1ed3bdf82e7a1442614d1f42cd6cebca9 (patch)
tree5e6e753ffd573ae6e87c85864b8047bfd7caf233 /css
parente0cd4e12ad8eefd2053ad1bcf8a91c1fb27cb094 (diff)
Add trailing " ↗" to external links in chat messages
This is purely a visual hint, so it is added using the ":after" pseudo class of CSS. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'css')
-rw-r--r--css/chatview.scss4
1 files changed, 4 insertions, 0 deletions
diff --git a/css/chatview.scss b/css/chatview.scss
index 1525df979..6228a1fea 100644
--- a/css/chatview.scss
+++ b/css/chatview.scss
@@ -369,3 +369,7 @@ body:not(#body-public) #chatView .comment:not(.newCommentRow) .message .mention-
* force it to be on its own line below the preview. */
display: block;
}
+
+#chatView .comment .message .external:after {
+ content: " ↗";
+}