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:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2019-07-15 10:05:41 +0300
committerGitHub <noreply@github.com>2019-07-15 10:05:41 +0300
commit927458aa1302e5245dd9d3fdf21fc9dffaf43c18 (patch)
treeebbb34972f4fe49059342025842210ce1ae1cd99 /css
parentcd45b1f0e9cfb2413866fd90da482f7bf3867c98 (diff)
parent458c8c9f487c75ba8ffe1ab18dc4419a60ebd9da (diff)
Merge pull request #1954 from nextcloud/bugfix/noissue/message-date-tooltips-are-not-consistent
Fixed inconsistent date tooltips in messages
Diffstat (limited to 'css')
-rw-r--r--css/chatview.scss10
1 files changed, 8 insertions, 2 deletions
diff --git a/css/chatview.scss b/css/chatview.scss
index 6228a1fea..8e5fadd22 100644
--- a/css/chatview.scss
+++ b/css/chatview.scss
@@ -216,10 +216,16 @@ body:not(#body-public) #chatView .comment .authorRow:not(.currentUser):not(.gues
display: none;
}
-#chatView .comments:not(.systemMessage) li .message {
+#chatView .comments .authorRow,
+#chatView .comments li .message {
+ /* Makes the container slightly narrower in order not to cover the date on
+ * the right side, thus allowing the date tooltip to be shown properly. */
+ width: calc(100% - 80px)
+}
+
+#chatView .comments li .message {
padding-left: 40px;
display: inline-block;
- width: calc(100% - 80px);
}
#chatView .comment .action {