summaryrefslogtreecommitdiffstats
path: root/webapp
diff options
context:
space:
mode:
authorSaturnino Abril <saturnino.abril@gmail.com>2017-05-30 23:19:48 +0800
committerCorey Hulen <corey@hulen.com>2017-05-30 08:19:48 -0700
commit23ca4fe69cb4baf0c38666b917eb8307949d8b5b (patch)
treeeb9667a7e2e01d9cdde3cd71d1fa21e684dd282b /webapp
parentb2453735b2109f8039204e59cece98cbac7bc3e7 (diff)
downloadchat-23ca4fe69cb4baf0c38666b917eb8307949d8b5b.tar.gz
chat-23ca4fe69cb4baf0c38666b917eb8307949d8b5b.tar.bz2
chat-23ca4fe69cb4baf0c38666b917eb8307949d8b5b.zip
make username clickable on mobile view (#6519)
Diffstat (limited to 'webapp')
-rw-r--r--webapp/components/user_profile.jsx1
-rw-r--r--webapp/sass/responsive/_mobile.scss5
2 files changed, 2 insertions, 4 deletions
diff --git a/webapp/components/user_profile.jsx b/webapp/components/user_profile.jsx
index 2326622ec..5fb01b725 100644
--- a/webapp/components/user_profile.jsx
+++ b/webapp/components/user_profile.jsx
@@ -87,7 +87,6 @@ export default class UserProfile extends React.Component {
>
<div
className='user-popover'
- id={'profile_' + this.uniqueId}
>
{name}
</div>
diff --git a/webapp/sass/responsive/_mobile.scss b/webapp/sass/responsive/_mobile.scss
index 9c442543e..2372ec966 100644
--- a/webapp/sass/responsive/_mobile.scss
+++ b/webapp/sass/responsive/_mobile.scss
@@ -217,7 +217,8 @@
}
.user-popover {
- pointer-events: none;
+ cursor: pointer;
+ display: inline-block;
}
.signup-team__container {
@@ -326,8 +327,6 @@
}
.col__name {
- pointer-events: none;
-
.user-popover {
max-width: 130px;
}