mirror of
https://github.com/golang/go
synced 2024-11-25 03:17:58 -07:00
dashboard: Don't highlight first heading row.
The two heading rows were previously a little hard to pick out, because they were alternately shaded like the commit rows. R=adg CC=golang-dev https://golang.org/cl/5500074
This commit is contained in:
parent
416afcb411
commit
0f14ebf993
@ -26,7 +26,7 @@
|
|||||||
padding: 2px 4px;
|
padding: 2px 4px;
|
||||||
font-size: 10pt;
|
font-size: 10pt;
|
||||||
}
|
}
|
||||||
.build tr:nth-child(2n) {
|
.build tr.commit:nth-child(2n) {
|
||||||
background-color: #f0f0f0;
|
background-color: #f0f0f0;
|
||||||
}
|
}
|
||||||
.build .hash {
|
.build .hash {
|
||||||
@ -102,7 +102,7 @@
|
|||||||
{{end}}
|
{{end}}
|
||||||
</tr>
|
</tr>
|
||||||
{{range $c := $.Commits}}
|
{{range $c := $.Commits}}
|
||||||
<tr>
|
<tr class="commit">
|
||||||
<td class="hash"><a href="{{repoURL .Hash ""}}">{{shortHash .Hash}}</a></td>
|
<td class="hash"><a href="{{repoURL .Hash ""}}">{{shortHash .Hash}}</a></td>
|
||||||
{{range $.Builders}}
|
{{range $.Builders}}
|
||||||
<td class="result">
|
<td class="result">
|
||||||
|
Loading…
Reference in New Issue
Block a user