From 0168083804544d4c482e5b21f43bb4c153ace46b Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Thu, 9 Jul 2015 13:13:14 +0000 Subject: [PATCH] Added session anchors and a necessary style class to group names in the meeting materials page, to permit linking to specific WG names. Fixes issue #1743. - Legacy-Id: 9708 --- ietf/templates/meeting/group_materials.html | 4 ++-- static/css/ietf.css | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ietf/templates/meeting/group_materials.html b/ietf/templates/meeting/group_materials.html index af8299d45..9f84c9e02 100644 --- a/ietf/templates/meeting/group_materials.html +++ b/ietf/templates/meeting/group_materials.html @@ -8,9 +8,9 @@ {% endcomment %} {% if session.name %} - {{ session.name }} +
{{ session.name }}
{% else %} - {{session.group.acronym}} +
{{session.group.acronym}}
{% if session.group.state.slug == "bof" %} {{ session.group.state.slug|upper }} {% endif %} diff --git a/static/css/ietf.css b/static/css/ietf.css index 65874824f..93a0ce149 100644 --- a/static/css/ietf.css +++ b/static/css/ietf.css @@ -100,7 +100,8 @@ body { padding-top: 70px; } to work around the position fixed navbar which otherwise covers them */ h2.anchor-target:before, h3.anchor-target:before, -h4.anchor-target:before { +h4.anchor-target:before, +div.anchor-target:before { content: ''; display: block; position: relative;