summaryrefslogtreecommitdiffstats
path: root/webapp/components
diff options
context:
space:
mode:
authorAsaad Mahmood <asaadmahmood@users.noreply.github.com>2017-01-04 21:29:55 +0500
committerJoram Wilander <jwawilander@gmail.com>2017-01-04 11:29:55 -0500
commitbe5aa0398b254c37a0fae143c0e26a43d5004468 (patch)
tree03b471f1a47e672502ddd11d1499f0e16eed8188 /webapp/components
parent63d2851ec7cffe4c3ac2bdedfbfebd87f3053676 (diff)
downloadchat-be5aa0398b254c37a0fae143c0e26a43d5004468.tar.gz
chat-be5aa0398b254c37a0fae143c0e26a43d5004468.tar.bz2
chat-be5aa0398b254c37a0fae143c0e26a43d5004468.zip
Ui fixes (#4954)
* PLT-5102 - Adjusting whitespace for post textarea * PLT-5099 - Fixing alignment for inputs * PLT-5095 - Pending post controls z-index increase
Diffstat (limited to 'webapp/components')
-rw-r--r--webapp/components/textbox.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/webapp/components/textbox.jsx b/webapp/components/textbox.jsx
index 1189a51d8..af3a14683 100644
--- a/webapp/components/textbox.jsx
+++ b/webapp/components/textbox.jsx
@@ -115,9 +115,9 @@ export default class Textbox extends React.Component {
// Move over attachment icon to compensate for the scrollbar
if (height > maxHeight) {
- wrapper.closest('.post-body__cell').addClass('scroll');
+ wrapper.closest('.post-create').addClass('scroll');
} else {
- wrapper.closest('.post-body__cell').removeClass('scroll');
+ wrapper.closest('.post-create').removeClass('scroll');
}
}