mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-03 11:21:01 +01:00
Slightly declown my stunning "design" skills.
This commit is contained in:
parent
43307502e5
commit
94dd5c6917
2 changed files with 15 additions and 2 deletions
|
@ -150,6 +150,8 @@ class PhabricatorStandardPageView extends AphrontPageView {
|
|||
$login_stuff =
|
||||
'Logged in as '.phutil_escape_html($user->getUsername()).
|
||||
' · '.
|
||||
'<a href="/settings/">Settings</a>'.
|
||||
' · '.
|
||||
'<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>';
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue