Last active
September 30, 2024 23:16
-
-
Save r-k-b/4475e7f0c6d3f27bebae2e3a47afab38 to your computer and use it in GitHub Desktop.
userstyle for making Azure Devops less unbearable
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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