Skip to content

Instantly share code, notes, and snippets.

@chrislwade
Created August 17, 2016 19:54
Show Gist options
  • Save chrislwade/d78c458d902d2c35d2a72e4178faf89c to your computer and use it in GitHub Desktop.
Save chrislwade/d78c458d902d2c35d2a72e4178faf89c to your computer and use it in GitHub Desktop.
Greasemonkey/Tampermonkey script to fix https://github.com/elastic/kibana/issues/7801
// ==UserScript==
// @name Fix Kibana Search Box
// @namespace http://tampermonkey.net/
// @version 0.1
// @description See https://github.com/elastic/kibana/issues/7801 for what this fixes.
// @author http://github.com/chrislwade
// @match http://*/app/kibana
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
GM_addStyle(".typeahead .typeahead-items { top: 32px; }");
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment