From 113375b37fd88fc21cc753f4df7b6a083a8e2205 Mon Sep 17 00:00:00 2001 From: David Date: Wed, 12 Dec 2012 19:30:46 -0700 Subject: [PATCH] add hover styles to resource lists remove alert --- css/custom.css | 5 +++++ js/application.js | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/css/custom.css b/css/custom.css index 3c501cb..b0a232c 100644 --- a/css/custom.css +++ b/css/custom.css @@ -138,4 +138,9 @@ footer .form-search{ #doc-save { margin-left: 25px; +} + +#resourceList .apt-row:hover { + background-color: #C8E5FF; + cursor: pointer; } \ No newline at end of file diff --git a/js/application.js b/js/application.js index bb2fe75..baad3b5 100644 --- a/js/application.js +++ b/js/application.js @@ -47,7 +47,7 @@ $(function(){ $('body').on('click', '.input-append button', function() { var query = $(this).siblings('input').val() - alert(query); +// alert(query); loadDocSearch(query); });