Skip to content

Commit a70f7bf

Browse files
committed
Fix sample HTML: summary High counts, column width CSS alignment
- Fix summary label mismatches: Service.dll (1 High) → (7 High), remove false "(1 High)" from blocks with 0 High changes - Sync sample CSS with source: replace old sc-cnt-count-g (4em) with individual sc-cnt-high/medium/low/total-g columns (5em each) - Fix JS count table width calculation: 4*scEmPx → 4*5*scEmPx https://claude.ai/code/session_01HnKMFA576NFwa2RzB8vCqE
1 parent 62a4fc2 commit a70f7bf

2 files changed

Lines changed: 11 additions & 8 deletions

File tree

Services/HtmlReport/diff_report.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@
284284
+ px('--sc-rettype-w', 12) + px('--sc-params-w', 18)
285285
+ px('--sc-body-w', 5);
286286
document.querySelectorAll('table.sc-detail').forEach(function(t) { t.style.width = detW + 'px'; });
287-
var cntW = px('--sc-cnt-class-w', 22) + 7 * scEmPx + 4 * scEmPx;
287+
var cntW = px('--sc-cnt-class-w', 22) + 7 * scEmPx + 4 * 5 * scEmPx;
288288
document.querySelectorAll('table.sc-count').forEach(function(t) { t.style.width = cntW + 'px'; });
289289
}
290290

0 commit comments

Comments
 (0)