diff --git a/src/main/webapp/css/style.css b/src/main/webapp/css/style.css index b6c89470bbb3bbbea6cdc3384dd01cee065211d5..d31cf4fad48f4067fe5121dafc6877fce0bd1a39 100644 --- a/src/main/webapp/css/style.css +++ b/src/main/webapp/css/style.css @@ -250,6 +250,10 @@ ul.searchOptionLabels li { border-radius: 0px; } +img.thumbnail { + width: 100px; +} + .thumbnail { background-position: 50% 50%; background-repeat: no-repeat; diff --git a/src/main/webapp/js/search.js b/src/main/webapp/js/search.js index b399ef95e67020150a179d197e57cbd03cc62e4b..90ab8652d6677164a2eb9a88bb798e9a0b7701f4 100644 --- a/src/main/webapp/js/search.js +++ b/src/main/webapp/js/search.js @@ -216,7 +216,8 @@ $(function() { loadImage(img, url, --limit); }, IMG_LOADING_DELAY); } else { - $(img).attr('src', contextPath + "/images/noimage.png"); + // $(img).attr('src', contextPath + "/images/noimage.png"); + $(img).parent().css('display', 'none'); } imgData = null; });