summaryrefslogtreecommitdiffstats
path: root/webapp/sass
diff options
context:
space:
mode:
authorDebanshu Kundu <debanshu.kundu@joshtechnologygroup.com>2016-12-19 19:35:39 +0530
committerHarrison Healey <harrisonmhealey@gmail.com>2016-12-19 09:05:39 -0500
commit6a5cdd5cdf09317ce259dd146fc4f1cb76d8b9b6 (patch)
treee5d01a5d3eae57c74ca0f4145a3e0e1b14b746d6 /webapp/sass
parent999d1553e1ce45adf58f6082b160bc1147dc592b (diff)
downloadchat-6a5cdd5cdf09317ce259dd146fc4f1cb76d8b9b6.tar.gz
chat-6a5cdd5cdf09317ce259dd146fc4f1cb76d8b9b6.tar.bz2
chat-6a5cdd5cdf09317ce259dd146fc4f1cb76d8b9b6.zip
PLT-135 Showing "(Edited)" indicator if a message has been edited. (#4764)
Diffstat (limited to 'webapp/sass')
-rw-r--r--webapp/sass/layout/_post.scss18
1 files changed, 16 insertions, 2 deletions
diff --git a/webapp/sass/layout/_post.scss b/webapp/sass/layout/_post.scss
index 235794eee..258b29ed8 100644
--- a/webapp/sass/layout/_post.scss
+++ b/webapp/sass/layout/_post.scss
@@ -602,7 +602,7 @@
}
p + p {
- margin-top: 1em;
+ margin: 1em 0;
}
ol,
@@ -983,11 +983,20 @@
word-wrap: break-word;
p {
+ display: inline;
+ }
+
+ div {
margin: 0 0 .4em;
}
p + p {
- margin-top: 1.4em;
+ margin: 1.4em 0;
+ display: block;
+ }
+
+ p:last-of-type {
+ display: inline;
}
li {
@@ -1065,6 +1074,11 @@
color: white;
}
}
+
+ span.edited {
+ color: #A3A3A3;
+ font-size: 0.87em;
+ }
}
.post__link {