Skip to content

Commit 37f8695

Browse files
committed
added anchors for working group rows. Still needs some work since the anchor ends up being under the menu bar. Partially addresses issue ietf-tools#1481. Commit ready for merge.
- Legacy-Id: 15357
1 parent 3c478e5 commit 37f8695

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

ietf/static/ietf/css/ietf.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ h4.anchor-target:before,
106106
.h3.anchor-target:before,
107107
.h4.anchor-target:before,
108108
tr th.anchor-target:before,
109+
tr td.anchor-target:before,
109110
div.anchor-target:before {
110111
content: '';
111112
display: block;

ietf/templates/group/active_wgs.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,10 @@ <h3>{{ area.acronym }} active WG{{ area.groups|pluralize}}</h3>
6060
<tbody>
6161
{% for group in area.groups %}
6262
<tr>
63-
<td><a href="{% url "ietf.group.views.group_home" group_type=group.type_id acronym=group.acronym %}">{{ group.acronym }}</a></td>
63+
<!--
64+
<td><a href="{% url "ietf.group.views.group_home" group_type=group.type_id acronym=group.acronym %}">{{ group.acronym }}</a></td>
65+
-->
66+
<td class="anchor-target" id="{{group.acronym}}"><a href="{% url "ietf.group.views.group_home" group_type=group.type_id acronym=group.acronym %}">{{ group.acronym }}</a></td>
6467
<td>
6568
{% if group.ad_role %}
6669
<a href="mailto:{{ group.ad_role.email.address }}"><span class="fa fa-envelope-o tiny"></span></a>

0 commit comments

Comments
 (0)