summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2016-02-26 11:16:43 -0500
committerHarrison Healey <harrisonmhealey@gmail.com>2016-03-03 08:46:55 -0500
commitf7c943e60a1b07817f7673e00f9498d6666e90d3 (patch)
treef54f068e5ce1d569cf98ac9bd498484ab408bfa7 /web
parentf7b04f0f275cb70e8dc045a1257cedade81e6a8e (diff)
downloadchat-f7c943e60a1b07817f7673e00f9498d6666e90d3.tar.gz
chat-f7c943e60a1b07817f7673e00f9498d6666e90d3.tar.bz2
chat-f7c943e60a1b07817f7673e00f9498d6666e90d3.zip
Fixed overflowing details fields in UserList
Diffstat (limited to 'web')
-rw-r--r--web/sass-files/sass/partials/_modal.scss11
1 files changed, 11 insertions, 0 deletions
diff --git a/web/sass-files/sass/partials/_modal.scss b/web/sass-files/sass/partials/_modal.scss
index 6144dc611..adf916775 100644
--- a/web/sass-files/sass/partials/_modal.scss
+++ b/web/sass-files/sass/partials/_modal.scss
@@ -446,9 +446,20 @@
flex-shrink: 0;
}
+
.user-list-item__details {
flex-grow: 1;
flex-shrink: 1;
+ overflow:hidden;
+ text-overflow: ellipsis;
+
+ .more-name {
+ white-space: nowrap;
+ }
+
+ .more-description {
+ white-space: nowrap;
+ }
}
.user-list-item__actions {