Summary
This issue documents the fix for removing duplicate bullets that appear in Azure DevOps review lists.
Problem
Native list-style bullets were not being properly disabled before custom ::before bullets were applied in Azure DevOps review lists, resulting in duplicate bullets being displayed.
Solution
Applied higher-specificity CSS overrides (2-1-0 specificity) to the three named lists (#review-suggestions, #review-security, #review-practices) to disable native list-style bullets and padding before the custom ::before pseudo-elements are applied. This ensures only the custom bullets are visible.
Changes Made
- Updated CSS in
components/integrated-review.css
- Added three higher-specificity rule selectors with
list-style: none !important and padding-left: 0 !important
Related PR
PR #219 - fix/remove duplicate bullets in Azure DevOps review lists
Summary
This issue documents the fix for removing duplicate bullets that appear in Azure DevOps review lists.
Problem
Native list-style bullets were not being properly disabled before custom ::before bullets were applied in Azure DevOps review lists, resulting in duplicate bullets being displayed.
Solution
Applied higher-specificity CSS overrides (2-1-0 specificity) to the three named lists (#review-suggestions, #review-security, #review-practices) to disable native list-style bullets and padding before the custom ::before pseudo-elements are applied. This ensures only the custom bullets are visible.
Changes Made
components/integrated-review.csslist-style: none !importantandpadding-left: 0 !importantRelated PR
PR #219 - fix/remove duplicate bullets in Azure DevOps review lists