Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
More space in the header.
  • Loading branch information
Young Hahn committed Jun 2, 2011
1 parent c9db1f8 commit 8291832
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion assets/css/style.css
Expand Up @@ -51,7 +51,7 @@ a {
}

.header {
width:600px;
width:720px;
height:30px;
border:1px solid #888;
border-radius:5px;
Expand Down
3 changes: 1 addition & 2 deletions templates/Header._
Expand Up @@ -5,8 +5,7 @@
TileStream
</a>
<% obj.breadcrumb && _(obj.breadcrumb).each(function(item) { %>
<% if (item.icon) { %><span class='icon <%= item.icon %>'></span><% } %>
<a class='route' href='<%= item.href %>'><%= item.title %></a>
<a class='route' href='<%= item.href %>'><%= item.title.length > 20 ? item.title.substring(0, 17) + '...' : item.title %></a>
<% }); %>
</h1>
<div class='buttons clearfix'>
Expand Down

0 comments on commit 8291832

Please sign in to comment.