Skip to content

Instantly share code, notes, and snippets.

@r-k-b
Last active March 12, 2026 23:19
Show Gist options
  • Select an option

  • Save r-k-b/4475e7f0c6d3f27bebae2e3a47afab38 to your computer and use it in GitHub Desktop.

Select an option

Save r-k-b/4475e7f0c6d3f27bebae2e3a47afab38 to your computer and use it in GitHub Desktop.
userstyle for making Azure Devops less unbearable
/* from https://gist.github.com/r-k-b/4475e7f0c6d3f27bebae2e3a47afab38 */
/* make checkboxes easier to see */
input[type="checkbox"]:disabled {
filter: invert(100%) hue-rotate(18deg) brightness(5);
}
/* make attachment links discoverable by Vimium */
.work-item-attachments-grid .bolt-table-row .attachment-more-button {
visibility: visible
}
/* make it less arduous to use the buttons above and below long comment boxes */
textarea {
max-height: calc(90vh - 300px) !important;
overflow-y: scroll !important;
font-family: monospace;
}
/* see more than a couple lines of ticket descriptions at a time */
.work-item-form-control-wrapper .markdown-preview {
max-height: 40vh;
}
/* less wasted vertical space */
.displayed-comment pre {
line-height: 1.1em;
}
.markdown-content code {
font-family: 'Atkinson Hyperlegible Mono'
}
body, input, button, textarea, select {
font-family: 'Atkinson Hyperlegible Next';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment