Skip to content

Instantly share code, notes, and snippets.

@r-k-b
Last active September 30, 2024 23:16
Show Gist options
  • Save r-k-b/4475e7f0c6d3f27bebae2e3a47afab38 to your computer and use it in GitHub Desktop.
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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment