From: Anthony Talarico Date: Fri, 19 Feb 2016 18:41:29 +0000 (-0500) Subject: dded search icon to top search X-Git-Tag: v1.0.0^2~158 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=5b167aebb8115bfd63ad0417eb3c640d86ed657a;p=WP-Themes%2FDiscoverKZOO.git dded search icon to top search --- diff --git a/css/app.css b/css/app.css index 53be0c1..5e43e47 100644 --- a/css/app.css +++ b/css/app.css @@ -6757,8 +6757,11 @@ header { float: right; height: 25px; } #lar-search { + background: url('../assets/search-icon.jpg') right 5px center no-repeat; height: 25px; - padding: 0; } } + padding: 1px; } + #lar-search:hover { + cursor: pointer; } } .blog-wrap { background: url(../assets/repeating-pattern.jpg) repeat; diff --git a/scss/_topbar.scss b/scss/_topbar.scss index 72c0fff..66eceb2 100644 --- a/scss/_topbar.scss +++ b/scss/_topbar.scss @@ -598,7 +598,11 @@ height: 25px; } #lar-search{ + background: url('../assets/search-icon.jpg') right 5px center no-repeat; height: 25px; - padding: 0; + padding: 1px; + &:hover{ + cursor: pointer; + } } }