(refs #127)Display full name at the account page.

This commit is contained in:
takezoe
2013-10-14 14:05:25 +09:00
parent ebf4e5f2e9
commit ff9b2dbe93
2 changed files with 17 additions and 2 deletions

View File

@@ -7,7 +7,8 @@
<div class="span4">
<div class="block">
<div class="account-image">@avatar(account.userName, 200)</div>
<div class="block-header">@account.userName</div>
<div class="account-fullname">@account.fullName</div>
<div class="account-username">@account.userName</div>
</div>
<div class="block">
@if(account.url.isDefined){

View File

@@ -299,7 +299,7 @@ span.highlight {
}
/****************************************************************************/
/* Create Repo */
/* Create Repository */
/****************************************************************************/
.slash {
font-size: 20px;
@@ -313,6 +313,20 @@ div.signin-form {
margin: 30px auto;
}
/****************************************************************************/
/* Account page */
/****************************************************************************/
.account-fullname {
font-size: 140%;
font-weight: bold;
}
.account-username {
font-size: 120%;
color: #888888;
font-weight: bold;
}
/****************************************************************************/
/* Stacked side menu */
/****************************************************************************/