MicroWork Cloud Advanced

A simple theme for MicroWork Cloud

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         MicroWork Cloud Advanced
// @namespace    https://github.com/jorgebeserra
// @version      0.0.10
// @description  A simple theme for MicroWork Cloud
// @author       Jorge Souza
// @match        https://microworkcloud.com.br/cloud/*
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';

    GM_addStyle ( `
div.k-widget {
width: 95% !important;
height: 95% !important;
}
.k-grid-header-wrap > table,
.k-grid-content > table {
    border-right: 1px solid #ccc;
}
div.k-content:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > kendo-grid:nth-child(1) {
height: 750px !important;
}
div.ng-pristine > div:nth-child(6) > div:nth-child(1) > kendo-grid:nth-child(1) {
height: 450px !important;
}
kendo-grid.k-widget {
height: 550px !important;
}
` );
})();