1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-19 16:58:48 +02:00

Slightly declown my stunning "design" skills.

This commit is contained in:
epriestley 2011-02-04 18:24:03 -08:00
parent 43307502e5
commit 94dd5c6917
2 changed files with 15 additions and 2 deletions

View file

@ -150,6 +150,8 @@ class PhabricatorStandardPageView extends AphrontPageView {
$login_stuff =
'Logged in as '.phutil_escape_html($user->getUsername()).
' · '.
'<a href="/settings/">Settings</a>'.
' &middot; '.
'<form action="/logout/" method="post" style="display: inline;">'.
phutil_render_tag(
'input',
@ -165,7 +167,7 @@ class PhabricatorStandardPageView extends AphrontPageView {
'name' => '__form__',
'value' => true,
)).
'<button class="small grey">Logout</button>'.
'<button class="link">Logout</button>'.
'</form>';
}
}

View file

@ -135,5 +135,16 @@ a.small:visited {
line-height: 16px;
}
button.link {
display: inline;
border: none;
background: transparent;
font-weight: normal;
padding: 0;
margin: 0;
font-size: inherit;
}
button.link:hover {
text-decoration: underline;
}