1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Nudge Google custom search image to the right

This commit is contained in:
Juho Viitasalo 2014-01-07 13:07:20 +02:00 committed by Michael DeHaan
parent 919eb1fb98
commit 4d17efa6f8

View file

@ -44,6 +44,12 @@
$('#search-reset').hide();
$('#search-box-id').css('background-position', '1em center');
$('#search-box-id').on('blur', function() {
$('#search-box-id').css('background-position', '1em center');
});
$('#search-start').click(function(e) { executeQuery(); });
$('#search-reset').click(function(e) { $('#search-box-id').val(''); executeQuery(); });