Finding
File: src/raki/report/templates/report.html.j2:648
The .phase-status-superseded CSS rule adds a border: 1px solid which increases the rendered dot size to ~10×10 px compared to 8×8 px for other status dots. The base .phase-status class does not set box-sizing: border-box, so the border is additive rather than inset.
Suggestion
Add box-sizing: border-box; to the .phase-status-superseded rule (or to the base .phase-status rule) so the border does not inflate the dot dimensions.
References
Finding
File:
src/raki/report/templates/report.html.j2:648The
.phase-status-supersededCSS rule adds aborder: 1px solidwhich increases the rendered dot size to ~10×10 px compared to 8×8 px for other status dots. The base.phase-statusclass does not setbox-sizing: border-box, so the border is additive rather than inset.Suggestion
Add
box-sizing: border-box;to the.phase-status-supersededrule (or to the base.phase-statusrule) so the border does not inflate the dot dimensions.References