summaryrefslogtreecommitdiffstats
path: root/web/sass-files
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2016-02-25 11:25:16 -0500
committerHarrison Healey <harrisonmhealey@gmail.com>2016-03-03 08:46:55 -0500
commitf7b04f0f275cb70e8dc045a1257cedade81e6a8e (patch)
tree6aeabd3c5eb0272708f4624bacc323c75de96346 /web/sass-files
parentaf2a64b6bdd125415093f69edbf80237c730ccf1 (diff)
downloadchat-f7b04f0f275cb70e8dc045a1257cedade81e6a8e.tar.gz
chat-f7b04f0f275cb70e8dc045a1257cedade81e6a8e.tar.bz2
chat-f7b04f0f275cb70e8dc045a1257cedade81e6a8e.zip
Merged contents of MoreDirectChannelsModal and ChannelMembersModal into UserList
Diffstat (limited to 'web/sass-files')
-rw-r--r--web/sass-files/sass/partials/_modal.scss22
1 files changed, 22 insertions, 0 deletions
diff --git a/web/sass-files/sass/partials/_modal.scss b/web/sass-files/sass/partials/_modal.scss
index 09c366c77..6144dc611 100644
--- a/web/sass-files/sass/partials/_modal.scss
+++ b/web/sass-files/sass/partials/_modal.scss
@@ -434,3 +434,25 @@
max-height: 150px;
}
}
+
+.user-list {
+ display: flex;
+ flex-direction: column;
+
+ .profile-img {
+ width: 38px;
+ height: 38px;
+ flex-grow: 0;
+ flex-shrink: 0;
+ }
+
+ .user-list-item__details {
+ flex-grow: 1;
+ flex-shrink: 1;
+ }
+
+ .user-list-item__actions {
+ flex-grow: 0;
+ flex-shrink: 0;
+ }
+}