summaryrefslogtreecommitdiffstats
path: root/web/sass-files/sass/partials/_modal.scss
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2015-10-14 16:57:03 -0400
committerhmhealey <harrisonmhealey@gmail.com>2015-10-14 16:57:08 -0400
commitae0d4dce7bc42f75568d65aa66c8db244f8f329f (patch)
treecc71a6d0fa48dc592b2ce4aa9f2cdec67bfb339d /web/sass-files/sass/partials/_modal.scss
parent6c4022337cc097efcf33bd9eb61183eaa566f830 (diff)
downloadchat-ae0d4dce7bc42f75568d65aa66c8db244f8f329f.tar.gz
chat-ae0d4dce7bc42f75568d65aa66c8db244f8f329f.tar.bz2
chat-ae0d4dce7bc42f75568d65aa66c8db244f8f329f.zip
Updated More Direct Channels modal and converted it to ReactBootstrap
Diffstat (limited to 'web/sass-files/sass/partials/_modal.scss')
-rw-r--r--web/sass-files/sass/partials/_modal.scss46
1 files changed, 46 insertions, 0 deletions
diff --git a/web/sass-files/sass/partials/_modal.scss b/web/sass-files/sass/partials/_modal.scss
index 90ea8ce2c..b942a5a40 100644
--- a/web/sass-files/sass/partials/_modal.scss
+++ b/web/sass-files/sass/partials/_modal.scss
@@ -329,3 +329,49 @@
}
}
}
+
+.modal-direct-channels {
+ .user-list {
+ list-style-type: none;
+ margin: 15px 0px 0px;
+ max-height: 600px;
+ padding: 0px;
+ overflow: auto;
+
+ li {
+ border-bottom: 1px solid #ddd;
+ height: 60px;
+ padding: 10px 0px;
+
+ .image-div {
+ padding: 0px;
+
+ .profile-image {
+ width: 40px;
+ height: 40px;
+ @include border-radius(20px);
+ }
+ }
+
+ .username {
+ font-weight: bold;
+ }
+
+ .nickname {
+ color: #888;
+ }
+
+ .btn-div {
+ padding: 0px;
+ .btn-message {
+ position: relative;
+ top: 5px;
+ }
+ }
+
+ &:last-child {
+ border-bottom: 0px;
+ }
+ }
+ }
+}