Skip to content

Commit 5229991

Browse files
committed
Move position before concerns and tweak text size
Fixes #1122
1 parent e3cc517 commit 5229991

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

index.html

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@
9696
th, td.venues, td.more-info { white-space: nowrap; }
9797
th.link { width: 6em; }
9898
th.specification { width: 32.5em; }
99+
td.concerns, td.topics { font-size: 0.75em; padding-bottom: 0.85em; text-wrap: balance; }
99100
td.venues, td.more-info { word-spacing: 8px; padding-top: 0.1em; padding-bottom: 0.1em; font-size: 1.5em; }
100101
td.venues :any-link, td.more-info :any-link { padding: 0; }
101102
td.link :any-link { padding: 0.25rem; }
@@ -116,7 +117,7 @@
116117
dt { text-align: right; }
117118
dd { margin-left: 1em; padding-left: 1px; }
118119

119-
td { border-top: 1px solid var(--table-border-color); vertical-align: top; }
120+
td { border-top: 1px solid var(--table-border-color); vertical-align: bottom; }
120121
tbody > tr:hover,
121122
tbody > tr:hover + tr.details,
122123
tbody > tr:has( + :where(tr.details:hover)) { background-color: var(--row-hover-bg-color); }
@@ -167,8 +168,8 @@ <h1><img src="asset/Mozilla-2024.svg" alt="Mozilla" width="240" height="50"> Sta
167168
<tr>
168169
<th class="link">Link</th>
169170
<th class="specification">Specification</th>
170-
<th class="concerns">Concerns</th>
171171
<th class="position">Position</th>
172+
<th class="concerns">Concerns</th>
172173
<th class="topics">Topics</th>
173174
<th class="venues">Venues</th>
174175
<th class="more-info">More info</th>
@@ -358,13 +359,13 @@ <h2>Legend</h2>
358359
// Specification
359360
tr.append(cell(link(url, title), 'specification'));
360361

361-
// Concerns
362-
tr.append(cell(concerns?.join(', '), 'concerns'));
363-
364362
// Position
365363
tr.append(cell(positionSpan(position), 'positions'));
366364
tr.dataset.position = position;
367365

366+
// Concerns
367+
tr.append(cell(concerns?.join(', '), 'concerns'));
368+
368369
// Topics
369370
tr.append(cell(topics?.join(', '), 'topics'));
370371
tr.dataset.topics = topics?.join(' ');

0 commit comments

Comments
 (0)