mirror of https://github.com/apache/archiva.git
use an other icon when the browse entry is an artifact.
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1293685 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
32e04baacf
commit
3a9e6ca968
|
@ -79,6 +79,9 @@
|
|||
.browse-list{
|
||||
list-style-image: url("../images/folder.png")
|
||||
}
|
||||
.browse-list-project{
|
||||
list-style-image: url("../images/document-open.png")
|
||||
}
|
||||
|
||||
.force-upper-case{
|
||||
text-transform: uppercase;
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 672 B |
Binary file not shown.
After Width: | Height: | Size: 1.6 KiB |
|
@ -48,12 +48,12 @@
|
|||
{{/if}}
|
||||
{{each(i,browseResultEntry) browseResultEntries}}
|
||||
{{if browseResultEntry.project}}
|
||||
<li class="browse-list" data-bind="click:function(){displayProjectEntry(browseResultEntry.name)}">
|
||||
<li class="browse-list-project" title="artifact" data-bind="click:function(){displayProjectEntry(browseResultEntry.name)}">
|
||||
{{else}}
|
||||
<li class="browse-list" data-bind="click:function(){displayGroupId(browseResultEntry.name)}">
|
||||
{{/if}}
|
||||
<a href="#">
|
||||
${displayEntry(browseResultEntry.name)} (project: ${browseResultEntry.project})
|
||||
${displayEntry(browseResultEntry.name)}
|
||||
</a>
|
||||
</li>
|
||||
{{/each}}
|
||||
|
|
Loading…
Reference in New Issue