summaryrefslogtreecommitdiffstats
path: root/web/react/components/post_list.jsx
diff options
context:
space:
mode:
authorReed Garmsen <rgarmsen2295@gmail.com>2015-08-12 14:12:17 -0700
committerReed Garmsen <rgarmsen2295@gmail.com>2015-08-12 14:27:44 -0700
commit14c121dc0cccdd36f97b0b13cde6dd3a5802bb9e (patch)
tree53864d1443a4415b4fd0fb1379c1f73dd51f1eca /web/react/components/post_list.jsx
parent0f1c9917271d8e28c55b8d930ac9057ef19e5862 (diff)
downloadchat-14c121dc0cccdd36f97b0b13cde6dd3a5802bb9e.tar.gz
chat-14c121dc0cccdd36f97b0b13cde6dd3a5802bb9e.tar.bz2
chat-14c121dc0cccdd36f97b0b13cde6dd3a5802bb9e.zip
Implements better markup for css changes to be made, including an overlay of the dropzones and help pic/text
Diffstat (limited to 'web/react/components/post_list.jsx')
-rw-r--r--web/react/components/post_list.jsx16
1 files changed, 11 insertions, 5 deletions
diff --git a/web/react/components/post_list.jsx b/web/react/components/post_list.jsx
index 83f806b79..756ed521d 100644
--- a/web/react/components/post_list.jsx
+++ b/web/react/components/post_list.jsx
@@ -463,11 +463,17 @@ module.exports = React.createClass({
}
return (
- <div ref="postlist" className="post-list-holder-by-time">
- <div className="post-list__table">
- <div className="post-list__content">
- { more_messages }
- { postCtls }
+ <div>
+ <div className='center-file-overlay invisible'>
+ <span className='center-file-help-text'>Drop a file to upload it.</span>
+ <img className='center-file-help-picture' />
+ </div>
+ <div ref="postlist" className="post-list-holder-by-time">
+ <div className="post-list__table">
+ <div className="post-list__content">
+ { more_messages }
+ { postCtls }
+ </div>
</div>
</div>
</div>