Skip to content

Commit

Permalink
Move position before concerns and tweak text size, vertical-align
Browse files Browse the repository at this point in the history
Fixes #1122
Fixes #1121
  • Loading branch information
zcorpan committed Nov 21, 2024
1 parent e3cc517 commit 3b7c86c
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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; }
Expand All @@ -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); }
Expand Down Expand Up @@ -167,8 +168,8 @@ <h1><img src="asset/Mozilla-2024.svg" alt="Mozilla" width="240" height="50"> Sta
<tr>
<th class="link">Link</th>
<th class="specification">Specification</th>
<th class="concerns">Concerns</th>
<th class="position">Position</th>
<th class="concerns">Concerns</th>
<th class="topics">Topics</th>
<th class="venues">Venues</th>
<th class="more-info">More info</th>
Expand Down Expand Up @@ -358,13 +359,13 @@ <h2>Legend</h2>
// 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(' ');
Expand Down

0 comments on commit 3b7c86c

Please sign in to comment.