1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 08:52:39 +01:00

Minor, fix various CSS positioning derps.

This commit is contained in:
epriestley 2012-03-26 09:39:29 -07:00
parent 009a8795ca
commit 25bb23b509
2 changed files with 28 additions and 26 deletions

View file

@ -1743,7 +1743,7 @@ celerity_register_resource_map(array(
),
'phabricator-standard-page-view' =>
array(
'uri' => '/res/7b3aff29/rsrc/css/application/base/standard-page-view.css',
'uri' => '/res/ef75dd3c/rsrc/css/application/base/standard-page-view.css',
'type' => 'css',
'requires' =>
array(
@ -1980,7 +1980,7 @@ celerity_register_resource_map(array(
), array(
'packages' =>
array(
'819c21d6' =>
'b2019630' =>
array(
'name' => 'core.pkg.css',
'symbols' =>
@ -2005,7 +2005,7 @@ celerity_register_resource_map(array(
17 => 'aphront-pager-view-css',
18 => 'phabricator-transaction-view-css',
),
'uri' => '/res/pkg/819c21d6/core.pkg.css',
'uri' => '/res/pkg/b2019630/core.pkg.css',
'type' => 'css',
),
'21d01ed8' =>
@ -2152,17 +2152,17 @@ celerity_register_resource_map(array(
'reverse' =>
array(
'aphront-attached-file-view-css' => '31583232',
'aphront-crumbs-view-css' => '819c21d6',
'aphront-dialog-view-css' => '819c21d6',
'aphront-form-view-css' => '819c21d6',
'aphront-crumbs-view-css' => 'b2019630',
'aphront-dialog-view-css' => 'b2019630',
'aphront-form-view-css' => 'b2019630',
'aphront-headsup-action-list-view-css' => '551249fc',
'aphront-list-filter-view-css' => '819c21d6',
'aphront-pager-view-css' => '819c21d6',
'aphront-panel-view-css' => '819c21d6',
'aphront-side-nav-view-css' => '819c21d6',
'aphront-table-view-css' => '819c21d6',
'aphront-tokenizer-control-css' => '819c21d6',
'aphront-typeahead-control-css' => '819c21d6',
'aphront-list-filter-view-css' => 'b2019630',
'aphront-pager-view-css' => 'b2019630',
'aphront-panel-view-css' => 'b2019630',
'aphront-side-nav-view-css' => 'b2019630',
'aphront-table-view-css' => 'b2019630',
'aphront-tokenizer-control-css' => 'b2019630',
'aphront-typeahead-control-css' => 'b2019630',
'differential-changeset-view-css' => '551249fc',
'differential-core-view-css' => '551249fc',
'differential-inline-comment-editor' => '9b256876',
@ -2220,23 +2220,23 @@ celerity_register_resource_map(array(
'maniphest-task-detail-css' => '31583232',
'maniphest-task-summary-css' => '31583232',
'maniphest-transaction-detail-css' => '31583232',
'phabricator-app-buttons-css' => '819c21d6',
'phabricator-app-buttons-css' => 'b2019630',
'phabricator-content-source-view-css' => '551249fc',
'phabricator-core-buttons-css' => '819c21d6',
'phabricator-core-css' => '819c21d6',
'phabricator-directory-css' => '819c21d6',
'phabricator-core-buttons-css' => 'b2019630',
'phabricator-core-css' => 'b2019630',
'phabricator-directory-css' => 'b2019630',
'phabricator-drag-and-drop-file-upload' => '9b256876',
'phabricator-dropdown-menu' => '21d01ed8',
'phabricator-jump-nav' => '819c21d6',
'phabricator-jump-nav' => 'b2019630',
'phabricator-keyboard-shortcut' => '21d01ed8',
'phabricator-keyboard-shortcut-manager' => '21d01ed8',
'phabricator-menu-item' => '21d01ed8',
'phabricator-object-selector-css' => '551249fc',
'phabricator-paste-file-upload' => '21d01ed8',
'phabricator-remarkup-css' => '819c21d6',
'phabricator-remarkup-css' => 'b2019630',
'phabricator-shaped-request' => '9b256876',
'phabricator-standard-page-view' => '819c21d6',
'phabricator-transaction-view-css' => '819c21d6',
'syntax-highlighting-css' => '819c21d6',
'phabricator-standard-page-view' => 'b2019630',
'phabricator-transaction-view-css' => 'b2019630',
'syntax-highlighting-css' => 'b2019630',
),
));

View file

@ -71,8 +71,7 @@
}
.phabricator-logo a.logo-standard {
background: url(/rsrc/image/phabricator_logo.png) no-repeat 0 0;
background-position-left: 220px;
background: url(/rsrc/image/phabricator_logo.png) no-repeat -220px 0;
}
.phabricator-admin-page-view .phabricator-logo a.logo-standard {
@ -81,11 +80,14 @@
.phabricator-logo-with-custom a.logo-standard {
padding-left: 220px;
background-position-left: 0;
background-position: 0 0;
}
.phabricator-logo a:hover {
background-position: -220px -40px;
}
.phabricator-logo-with-custom a.logo-standard:hover {
background-position: 0 -40px;
}