Azure DevOps: Improve PR Creation Screen v1.0.0

← Back to Stylus Rules

Removes maximum width constraint on PR creation form in Azure DevOps for better use of available screen space.

What it does

This style rule improves the PR creation experience by:

  • Full width: Removing the maximum width constraint on the PR creation form

This allows you to see more of your PR description and changes side-by-side when creating pull requests on wide monitors.

Style Content

/* ==UserStyle==
@name           Azure DevOps: Improve PR Creation Screen
@namespace      https://www.timhilton.xyz/stylus-rules/
@version        1.0.0
@description    Removes maximum width constraint on PR creation form in Azure DevOps for better use of available screen space
@author         Tim Hilton
@homepageURL    https://www.timhilton.xyz/stylus-rules/azure-devops/improve-pr-creation-screen/
@updateURL      https://www.timhilton.xyz/stylus-rules/azure-devops/improve-pr-creation-screen/latest/improve-pr-creation-screen.user.css
==/UserStyle==*/

@-moz-document regexp("https://dev.azure.com/.*/_git/.*/pullrequestcreate") {
.repos-pr-create-form {
    max-width: none !important;
}
}