Skip to content

Instantly share code, notes, and snippets.

@pjpscriv
Created December 17, 2025 17:05
Show Gist options
  • Select an option

  • Save pjpscriv/34e5af9abad586c6feb024d431128ca8 to your computer and use it in GitHub Desktop.

Select an option

Save pjpscriv/34e5af9abad586c6feb024d431128ca8 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Taiga Backlog Compact Styles
// @namespace https://pjpscriv.co.nz
// @version 2025-12-16
// @description Display the Tiaga backlog in a more compact way
// @author @pjpscriv
// @match https://tree.taiga.io/*
// @icon https://tree.taiga.io/v-1750662897664/images/favicon.png
// @grant none
// ==/UserScript==
(function() {
'use strict';
const style = document.createElement('style');
style.textContent = `
.backlog-table .backlog-table-body .row {
margin-top: 0;
margin-bottom: 0;
padding: 4px;
padding-block-end: 0;
}
.backlog-table .backlog-table-body .tag {
font-size: 11px;
padding: 1px 4px;
border-radius: 3px;
}
`;
document.head.appendChild(style);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment