add clickable comment targets
Cette révision appartient à :
Parent
260e5bab46
révision
fd976fc7e0
3 fichiers modifiés avec 17 ajouts et 4 suppressions
|
@ -187,3 +187,9 @@ div.container div.blockBody:nth-of-type(2) table tr:first-of-type th:last-of-typ
|
|||
.navbar {
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
|
||||
:target {
|
||||
background-color: #585b4f;
|
||||
}
|
||||
|
||||
|
|
|
@ -192,3 +192,7 @@ div.container div.blockBody:nth-of-type(2) table tr:first-of-type th:last-of-typ
|
|||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
:target {
|
||||
background-color: #e5eecc;
|
||||
}
|
||||
|
|
|
@ -47,9 +47,12 @@
|
|||
<td>Comments</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
{{ range .Comments }}
|
||||
<tr class="comment-row">
|
||||
<td>{{.Username}}</td>
|
||||
{{ range $index, $element := .Comments }}
|
||||
<tr class="comment-row" id="comment_{{$index}}">
|
||||
<td>
|
||||
<a href="#comment_{{$index}}">{{$index}}</a>
|
||||
{{.Username}}
|
||||
</td>
|
||||
<td>{{.Content}}</td>
|
||||
</tr>
|
||||
{{end}}
|
||||
|
|
Référencer dans un nouveau ticket