Skip to content

Commit

Permalink
Fix indentation of 'my followed packages' on the account page. Fix mi…
Browse files Browse the repository at this point in the history
…ssing icons on the account page.
  • Loading branch information
Tim Lovell-Smith committed Apr 16, 2013
1 parent 329188c commit 0ff8c73
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 11 deletions.
20 changes: 13 additions & 7 deletions Website/Content/Site.css
Original file line number Diff line number Diff line change
Expand Up @@ -524,26 +524,32 @@ hgroup.page-heading h2 { padding-left: 7px; }
#actions li h2 { font-size: 1.5em; }

#actions li#uploadPackage h2 {
background: url("Images/uploadPackage.png") no-repeat 0 50%;
background: url(../Content/Images/uploadPackage.png) no-repeat 0 50%;
font-size: 1.7em;
padding-left: 20px;
}

#actions li#changePassword h2 {
background: url("Images/changePassword.png") no-repeat 0 50%;
#actions li#managePackages h2 {
background: url(../Content/Images/managePackages.png) no-repeat 0 50%;
padding-left: 20px;
}

#actions li#managePackages h2 {
background: url("Images/managePackages.png") no-repeat 0 50%;
#actions li#followedPackages h2 {
background: url(../Content/Images/managePackages.png) no-repeat 0 50%;
font-size: 1.7em;
padding-left: 20px;
}

#actions li#editProfile h2 {
background: url("Images/editProfile.png") no-repeat 0 50%;
background: url(../Content/Images/editProfile.png) no-repeat 0 50%;
padding-left: 20px;
}


#actions li#changePassword h2 {
background: url(../Content/Images/changePassword.png) no-repeat 0 50%;
padding-left: 20px;
}

/* Account/API Key */

#apiKey h1 { font-size: 2em; }
Expand Down
10 changes: 6 additions & 4 deletions Website/Views/Users/Account.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@
is different.
</p>
</li>
<li id="followedPackages">
<h2><a href="@Url.Action(MVC.Users.MyFollowedPackages())">My Followed Packages</a></h2>
<p>Your followed packages are publically visible on your user profile page.</p>
</li>
@if (Model.CuratedFeeds.Any())
{
<li id="manageCuratedFeeds">
Expand All @@ -37,6 +33,12 @@
<h2><a href="@Url.Action(MVC.Users.Packages())">Manage My Packages</a></h2>
<p>Edit package details or Remove packages that you have previously uploaded.</p>
</li>
<li id="followedPackages">
<h2><a href="@Url.Action(MVC.Users.MyFollowedPackages())">My Followed Packages</a></h2>
<p>
Your followed packages are publically visible on your user profile page.
</p>
</li>
<li id="editProfile">
<h2><a href="@Url.Action(MVC.Users.Edit())">Edit Profile</a></h2>
<p>Edit your public profile.</p>
Expand Down

0 comments on commit 0ff8c73

Please sign in to comment.