From 3b7c86c2e1cc103e500c37825344f645efd399c3 Mon Sep 17 00:00:00 2001 From: zcorpan Date: Thu, 21 Nov 2024 13:12:58 +0100 Subject: [PATCH] Move position before concerns and tweak text size, vertical-align Fixes #1122 Fixes #1121 --- index.html | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index 356e290..0ecefb4 100644 --- a/index.html +++ b/index.html @@ -96,6 +96,7 @@ th, td.venues, td.more-info { white-space: nowrap; } th.link { width: 6em; } th.specification { width: 32.5em; } + td.concerns, td.topics { font-size: 0.75em; padding-bottom: 0.85em; text-wrap: balance; } td.venues, td.more-info { word-spacing: 8px; padding-top: 0.1em; padding-bottom: 0.1em; font-size: 1.5em; } td.venues :any-link, td.more-info :any-link { padding: 0; } td.link :any-link { padding: 0.25rem; } @@ -116,7 +117,7 @@ dt { text-align: right; } dd { margin-left: 1em; padding-left: 1px; } - td { border-top: 1px solid var(--table-border-color); vertical-align: top; } + td { border-top: 1px solid var(--table-border-color); vertical-align: bottom; } tbody > tr:hover, tbody > tr:hover + tr.details, tbody > tr:has( + :where(tr.details:hover)) { background-color: var(--row-hover-bg-color); } @@ -167,8 +168,8 @@

Mozilla Sta Link Specification - Concerns Position + Concerns Topics Venues More info @@ -358,13 +359,13 @@

Legend

// Specification tr.append(cell(link(url, title), 'specification')); - // Concerns - tr.append(cell(concerns?.join(', '), 'concerns')); - // Position tr.append(cell(positionSpan(position), 'positions')); tr.dataset.position = position; + // Concerns + tr.append(cell(concerns?.join(', '), 'concerns')); + // Topics tr.append(cell(topics?.join(', '), 'topics')); tr.dataset.topics = topics?.join(' ');