Skip to content

Instantly share code, notes, and snippets.

@marcelovani
Last active February 15, 2016 10:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcelovani/02d7a18a41f2f9f81bb5 to your computer and use it in GitHub Desktop.
Save marcelovani/02d7a18a41f2f9f81bb5 to your computer and use it in GitHub Desktop.

// ==UserScript== // @name Drupal.org // @namespace work // @description Tweaks for UI // @include drupal.org. // @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js // @version 1 // ==/UserScript== $(document).ready(function() { tweak(); setInterval(tweak, 15000); }); function tweak() { $(“#search-block-form”).css(‘height’, “20px”); }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment