Skip to content

Commit

Permalink
Fixed a bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
michael committed May 7, 2012
1 parent c7f5552 commit b8ba583
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions _includes/styles/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,11 @@ input[type=submit]:active {
padding: 0 20px;
height: 60px;
}
#header a.logo {
background: transparent url(images/sprite.png) no-repeat 0 5px;
#header a.title, #start a.title {
font-size: 30px;
line-height: 40px;
font-family: 'Palatino Linotype';
color: #000;
width: 160px;
height: 40px;
float: left;
Expand Down Expand Up @@ -407,16 +410,13 @@ body.start #header {
}

.branding {
background: transparent url(images/front-logo.png) no-repeat 0 0;
width: 240px;
height: 40px;
display: block;
text-indent: -999em;
margin-left: -120px;
position: absolute;
left: 50%;
top: 30%;
margin-top: -60px;
top: 20%;
}

.dialog {
Expand Down
2 changes: 1 addition & 1 deletion _includes/templates/header._
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<a href='{{site.baseurl}}' class='title icon logo'>Columnist</a>
<a href='{{site.baseurl}}' class='title'>Poole</a>

<!--Github account and links-->
<% if (repo) { %>
Expand Down
2 changes: 1 addition & 1 deletion _includes/templates/start._
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<a href='/' class='branding title'>Columnist</a>
<a href='/' class='branding title'>Poole</a>
<div class='start dialog clearfix'>
<% if (!authenticated) { %>
<div id='hint'></div>
Expand Down
2 changes: 1 addition & 1 deletion _includes/views/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ views.Start = Backbone.View.extend({
} else if (branches.length > 1) {
$branches.append('<div class="label">Choose a branch:</div>')
_.each(branches, function(branch) {
$branches.append($('<div class="branch"><a href="#'+[user, repo].join('/')+'">'+branch+'</a></div>'));
$branches.append($('<div class="branch"><a href="#'+[user, repo, branch].join('/')+'">'+branch+'</a></div>'));
});
} else if (branches.length === 0) {
$branches.append('<div class="not-jekyll">Not a valid Jekyll site.</div>')
Expand Down

0 comments on commit b8ba583

Please sign in to comment.