summaryrefslogtreecommitdiffstats
path: root/web/sass-files
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2015-10-21 11:03:50 -0400
committerhmhealey <harrisonmhealey@gmail.com>2015-10-23 13:05:38 -0400
commita5a2826700b1fc6b19ba38698cfa703f58476bc6 (patch)
treea57d55458bd2b8f96673513a8f91c88d72feb85f /web/sass-files
parent4172d0286e61b4fd5459fc64e7653535751a012d (diff)
downloadchat-a5a2826700b1fc6b19ba38698cfa703f58476bc6.tar.gz
chat-a5a2826700b1fc6b19ba38698cfa703f58476bc6.tar.bz2
chat-a5a2826700b1fc6b19ba38698cfa703f58476bc6.zip
Added keyboard selection to search autocomplete
Diffstat (limited to 'web/sass-files')
-rw-r--r--web/sass-files/sass/partials/_search.scss10
1 files changed, 10 insertions, 0 deletions
diff --git a/web/sass-files/sass/partials/_search.scss b/web/sass-files/sass/partials/_search.scss
index d7287295b..ce3563885 100644
--- a/web/sass-files/sass/partials/_search.scss
+++ b/web/sass-files/sass/partials/_search.scss
@@ -124,11 +124,17 @@
}
.search-autocomplete__channel {
+ cursor: pointer;
height: 36px;
padding: 0px 6px;
+
+ &.selected {
+ background-color:rgba(51, 51, 51, 0.15);
+ }
}
.search-autocomplete__user {
+ cursor: pointer;
height: 36px;
padding: 0px;
@@ -138,4 +144,8 @@
width: 32px;
@include border-radius(16px);
}
+
+ &.selected {
+ background-color:rgba(51, 51, 51, 0.15);
+ }
}