Bitrix24 Stage Selector

Better Tasks Stage Selector

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         Bitrix24 Stage Selector
// @namespace    https://crm.globaldrive.ru/
// @version      2024-02-22
// @description  Better Tasks Stage Selector
// @author       Dzorogh
// @match        https://crm.globaldrive.ru/*
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';

    const css = `
div#tasksStagesWrap {
  height: auto;
}

div#tasksStages {
  height: auto;
  flex-direction: column;
  position: inherit;
  background-color: transparent !important;
}

div#tasksStages .task-section-status-step {
  font-size: 12px;
  padding: 0.5em 1em;
  border: 0 !important;
  border-radius: 0 !important;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #000 !important;
}

div#tasksStages .task-section-status-step:hover {
  font-weight: bold;
}
    `;

    GM_addStyle(css);

    console.log('Bitirix24 Stage Selector: Done');

})();