summaryrefslogtreecommitdiffstats
path: root/webapp
diff options
context:
space:
mode:
authorAsaad Mahmood <asaadmahmood@users.noreply.github.com>2017-04-07 23:22:41 +0500
committerGeorge Goldberg <george@gberg.me>2017-04-07 19:22:41 +0100
commit6e31e017ebc03017639e6ca16196ea02546131be (patch)
treef928a26ac53bb61ee01ad6e48ac748e2dfb87d3b /webapp
parent63c122bc028198704485e00cc47c7ba2218e9708 (diff)
downloadchat-6e31e017ebc03017639e6ca16196ea02546131be.tar.gz
chat-6e31e017ebc03017639e6ca16196ea02546131be.tar.bz2
chat-6e31e017ebc03017639e6ca16196ea02546131be.zip
Minor bug fixes (#6019)
* PLT-6193 - Post right scroll for small threads * PLT-6210 - Emoji icon not aligned. * Fixing word break
Diffstat (limited to 'webapp')
-rw-r--r--webapp/sass/layout/_markdown.scss4
-rw-r--r--webapp/sass/layout/_post-right.scss3
-rw-r--r--webapp/sass/layout/_post.scss2
3 files changed, 7 insertions, 2 deletions
diff --git a/webapp/sass/layout/_markdown.scss b/webapp/sass/layout/_markdown.scss
index 1f8ea041e..feea84b5b 100644
--- a/webapp/sass/layout/_markdown.scss
+++ b/webapp/sass/layout/_markdown.scss
@@ -1,5 +1,9 @@
@charset 'UTF-8';
+.markdown__link {
+ word-break: break-all;
+}
+
.markdown__heading {
font-weight: 700;
line-height: 1.5;
diff --git a/webapp/sass/layout/_post-right.scss b/webapp/sass/layout/_post-right.scss
index 9282d0d7b..9772ebc67 100644
--- a/webapp/sass/layout/_post-right.scss
+++ b/webapp/sass/layout/_post-right.scss
@@ -148,9 +148,8 @@
-webkit-overflow-scrolling: touch;
@include flex(1 1 auto);
overflow: auto;
- position: relative;
padding-top: 10px;
- min-height: 700px;
+ position: relative;
.file-preview__container {
margin-top: 5px;
diff --git a/webapp/sass/layout/_post.scss b/webapp/sass/layout/_post.scss
index 2a2876116..02fa28a26 100644
--- a/webapp/sass/layout/_post.scss
+++ b/webapp/sass/layout/_post.scss
@@ -857,6 +857,7 @@
// If the last paragraph of an edited post is a paragraph, make it inline-block so that the (edited) indicator can be on the same line as it
.post-message__text > p:last-child {
display: inline-block;
+ width: auto;
}
.post-edited-indicator {
@@ -1122,6 +1123,7 @@
&:after {
content: '[...]';
+ font-family: 'Open Sans', sans-serif;
position: relative;
top: -1px;
}