From e6e3a7c16e6faf273211367844419cb76ce5af49 Mon Sep 17 00:00:00 2001 From: Robert Haken Date: Wed, 26 Jun 2024 14:51:10 +0200 Subject: [PATCH] HxGrid - InfiniteScrollTests - subpixel rendering fix/workaround --- BlazorAppTest/Pages/HxGrid_InfiniteScroll_Test.razor.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/BlazorAppTest/Pages/HxGrid_InfiniteScroll_Test.razor.css b/BlazorAppTest/Pages/HxGrid_InfiniteScroll_Test.razor.css index 509faa41..80ff942f 100644 --- a/BlazorAppTest/Pages/HxGrid_InfiniteScroll_Test.razor.css +++ b/BlazorAppTest/Pages/HxGrid_InfiniteScroll_Test.razor.css @@ -6,6 +6,12 @@ table-layout: fixed; } +::deep .table-pivot table { + /* Fixes subpixel rendering for pivot column header (missing border at certain scales) */ + border-collapse: separate; + border-spacing: 0; +} + ::deep .table-pivot > table > :not(caption) > * > *:first-child { position: sticky; left: 0;