1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

Replace "Phabricator" menu text with phabricator logo

Summary:
I ran a 99designs contest and this gear-eye thing was actually pretty okay. All
this stuff needs tweaks but at least it won't render with a big square on
windows anymore.

Test Plan:
Looked at menu, it seemed slightly more legitimate and designey than before?

Reviewed By: jungejason
Reviewers: tuomaspelkonen, jungejason, aran
CC: aran, epriestley, jungejason
Differential Revision: 363
This commit is contained in:
epriestley 2011-05-28 12:56:13 -07:00
parent 2ab6b41906
commit c7ff835073
4 changed files with 51 additions and 34 deletions

View file

@ -272,30 +272,30 @@ class PhabricatorStandardPageView extends AphrontPageView {
return
($console ? '<darkconsole />' : null).
'<div class="phabricator-standard-page '.$admin_class.'">'.
'<div class="phabricator-standard-header">'.
'<div class="phabricator-login-details">'.
$login_stuff.
'</div>'.
'<table class="phabricator-primary-navigation">'.
'<tr>'.
'<th class="phabricator-logo">'.
'<a href="/">'.
"Phabricat\xE2\x9A\x99r".
'</a> '.
'</th>'.
'<th>'.
phutil_render_tag(
'a',
array(
'href' => $this->getBaseURI(),
'class' => 'phabricator-head-appname',
),
phutil_escape_html($this->getApplicationName())).
'</th>'.
$tabs.
'</tr>'.
'</table>'.
'</div>'.
'<table class="phabricator-standard-header">'.
'<tr>'.
'<td class="phabricator-logo"><a href="/"> </a></td>'.
'<td>'.
'<table class="phabricator-primary-navigation">'.
'<tr>'.
'<th>'.
phutil_render_tag(
'a',
array(
'href' => $this->getBaseURI(),
'class' => 'phabricator-head-appname',
),
phutil_escape_html($this->getApplicationName())).
'</th>'.
$tabs.
'</tr>'.
'</table>'.
'</td>'.
'<td class="phabricator-login-details">'.
$login_stuff.
'</td>'.
'</tr>'.
'</table>'.
$this->bodyContent.
'<div style="clear: both;"></div>'.
'</div>'.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 894 B

After

Width:  |  Height:  |  Size: 894 B

View file

@ -17,6 +17,13 @@
color: white;
overflow: hidden;
position: relative;
width: 100%;
}
.phabricator-standard-header td {
vertical-align: bottom;
padding: 0;
margin: 0;
}
.phabricator-admin-page-view .phabricator-standard-header {
@ -24,8 +31,7 @@
}
.phabricator-primary-navigation {
padding-top: 12px;
padding-bottom: 8px;
padding-top: 24px;
padding-left: 24px;
}
@ -38,14 +44,25 @@
vertical-align: bottom;
font-size: 13px;
border-bottom: 6px solid transparent;
padding-top: 14px;
padding-bottom: 4px;
}
.phabricator-primary-navigation th.phabricator-logo {
font-size: 16px;
padding-top: 8px;
padding-left: 24px;
padding-right: 6px;
.phabricator-logo {
width: 220px;
}
.phabricator-logo a {
display: block;
width: 220px;
height: 40px;
background: url('/rsrc/image/phabricator_logo.png') no-repeat 0 0;
padding: 0;
margin: 0;
}
.phabricator-logo a:hover {
background-position-y: -40px;
}
.phabricator-primary-navigation td {
@ -63,9 +80,9 @@
text-transform: uppercase;
}
.phabricator-login-details {
float: right;
padding: 6px 24px 0;
td.phabricator-login-details {
text-align: right;
padding: 0px 24px 6px;
font-size: 12px;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB