From a2edbef042f989598aca9bec3c89ae5e3e706d81 Mon Sep 17 00:00:00 2001 From: "Michael J. Giarlo" Date: Thu, 15 Aug 2024 12:02:47 -0700 Subject: [PATCH] Fix display of version identifiers The prior commit removed a surrounding `` element around each version row component which caused a CSS rule preventing display of multiple `` elements in the same table. We want this CSS behavior to prevent repetitive metadata label display. The fix here is to fine-tune the CSS rule such that it ignores the version identifier table header element. --- app/assets/stylesheets/application.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index cd0d1aed..a5d968ca 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -58,7 +58,7 @@ } tbody { - tr:not(:first-of-type) th { + tr:not(:first-of-type) th:not(.version-identifier) { /* Visibility hidden doesn't work here because it also hides the border */ font-size: 0; }