Added search counts to the searchTOC - see listserv email for request

This commit is contained in:
Stephen V. Williams 2013-05-31 14:38:52 -06:00
parent 8880d87484
commit fb70b50108
2 changed files with 10 additions and 3 deletions

View file

@ -133,10 +133,17 @@
border-bottom: none border-bottom: none
} }
.searchTOC ul a { .searchTOC ul a {
display: block; display: inline;
padding-left: 25px; padding-left: 25px;
} }
.searchTOC ul span {
float:right;
padding-right: 10px;
color:grey;
font-size:smaller;
}
/* -------------------------------------------------> */ /* -------------------------------------------------> */
/* DROP DOWN USER MENU ----------------------------> */ /* DROP DOWN USER MENU ----------------------------> */
/* -------------------------------------------------> */ /* -------------------------------------------------> */

View file

@ -38,7 +38,7 @@
<h4>Display only</h4> <h4>Display only</h4>
<ul> <ul>
<#list classGroupLinks as link> <#list classGroupLinks as link>
<li><a href="${link.url}" title="class group link">${link.text}</a></li> <li><a href="${link.url}" title="class group link">${link.text}</a><span>(${link.count})</span></li>
</#list> </#list>
</ul> </ul>
</div> </div>
@ -53,7 +53,7 @@
</#if> </#if>
<ul> <ul>
<#list classLinks as link> <#list classLinks as link>
<li><a href="${link.url}" title="class link">${link.text}</a></li> <li><a href="${link.url}" title="class link">${link.text}</a><span>(${link.count})</span></li>
</#list> </#list>
</ul> </ul>
</div> </div>