Azure DevOps: Highlight Release Tags v1.0.0
Highlights work item tags ending with 'Release' in Azure DevOps for quick identification of release-related items.
What it does
This style rule makes release tags more visible by:
- Red background: Applying a red background to any work item tag ending with "Release"
This helps quickly identify which work items are associated with upcoming releases when viewing work item lists or boards.
Style Content
/* ==UserStyle==
@name Azure DevOps: Highlight Release Tags
@namespace https://www.timhilton.xyz/stylus-rules/
@version 1.0.0
@description Highlights work item tags ending with 'Release' in Azure DevOps for quick identification of release-related items
@author Tim Hilton
@homepageURL https://www.timhilton.xyz/stylus-rules/azure-devops/highlight-release-tags/
@updateURL https://www.timhilton.xyz/stylus-rules/azure-devops/highlight-release-tags/latest/highlight-release-tags.user.css
==/UserStyle==*/
@-moz-document regexp("https://dev.azure.com/.*/._workitems/edit/.*") {
.work-item-tag-picker div[aria-label$="Release"] {
background: red;
}
}