|
96 | 96 | th, td.venues, td.more-info { white-space: nowrap; }
|
97 | 97 | th.link { width: 6em; }
|
98 | 98 | th.specification { width: 32.5em; }
|
| 99 | + td.concerns, td.topics { font-size: 0.75em; padding-bottom: 0.85em; text-wrap: balance; } |
99 | 100 | td.venues, td.more-info { word-spacing: 8px; padding-top: 0.1em; padding-bottom: 0.1em; font-size: 1.5em; }
|
100 | 101 | td.venues :any-link, td.more-info :any-link { padding: 0; }
|
101 | 102 | td.link :any-link { padding: 0.25rem; }
|
|
116 | 117 | dt { text-align: right; }
|
117 | 118 | dd { margin-left: 1em; padding-left: 1px; }
|
118 | 119 |
|
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; } |
120 | 121 | tbody > tr:hover,
|
121 | 122 | tbody > tr:hover + tr.details,
|
122 | 123 | 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
|
167 | 168 | <tr>
|
168 | 169 | <th class="link">Link</th>
|
169 | 170 | <th class="specification">Specification</th>
|
170 |
| - <th class="concerns">Concerns</th> |
171 | 171 | <th class="position">Position</th>
|
| 172 | + <th class="concerns">Concerns</th> |
172 | 173 | <th class="topics">Topics</th>
|
173 | 174 | <th class="venues">Venues</th>
|
174 | 175 | <th class="more-info">More info</th>
|
@@ -358,13 +359,13 @@ <h2>Legend</h2>
|
358 | 359 | // Specification
|
359 | 360 | tr.append(cell(link(url, title), 'specification'));
|
360 | 361 |
|
361 |
| - // Concerns |
362 |
| - tr.append(cell(concerns?.join(', '), 'concerns')); |
363 |
| - |
364 | 362 | // Position
|
365 | 363 | tr.append(cell(positionSpan(position), 'positions'));
|
366 | 364 | tr.dataset.position = position;
|
367 | 365 |
|
| 366 | + // Concerns |
| 367 | + tr.append(cell(concerns?.join(', '), 'concerns')); |
| 368 | + |
368 | 369 | // Topics
|
369 | 370 | tr.append(cell(topics?.join(', '), 'topics'));
|
370 | 371 | tr.dataset.topics = topics?.join(' ');
|
|
0 commit comments