Created
August 17, 2016 19:54
-
-
Save chrislwade/d78c458d902d2c35d2a72e4178faf89c to your computer and use it in GitHub Desktop.
Greasemonkey/Tampermonkey script to fix https://github.com/elastic/kibana/issues/7801
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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