Azure DevOps: Estimation Links v1.0.0

← Back to Stylus Rules

Improves link visibility in the Azure DevOps estimation extension with better contrast colours.

What it does

This style rule enhances the estimation extension by:

  • Better contrast: Using a medium blue colour for links that meets AA accessibility standards
  • Visited links: Applying a distinct purple colour to visited links for easy tracking

This makes it easier to read and navigate links within the Azure DevOps estimation tool.

Style Content

/* ==UserStyle==
@name           Azure DevOps: Estimation Links
@namespace      https://www.timhilton.xyz/stylus-rules/
@version        1.0.0
@description    Improves link visibility in the Azure DevOps estimation extension with better contrast colors
@author         Tim Hilton
@homepageURL    https://www.timhilton.xyz/stylus-rules/azure-devops/estimation-links/
@updateURL      https://www.timhilton.xyz/stylus-rules/azure-devops/estimation-links/latest/estimation-links.user.css
==/UserStyle==*/

@-moz-document url-prefix("https://ms-devlabs.gallerycdn.vsassets.io/extensions/ms-devlabs/estimate/") {
a {
    /* Improved color for better contrast and readability */
    color: rgb(130 130 255);
}

a:visited {
    color: rgb(209 159 255);
}
}