NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name GitLab small enhanced
// @namespace https://github.com/Radomiej/tampermonkey-scripts
// @version 0.1.2
// @description Full brench names in pipeline view
// @author radomiej
// @copyright 2020, radomiej
// @license MIT
// @homepageURL https://github.com/Radomiej/tampermonkey-scripts
// @match http://gitlab.itti.com.pl/*/*/pipelines
// @require http://code.jquery.com/jquery-3.4.1.min.js
// @icon https://cdn4.iconfinder.com/data/icons/gnome-desktop-icons-png/PNG/32/Gnome-X-Office-Drawing-32.png
// @grant GM_addStyle
// @run-at document-idle
// ==/UserScript==
(function () {
'use strict';
GM_addStyle(`
.ci-table .branch-commit .ref-name {
max-width: 200px;
}`);
window.addEventListener('load', function () {
$('.table-section.section-wrap.section-20').each(function () {
$(this).removeClass("section-20").addClass("section-30");
console.log("mutuje");
});
}, false);
})();