From 2be31ca9f93a8f8bb5cff4b3c15a8f7f1f10cc37 Mon Sep 17 00:00:00 2001 From: wandji Date: Thu, 14 Mar 2024 14:39:44 +0100 Subject: [PATCH] Hide right border of last pinned column header in tables [SCI-10441] (#7282) --- app/assets/stylesheets/application.tailwind.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/assets/stylesheets/application.tailwind.css b/app/assets/stylesheets/application.tailwind.css index f73b3f2f0..33fd41aac 100644 --- a/app/assets/stylesheets/application.tailwind.css +++ b/app/assets/stylesheets/application.tailwind.css @@ -56,3 +56,8 @@ html { #relationships-section summary::-webkit-details-marker { display: none; } + +/* Hide right border of last pined column header. */ +.ag-pinned-left-header .ag-header-cell:last-child .ag-header-cell-resize:after { + opacity: 0; +}