Skip to content

Commit

Permalink
Merge pull request #1085 from haarg/browse-table-bootstrap
Browse files Browse the repository at this point in the history
use bootstrap styles for browse table
  • Loading branch information
oalders committed Feb 6, 2014
2 parents ff785bd + 807ad8c commit 8802745
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions root/browse.html
Expand Up @@ -22,7 +22,7 @@
</ul>

<div class="content">
<table class="file-table tablesorter">
<table class="table table-condensed table-striped file-table tablesorter">
<thead>
<tr>
<th class="name">Name</th>
Expand All @@ -33,7 +33,7 @@
</thead>
<tbody>
<% i = 0; FOREACH file IN files %>
<tr<% i = i + 1; IF i % 2 %> class="odd"<% END %>>
<tr>
<td class="name"><strong sort="<% file.directory == 'true' ? "!" _ file.name : file.name %>"><a href="/source/<% [author, release, file.path].join("/") %>" class="<%
file.directory == 'true' ? 'silk-folder'
: file.mime.match("perl") ? 'silk-page-white-code'
Expand Down

0 comments on commit 8802745

Please sign in to comment.