Skip to content

Commit

Permalink
More minor style enhancements
Browse files Browse the repository at this point in the history
  • Loading branch information
rdsubhas committed Nov 18, 2014
1 parent b4b2e25 commit 31b853e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions public/stylesheets/application.scss
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ a, a:link, a:visited, a:active {
z-index: 100;
overflow: hidden;
text-align: center;
border-left: 1px dashed rgba($dark2, .33);

.icon {
margin-right: 0;
}
Expand Down
6 changes: 3 additions & 3 deletions views/_sidebar.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<div class="tag">
<% var active = _u.contains(tags, tag.slug); %>
<a class="toggle" href="<%= extraUrlFor(tag.slug, tags) %>">
<i class="fa fa-fw <%= active ? 'fa-minus' : 'fa-plus' %>"></i>
<i class="fa fa-fw <%= active ? 'fa-check-circle' : 'fa-circle-o' %>"></i>
</a>
<a class="<%= active ? 'active' : '' %>" href="<%= onlyUrlFor(tag.slug, platforms, tags) %>">
<i class="<%= tag.icon %>"></i>
Expand All @@ -28,7 +28,7 @@
<div class="tag">
<% var active = _u.contains(tags, tag.slug); %>
<a class="toggle" href="<%= extraUrlFor(tag.slug, tags) %>">
<i class="fa fa-fw <%= active ? 'fa-minus' : 'fa-plus' %>"></i>
<i class="fa fa-fw <%= active ? 'fa-check-circle' : 'fa-circle-o' %>"></i>
</a>
<a class="<%= active ? 'active' : '' %>" href="<%= onlyUrlFor(tag.slug, licenses, tags) %>">
<i class="<%= tag.icon %>"></i>
Expand All @@ -45,7 +45,7 @@
<div class="tag">
<% var active = _u.contains(tags, tag.slug); %>
<a class="toggle" href="<%= extraUrlFor(tag.slug, tags) %>">
<i class="fa fa-fw <%= active ? 'fa-minus' : 'fa-plus' %>"></i>
<i class="fa fa-fw <%= active ? 'fa-check-circle' : 'fa-circle-o' %>"></i>
</a>
<a class="<%= active ? 'active' : '' %>" href="<%= onlyUrlFor(tag.slug, categories, tags) %>">
<%= tag.name %>
Expand Down
2 changes: 1 addition & 1 deletion views/home.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<div class="content-article">
<h2>Discover tools and frameworks in the DevOps landscape.</h2>
<h3>There are new awesome tools and frameworks being released everyday. This is an open and transparent attempt at aggregating all these tools and frameworks. The entire source code and list of tools can be found at <a href="http://github.com/devopsbookmarks">github.com/devopsbookmarks</a>.</h3>
<h3>Select some tags to start exploring!</h3>
<h3>Pick tags to start exploring!</h3>
</div>
</div>

Expand Down

0 comments on commit 31b853e

Please sign in to comment.