aboutsummaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
Diffstat (limited to 'assets')
-rw-r--r--assets/css/search.css4
-rw-r--r--assets/js/search.js2
2 files changed, 5 insertions, 1 deletions
diff --git a/assets/css/search.css b/assets/css/search.css
index e76a7d1..124a378 100644
--- a/assets/css/search.css
+++ b/assets/css/search.css
@@ -2,6 +2,10 @@
2 min-height: 64px !important; 2 min-height: 64px !important;
3} 3}
4 4
5.collection-item.avatar > .circle {
6 top: 12px;
7}
8
5.search-results { 9.search-results {
6 top: -50px; 10 top: -50px;
7 z-index: 2; 11 z-index: 2;
diff --git a/assets/js/search.js b/assets/js/search.js
index 5f81eb1..a376166 100644
--- a/assets/js/search.js
+++ b/assets/js/search.js
@@ -21,7 +21,7 @@ function doSearch() {
21 document.getElementById("search-results").innerHTML = ''; 21 document.getElementById("search-results").innerHTML = '';
22 return 22 return
23 } 23 }
24 document.getElementById("search-results").innerHTML = xhr.response.replace(new RegExp(value, 'g'), "<b>" + value + "</b>"); 24 document.getElementById("search-results").innerHTML = xhr.response.replace(new RegExp(value, 'gi'), "<b>" + value + "</b>");
25 } 25 }
26 } 26 }
27 xhr.open('GET', '/search/gril_instant/' + value, true); 27 xhr.open('GET', '/search/gril_instant/' + value, true);