Azure DevOps: Highlight Key Information latest version (currently v1.0.0)

← Back to Stylus Rules

Style Content

/* ==UserStyle==
@name           Azure DevOps: Highlight Key Information
@namespace      https://www.timhilton.xyz/stylus-rules/
@version        1.0.0
@description    Highlights important information in Azure DevOps pull requests to reduce the likelihood of errors
@author         Tim Hilton
@homepageURL    https://www.timhilton.xyz/stylus-rules/azure-devops/highlight-key-information/
@updateURL      https://www.timhilton.xyz/stylus-rules/azure-devops/highlight-key-information/latest/highlight-key-information.user.css
==/UserStyle==*/

@-moz-document regexp("https://dev.azure.com/.*/pullrequest/.*") {
/* Highlight the PR's target branch */
div.pr-header-branches > .bolt-link:first-of-type {
    border: red 2px solid;
    padding: 5px;
}

/* Highlight changes to file encoding */
.repos-summary-header > div.flex-row .body-s > .text-ellipsis {
    border: 2px solid red;
    padding: 2px;
}
}