Bitrix24 Stage Selector

Better Tasks Stage Selector

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==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');

})();