mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 04:42:40 +01:00
Fix some minor UI issues with mobile application search
Summary: Background is now always white, spacing in header is more consistent Test Plan: test mobile, table, desktop application search apps. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D16691
This commit is contained in:
parent
13b4b37d30
commit
754397c4e7
3 changed files with 14 additions and 4 deletions
|
@ -9,7 +9,7 @@ return array(
|
|||
'names' => array(
|
||||
'conpherence.pkg.css' => '4601645d',
|
||||
'conpherence.pkg.js' => '11f3e07e',
|
||||
'core.pkg.css' => 'b8364d01',
|
||||
'core.pkg.css' => '7ca260a3',
|
||||
'core.pkg.js' => '30185d95',
|
||||
'darkconsole.pkg.js' => 'e7393ebb',
|
||||
'differential.pkg.css' => 'e1d704ce',
|
||||
|
@ -102,7 +102,7 @@ return array(
|
|||
'rsrc/css/application/releeph/releeph-preview-branch.css' => 'b7a6f4a5',
|
||||
'rsrc/css/application/releeph/releeph-request-differential-create-dialog.css' => '8d8b92cd',
|
||||
'rsrc/css/application/releeph/releeph-request-typeahead.css' => '667a48ae',
|
||||
'rsrc/css/application/search/application-search-view.css' => 'be6454ec',
|
||||
'rsrc/css/application/search/application-search-view.css' => '8452c849',
|
||||
'rsrc/css/application/search/search-results.css' => '7dea472c',
|
||||
'rsrc/css/application/slowvote/slowvote.css' => 'a94b7230',
|
||||
'rsrc/css/application/tokens/tokens.css' => '3d0f239e',
|
||||
|
@ -610,7 +610,7 @@ return array(
|
|||
'aphront-tokenizer-control-css' => '056da01b',
|
||||
'aphront-tooltip-css' => '1a07aea8',
|
||||
'aphront-typeahead-control-css' => 'd4f16145',
|
||||
'application-search-view-css' => 'be6454ec',
|
||||
'application-search-view-css' => '8452c849',
|
||||
'auth-css' => '0877ed6e',
|
||||
'bulk-job-css' => 'df9c1d4a',
|
||||
'changeset-view-manager' => 'a2828756',
|
||||
|
|
|
@ -329,7 +329,6 @@ final class PhabricatorApplicationSearchController
|
|||
$crumbs->addTextCrumb($title);
|
||||
}
|
||||
|
||||
$nav->addClass('application-search-view');
|
||||
require_celerity_resource('application-search-view-css');
|
||||
|
||||
return $this->newPage()
|
||||
|
@ -337,6 +336,7 @@ final class PhabricatorApplicationSearchController
|
|||
->setTitle(pht('Query: %s', $title))
|
||||
->setCrumbs($crumbs)
|
||||
->setNavigation($nav)
|
||||
->addClass('application-search-view')
|
||||
->appendChild($body);
|
||||
}
|
||||
|
||||
|
|
|
@ -11,6 +11,11 @@
|
|||
padding: 0 16px 24px;
|
||||
}
|
||||
|
||||
.device-phone .application-search-view
|
||||
.application-search-results.phui-object-box {
|
||||
padding: 0 12px 24px;
|
||||
}
|
||||
|
||||
.application-search-view .application-search-results .phui-profile-header {
|
||||
padding: 16px 8px;
|
||||
border-bottom: 1px solid {$thinblueborder};
|
||||
|
@ -31,6 +36,11 @@
|
|||
padding: 12px 0;
|
||||
}
|
||||
|
||||
.device-phone .application-search-results
|
||||
.phui-profile-header.phui-header-shell {
|
||||
padding: 12px 0 12px 4px;
|
||||
}
|
||||
|
||||
.device-phone .application-search-results
|
||||
.phui-profile-header.phui-header-shell .phui-header-header {
|
||||
font-size: 16px;
|
||||
|
|
Loading…
Reference in a new issue