mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Fix Differential DashHeaders
Summary: Adds a basic style to ObjectItemList Headers. Fixes T5465 Test Plan: Added the same Query, tested various layouts Reviewers: epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T5465 Differential Revision: https://secure.phabricator.com/D9711
This commit is contained in:
parent
15a1f08301
commit
320f7689dd
2 changed files with 20 additions and 5 deletions
|
@ -7,7 +7,7 @@
|
|||
return array(
|
||||
'names' =>
|
||||
array(
|
||||
'core.pkg.css' => 'daedf92a',
|
||||
'core.pkg.css' => 'fc4bf764',
|
||||
'core.pkg.js' => '8c184823',
|
||||
'darkconsole.pkg.js' => 'df001cab',
|
||||
'differential.pkg.css' => '4a93db37',
|
||||
|
@ -136,7 +136,7 @@ return array(
|
|||
'rsrc/css/phui/phui-info-panel.css' => '27ea50a1',
|
||||
'rsrc/css/phui/phui-list.css' => '43ed2d93',
|
||||
'rsrc/css/phui/phui-object-box.css' => 'e9f7e938',
|
||||
'rsrc/css/phui/phui-object-item-list-view.css' => '46e12abc',
|
||||
'rsrc/css/phui/phui-object-item-list-view.css' => '7ac40b5a',
|
||||
'rsrc/css/phui/phui-pinboard-view.css' => '2c8abb19',
|
||||
'rsrc/css/phui/phui-property-list-view.css' => '2f7199e8',
|
||||
'rsrc/css/phui/phui-remarkup-preview.css' => '19ad512b',
|
||||
|
@ -491,7 +491,7 @@ return array(
|
|||
'rsrc/js/phuix/PHUIXActionListView.js' => 'b5c256b8',
|
||||
'rsrc/js/phuix/PHUIXActionView.js' => '6e8cefa4',
|
||||
'rsrc/js/phuix/PHUIXDropdownMenu.js' => 'bd4c8dca',
|
||||
'rsrc/swf/aphlict.swf' => 'e5a24c72',
|
||||
'rsrc/swf/aphlict.swf' => 'f19daffb',
|
||||
),
|
||||
'symbols' =>
|
||||
array(
|
||||
|
@ -781,7 +781,7 @@ return array(
|
|||
'phui-info-panel-css' => '27ea50a1',
|
||||
'phui-list-view-css' => '43ed2d93',
|
||||
'phui-object-box-css' => 'e9f7e938',
|
||||
'phui-object-item-list-view-css' => '46e12abc',
|
||||
'phui-object-item-list-view-css' => '7ac40b5a',
|
||||
'phui-pinboard-view-css' => '2c8abb19',
|
||||
'phui-property-list-view-css' => '2f7199e8',
|
||||
'phui-remarkup-preview-css' => '19ad512b',
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
|
||||
.phui-object-item-list-view .aphront-error-view {
|
||||
margin: 4px 0 8px 0;
|
||||
color: {$bluetext};
|
||||
color: {$greytext};
|
||||
}
|
||||
|
||||
.phui-object-item {
|
||||
|
@ -662,6 +662,7 @@
|
|||
|
||||
.dashboard-panel .phui-object-item-list-view {
|
||||
padding: 0;
|
||||
border-left: 1px solid {$lightblueborder};
|
||||
border-right: 1px solid {$lightblueborder};
|
||||
border-bottom: 1px solid {$blueborder};
|
||||
margin-bottom: -1px;
|
||||
|
@ -681,6 +682,20 @@
|
|||
border-radius: 0;
|
||||
}
|
||||
|
||||
.dashboard-panel .phui-object-item-list-header {
|
||||
font-size: 13px;
|
||||
color: {$bluetext};
|
||||
background: {$lightgreybackground};
|
||||
border-bottom: 1px solid {$thinblueborder};
|
||||
padding: 8px 12px;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
.dashboard-panel .phui-object-item-empty .aphront-error-view {
|
||||
border: none;
|
||||
border-bottom: 1px solid {$thinblueborder};
|
||||
}
|
||||
|
||||
|
||||
/* - Launcher List ---------------------------------------------------------- */
|
||||
|
||||
|
|
Loading…
Reference in a new issue