summaryrefslogtreecommitdiffstats
path: root/webapp/components/post_view
diff options
context:
space:
mode:
authorAsaad Mahmood <asaadmahmood@users.noreply.github.com>2016-10-28 01:49:32 +0500
committerJoram Wilander <jwawilander@gmail.com>2016-10-27 16:49:32 -0400
commitc5a0ac8c6a5a9dea001f975ac35445b4701a3b2b (patch)
treee266242e4e0000449f1814b63c1d1755b6a797e1 /webapp/components/post_view
parent55803ebcc80848267894bb655b979e539c6f0507 (diff)
downloadchat-c5a0ac8c6a5a9dea001f975ac35445b4701a3b2b.tar.gz
chat-c5a0ac8c6a5a9dea001f975ac35445b4701a3b2b.tar.bz2
chat-c5a0ac8c6a5a9dea001f975ac35445b4701a3b2b.zip
Shift UI changes (#4353)
* Shift UI changes * Reverting config.json
Diffstat (limited to 'webapp/components/post_view')
-rw-r--r--webapp/components/post_view/components/post_info.jsx15
1 files changed, 9 insertions, 6 deletions
diff --git a/webapp/components/post_view/components/post_info.jsx b/webapp/components/post_view/components/post_info.jsx
index 61cb103e3..aa204add1 100644
--- a/webapp/components/post_view/components/post_info.jsx
+++ b/webapp/components/post_view/components/post_info.jsx
@@ -167,6 +167,7 @@ export default class PostInfo extends React.Component {
<li
key='editPost'
role='presentation'
+ className='dropdown-submenu'
>
<a
href='#'
@@ -205,12 +206,14 @@ export default class PostInfo extends React.Component {
aria-expanded='false'
onClick={this.handleDropdownClick}
/>
- <ul
- className='dropdown-menu'
- role='menu'
- >
- {dropdownContents}
- </ul>
+ <div className='dropdown-menu__content'>
+ <ul
+ className='dropdown-menu'
+ role='menu'
+ >
+ {dropdownContents}
+ </ul>
+ </div>
</div>
);
}