MicroWork Cloud Advanced

A simple theme for MicroWork Cloud

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

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.

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

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

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==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;
}
` );
})();