Greasy Fork is available in English.

Kibana Dark Log Theme

try to take over the world!

// ==UserScript==
// @name         Kibana Dark Log Theme
// @namespace    http://tampermonkey.net/
// @version      1.4
// @description  try to take over the world!
// @author       Carlos Izquierdo
// @match        *://*/app/kibana*
// @grant        GM_addStyle
// @require      http://code.jquery.com/jquery-latest.js
// ==/UserScript==

(function() {
    'use strict';

    GM_addStyle('.kbn-table {background-color: #000;}');
    GM_addStyle('.kbn-table th{color: #aaa;border-top: 0 !important;padding: 2px 8px !important;white-space: nowrap !important;}');
    GM_addStyle('.kbnDocTable__row td {color: #aaa;border-top: 0 !important;padding: 2px 8px !important;white-space: nowrap !important;}');
    GM_addStyle('.kbnDocTable__row td {color: #aaa;border-top: 0 !important;padding: 2px 8px !important;white-space: nowrap !important;}');
    GM_addStyle('.kbnDocTable__row td {font-size: 13px !important;}');
})();