Skip to content
Snippets Groups Projects

dashboard: Add self-links on each report

Merged Emanuele Aina requested to merge wip/em/self-links into master
1 file
+ 10
0
Compare changes
  • Side-by-side
  • Inline
@@ -13,6 +13,15 @@
.nonzero {
font-weight: bold;
}
.list-group-item .self-link {
transition: visibility 1s, opacity 1s;
visibility: hidden;
opacity: 0;
}
.list-group-item:hover .self-link {
visibility: initial;
opacity: 1;
}
</style>
</head>
<body>
@@ -66,6 +75,7 @@
{{ package.name }}
{% endif -%}
</strong>
<a class="self-link" href="#pkg-{{package.name}}"></a>
</h5>
</div>
Loading