summaryrefslogtreecommitdiffstats
path: root/web/react/components/file_upload_overlay.jsx
diff options
context:
space:
mode:
authorAsaad Mahmood <Unknowngi@live.com>2015-10-22 20:18:31 +0500
committerAsaad Mahmood <Unknowngi@live.com>2015-10-22 20:18:31 +0500
commit5c09060f530148210ca9ee869226afea8d8d2883 (patch)
tree6d2297e3483926e2327128fd975990300401aa64 /web/react/components/file_upload_overlay.jsx
parent649f42e3fc706f8fa829276bcdb825381bc703f2 (diff)
downloadchat-5c09060f530148210ca9ee869226afea8d8d2883.tar.gz
chat-5c09060f530148210ca9ee869226afea8d8d2883.tar.bz2
chat-5c09060f530148210ca9ee869226afea8d8d2883.zip
Multiple UI Improvements
- Changing the UI for the active item in the nav - Updating the UI for drag and drop - Fixing z-index for date selector
Diffstat (limited to 'web/react/components/file_upload_overlay.jsx')
-rw-r--r--web/react/components/file_upload_overlay.jsx28
1 files changed, 15 insertions, 13 deletions
diff --git a/web/react/components/file_upload_overlay.jsx b/web/react/components/file_upload_overlay.jsx
index d991dd625..dbba00022 100644
--- a/web/react/components/file_upload_overlay.jsx
+++ b/web/react/components/file_upload_overlay.jsx
@@ -12,19 +12,21 @@ export default class FileUploadOverlay extends React.Component {
return (
<div className={overlayClass}>
- <div className='overlay__circle'>
- <img
- className='overlay__files'
- src='/static/images/filesOverlay.png'
- alt='Files'
- />
- <span><i className='fa fa-upload'></i>{'Drop a file to upload it.'}</span>
- <img
- className='overlay__logo'
- src='/static/images/logoWhite.png'
- width='100'
- alt='Logo'
- />
+ <div className='overlay__indent'>
+ <div className='overlay__circle'>
+ <img
+ className='overlay__files'
+ src='/static/images/filesOverlay.png'
+ alt='Files'
+ />
+ <span><i className='fa fa-upload'></i>{'Drop a file to upload it.'}</span>
+ <img
+ className='overlay__logo'
+ src='/static/images/logoWhite.png'
+ width='100'
+ alt='Logo'
+ />
+ </div>
</div>
</div>
);