Skip to content

Correct wrong order icons #1276

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 12, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions root/author.html
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,7 @@
<div class="content">
<div id="feed_subscription" class="page-header">
<p>Activity for <% author.name %> (<% author.pauseid %>)</p>
<i class="fa fa-rss fa-2x">
<a href="/feed/author/<% author.pauseid %>"></a>
</i>
<a href="/feed/author/<% author.pauseid %>"><i class="fa fa-rss fa-2x black"></i></a>
</div>
<div class="visible-xs inline-author-pic"><% INCLUDE inc/author-pic.html author = author %></div>
<% IF releases.0 %>
Expand Down
8 changes: 4 additions & 4 deletions root/inc/release-tools.html
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
<li class="nav-header">Tools</li>
<li>
<a href="<% release.download_url.replace('cpan\.cpantesters\.org', 'cpan.metacpan.org') %>">
<span class="glyphicon glyphicon-download-alt black"></span>Download (<% release.stat.size | format_bytes %>b)
<i class="fa fa-download fa-fw black"></i>Download (<% release.stat.size | format_bytes %>b)
</a>
</li>
<%- IF module %>
<li>
<a href="#" onclick="return toggleTOC()"><span class="glyphicon glyphicon-list black"></span>Toggle Table of Contents</a>
<a href="#" onclick="return toggleTOC()"><i class="fa fa-list fa-fw black"></i>Toggle Table of Contents</a>
</li>
<%- END %>
<li>
<a href="http://explorer.metacpan.org/?url=/<% module ? ['module', module.author, module.release, module.path].join("/") : ['release', release.author, release.name].join("/") %>">
<span class="glyphicon glyphicon-list-alt black"></span>MetaCPAN Explorer
<i class="fa fa-list-alt fa-fw black"></i>MetaCPAN Explorer
</a>
</li>
<li>
<a href="<% 'http://cpanratings.perl.org/rate/?distribution=' _ release.distribution %>">
<span class="glyphicon glyphicon-star black"></span>Rate this distribution
<i class="fa fa-star fa-fw black"></i>Rate this distribution
</a>
</li>
<li>
Expand Down
4 changes: 1 addition & 3 deletions root/recent.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@
<div class="content">
<div id="feed_subscription" class="page-header">
<p>Recent Uploads</p>
<i class="fa fa-rss fa-2x">
<a href="/feed/recent"></a>
</i>
<a href="/feed/recent"><i class="fa fa-rss fa-2x black"></i></a>
</div>
<%-
MoY = [undef, 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];
Expand Down
1 change: 1 addition & 0 deletions root/static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ ul {
.comment {
color: #999;
font-size: 0.8em;
padding-right: 15px;
}

.select-text {
Expand Down
6 changes: 6 additions & 0 deletions root/static/less/nav-list.less
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@ ul.nav-list.box-right {
margin-right: 5px;
}

.slidepanel {
.fa {
margin-right: 2px;
}
}

.nav-list .divider {
width: 100%;
height: 1px;
Expand Down