提交 12523a5c 编写于 作者: D Daniel Beck

Merge branch 'linkable-filter-field' of github.com:daniel-beck/jenkins into linkable-filter-field

......@@ -15,14 +15,28 @@ time {
margin-top: 0.25em;
}
.plugin-manager__category-label {
.plugin-manager__category-label:link,
.plugin-manager__category-label:visited {
display: inline-block;
border: 1px solid #ccc;
background-color: #eee;
background-color: #fbfbfb;
color: #333;
border-radius: 4px;
font-size: 0.75rem;
font-weight: 500;
padding: 0 0.5rem;
margin: 0 0.25rem 0.25rem 0;
text-decoration: none;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
transition: all 0.15s ease-in-out;
}
.plugin-manager__category-label:hover,
.plugin-manager__category-label:focus,
.plugin-manager__category-label:active {
background-color: #f2f2f2;
border-color: #333;
}
.plugin-manager__search-input {
......
......@@ -104,11 +104,10 @@ THE SOFTWARE.
<div class="plugin-manager__categories">
<j:forEach var="label" items="${p.categories}">
<j:if test="${!it.isMetaLabel(label)}">
<span class="plugin-manager__category-label">
<a href="?filter=${app.updateCenter.getCategoryDisplayName(label)}">
${app.updateCenter.getCategoryDisplayName(label)}
</a>
</span>
<a href="?filter=${app.updateCenter.getCategoryDisplayName(label)}"
class="plugin-manager__category-label">
${app.updateCenter.getCategoryDisplayName(label)}
</a>
</j:if>
</j:forEach>
</div>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册